:root {
    --color-bg-main: #F7F4EE;
    --color-coral: #D97E5B;
    --color-coral-hover: #c66f4e;
    --color-coral-light: #FCE8E6;
    --color-orange-light: #fbeae5;
    --color-teal: #48887B;
    --color-teal-light: #e8f2f0;
    --color-green-dark: #2D5A27;
    --color-text-main: #1f2937;
    --color-text-muted: #6b7280;
    --color-gray-bg: #EAEAEA;
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-sans); background-color: var(--color-bg-main);
    color: var(--color-text-main); line-height: 1.5; -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* Space for sticky footer */
}
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; text-align: center; }

/* Utilities */
.text-green-dark { color: var(--color-green-dark); }
.text-teal { color: var(--color-teal); }
.text-coral { color: var(--color-coral); }
.text-white { color: #fff; }
.bg-orange-light { background-color: var(--color-orange-light); }
.bg-teal { background-color: var(--color-teal); }
.bg-teal-light { background-color: var(--color-teal-light); }
.bg-coral { background-color: var(--color-coral); }
.bg-soft-pink { background-color: #FAF0EC; }
.font-bold { font-weight: 700; }
.mt-20 { margin-top: 20px; }
.mb-40 { margin-bottom: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
    display: inline-block; text-decoration: none; font-weight: 600;
    border-radius: 50px; text-align: center; transition: background-color 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background-color: var(--color-coral); color: white; padding: 14px 32px; font-size: 1rem; }
.btn-primary:hover { background-color: var(--color-coral-hover); }
.btn-large { padding: 18px 48px; font-size: 1.1rem; width: 100%; max-width: 400px; }

/* Top Banner */
.top-banner { background-color: var(--color-coral); color: white; padding: 15px 0; text-align: center; }
.top-banner-content { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.timer-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; }
.timer { display: flex; align-items: center; gap: 10px; font-size: 2rem; font-weight: 700; }
.time-block { display: flex; flex-direction: column; align-items: center; }
.time-value { line-height: 1; }
.time-label { font-size: 0.6rem; font-weight: 500; letter-spacing: 1px; margin-top: 4px; }
.time-separator { margin-bottom: 15px; }
.date-badge {
    background-color: var(--color-coral-light); color: var(--color-text-main);
    padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px; width: fit-content;
}

/* Hero Section */
.hero-section { padding: 50px 0 60px; }
.hero-badge {
    background-color: var(--color-coral-light); display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 30px;
}
.badge-logo { border-radius: 50%; }
.hero-title { font-family: var(--font-serif); font-size: 3rem; line-height: 1.2; margin-bottom: 30px; }
.hero-subtitle { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 30px; }
.hero-subtitle-bold { font-size: 1.1rem; font-weight: 600; margin-bottom: 40px; }

/* Pricing Lots */
.pricing-lots { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.lot { display: flex; flex-direction: column; align-items: center; padding: 15px 25px; border-radius: 20px; min-width: 120px; }
.lot.sold-out, .lot.upcoming { background-color: var(--color-gray-bg); color: var(--color-text-muted); }
.lot.sold-out .lot-price { text-decoration: line-through; }
.lot.current { background-color: var(--color-coral); color: white; transform: scale(1.05); box-shadow: 0 4px 15px rgba(217, 126, 91, 0.3); }
.lot-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; }
.lot-price { font-size: 1.5rem; font-weight: 700; margin: 5px 0; }
.lot-status { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; }
.guarantee-text { font-size: 0.85rem; color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; }

/* Hero Image Section */
.hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.hero-promo-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Generic Section Styles */
.section-title { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 15px; }
.section-subtitle { color: var(--color-text-muted); margin-bottom: 50px; font-size: 1.1rem; }
.medium-title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 15px; }

/* Pain Points Section */
.pain-points-section { padding: 60px 0; background: linear-gradient(to bottom, var(--color-bg-main) 0%, #FAF0EC 100%); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 50px; }
.pain-card { background-color: #FAFAFA; border-radius: 16px; padding: 25px; text-align: left; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.pain-card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.icon-wrapper { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.pain-title { font-family: var(--font-serif); font-size: 1.1rem; }
.pain-desc { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.pain-accent { border-left: 3px solid var(--color-coral); padding-left: 15px; font-size: 0.9rem; color: var(--color-coral); }
.pain-cta-area { text-align: center; }
.cta-callout { font-size: 1.1rem; margin-bottom: 25px; }
.sub-cta-text { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 15px; }

/* Problem Section */
.problem-section { padding: 60px 0; background-color: #FAF0EC; }
.horizontal-cards { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.h-card { background-color: white; border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 15px; text-align: left; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.icon-circle { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; flex-shrink: 0; }
.problem-cta-area { padding: 40px; background-color: white; border-radius: 16px; text-align: center; }

/* Protocol Section */
.protocol-section { padding: 60px 0; background-color: var(--color-bg-main); }
.protocol-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.p-card { background-color: white; border-radius: 16px; padding: 25px; display: flex; gap: 20px; text-align: left; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.p-card-content h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; }
.p-card-content p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 15px; }

/* Testimonials Section */
.testimonials-section { padding: 60px 0; background-color: #FAF0EC; }
.testimonial-slider { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.t-card { background-color: white; border-radius: 16px; padding: 25px; min-width: 320px; max-width: 320px; text-align: left; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f0e9df; display: flex; flex-direction: column; scroll-snap-align: start; }
.quote-icon { width: 32px; height: 32px; color: rgba(217, 126, 91, 0.3); margin-bottom: 15px; }
.t-quote { font-size: 0.9rem; font-style: italic; color: var(--color-text-main); margin-bottom: 15px; line-height: 1.6; }
.t-badge { background-color: rgba(217, 126, 91, 0.1); color: var(--color-coral); padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; align-self: flex-start; margin-bottom: 15px; }
.t-divider { border: 0; border-top: 1px solid #eaeaea; margin-bottom: 15px; }
.t-img { width: 100%; border-radius: 8px; object-fit: cover; }
.t-stars { color: var(--color-coral); font-size: 1.2rem; margin-top: 10px; letter-spacing: 2px; }

/* Social Proof Section */
.social-proof { padding: 40px 0; }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sp-item i { font-size: 2.5rem; }
.sp-item strong { font-size: 2rem; font-family: var(--font-serif); }
.sp-item p { font-size: 0.9rem; opacity: 0.9; }

/* Offer Card Section */
.offer-section { padding: 60px 0; background-color: var(--color-bg-main); }
.offer-card { background-color: white; border-radius: 20px; padding: 40px; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid #f0e9df; text-align: center; margin-top: 20px; }
.offer-badge-corner { position: absolute; top: 20px; right: -30px; transform: rotate(45deg); padding: 5px 40px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; }
.offer-promo-badge { display: inline-block; padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }
.offer-title { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 10px; }
.offer-subtitle { color: var(--color-text-muted); margin-bottom: 20px; }
.offer-includes { background-color: var(--color-teal-light); border-radius: 16px; padding: 25px; text-align: left; margin: 30px 0; }
.offer-includes h4 { font-size: 1rem; margin-bottom: 15px; color: var(--color-text-main); }
.offer-includes ul { list-style: none; }
.offer-includes li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; }
.offer-price-area { background-color: var(--color-orange-light); border-radius: 16px; padding: 30px; margin-bottom: 30px; }
.price-normal { color: var(--color-text-muted); font-size: 0.9rem; }
.price-launch { font-size: 1rem; margin-top: 10px; }
.price-main { display: flex; justify-content: center; align-items: flex-start; gap: 5px; margin: 10px 0; position: relative; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--color-coral); margin-top: 10px; }
.amount { font-size: 4rem; font-weight: 700; line-height: 1; color: var(--color-coral); }
.discount-tag { position: absolute; right: 0; top: 0; padding: 5px 10px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; transform: rotate(10deg); }
.price-term { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 15px; }
.price-compare { font-size: 0.9rem; font-weight: 500; }
.secure-text { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* Guarantee Section */
.guarantee-section { padding: 40px 0; background-color: var(--color-bg-main); }
.guarantee-card { background-color: var(--color-teal-light); border: 1px solid rgba(72, 136, 123, 0.2); border-radius: 16px; padding: 40px; text-align: center; }
.guarantee-icon-wrapper { font-size: 3.5rem; margin-bottom: 20px; color: var(--color-teal); }
.guarantee-title { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 15px; }
.guarantee-text-body { font-size: 1.05rem; color: var(--color-text-muted); }

/* Urgency Section */
.urgency-section { padding: 60px 0; background-color: #FAF0EC; text-align: center; }
.urgency-badge { background-color: rgba(217, 126, 91, 0.15); color: var(--color-coral); padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; display: inline-block; }
.urgency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.u-card { display: flex; flex-direction: column; align-items: center; gap: 15px; padding: 20px; background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.u-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.alert-text { font-size: 0.95rem; font-weight: 600; color: #b45309; background-color: #fef3c7; padding: 12px 20px; border-radius: 8px; display: inline-block; }

/* Mentor Section */
.mentor-section { padding: 80px 0; background-color: var(--color-bg-main); }
.mentor-container { display: flex; align-items: center; gap: 50px; text-align: left; }
.mentor-img-wrapper { flex: 1; }
.mentor-img { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 6px solid white; }
.mentor-content { flex: 1; }
.mentor-badge { background-color: rgba(217, 126, 91, 0.15); color: var(--color-coral); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; display: inline-block; margin-bottom: 20px; }
.mentor-name { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 5px; color: var(--color-text-main); }
.mentor-role { color: var(--color-coral); font-size: 1.2rem; margin-bottom: 25px; font-weight: 600; }
.mentor-content p { margin-bottom: 18px; color: var(--color-text-muted); font-size: 1.05rem; }
.mentor-signature { font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-text-main) !important; font-style: italic; margin-top: 30px; }

/* FAQ Section */
.faq-section { padding: 80px 0; background-color: white; }
.faq-list { display: flex; flex-direction: column; gap: 15px; text-align: left; margin-top: 40px; }
.faq-item { border: 1px solid #eaeaea; border-radius: 12px; overflow: hidden; }
.faq-question { padding: 20px 25px; font-weight: 600; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background-color: #FAFAFA; transition: background 0.3s; }
.faq-question:hover { background-color: #f0f0f0; }
.faq-question i { transition: transform 0.3s ease; color: var(--color-coral); font-size: 1.2rem; }
.faq-answer { padding: 25px; background-color: white; display: none; color: var(--color-text-muted); border-top: 1px solid #eaeaea; line-height: 1.6; }

/* Footer */
.footer { padding: 60px 0 100px; background-color: #FAF0EC; text-align: center; }
.footer-heart { font-size: 2rem; margin-bottom: 20px; }
.footer-p1 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; }
.footer-p2 { color: var(--color-text-muted); margin-bottom: 30px; }
.footer-price-small { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.small-badge { padding: 3px 8px; border-radius: 50px; font-size: 0.75rem; }
.footer-secure { font-size: 0.8rem; color: var(--color-text-muted); margin: 15px 0 40px; }
.footer-brand { font-family: var(--font-serif); margin-bottom: 10px; }
.footer-copy { font-size: 0.8rem; color: var(--color-text-muted); }

/* Sticky Footer */
.sticky-footer {
    position: fixed; bottom: 0; left: 0; width: 100%; background-color: white;
    padding: 15px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); z-index: 100;
    border-top: 1px solid #f0e9df;
}
.sticky-container {
    max-width: 900px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.sticky-price-info { display: flex; align-items: center; gap: 10px; }
.sticky-price-info strike { color: var(--color-text-muted); font-size: 0.9rem; }
.sticky-current { font-size: 1.5rem; font-weight: 700; color: var(--color-text-main); }
.sticky-badge { background-color: var(--color-orange-light); color: var(--color-coral); padding: 4px 8px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.sticky-btn { padding: 12px 30px; font-size: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .pain-grid, .sp-grid { grid-template-columns: 1fr; }
    .pricing-lots { flex-direction: column; align-items: center; }
    .p-card { flex-direction: column; text-align: center; align-items: center; }
    .offer-card { padding: 30px 20px; }
    .sticky-container { flex-direction: column; gap: 10px; }
    .sticky-btn { width: 100%; }
}
