/* =========================================================
   Ayurveda Nutrition Certification - Landing Page Styles
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #9B7A2E;
    --green: #1A5C38;
    --green-mid: #2A7A4D;
    --green-light: #3D9E68;
    --cream: #FDF8EF;
    --cream-dark: #F5EDD8;
    --brown: #4A2B0F;
    --text: #1C1C1C;
    --text-muted: #555;
    --white: #FFFFFF;
    --danger-red: #C0392B;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ayurveda-page {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

body.ayurveda-page h1,
body.ayurveda-page h2,
body.ayurveda-page h3,
body.ayurveda-page h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
}

a {
    text-decoration: none;
}

/* ---------- Utility Classes ---------- */
body.ayurveda-page .section {
    padding: 80px 0;
}

body.ayurveda-page .section-alt {
    background: var(--cream-dark);
}

body.ayurveda-page .section-dark {
    background: var(--green);
    color: var(--white);
}

body.ayurveda-page .section-title {
    margin-bottom: 50px;
}

body.ayurveda-page .section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--green);
    margin-bottom: 12px;
}

body.ayurveda-page .section-title .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

body.ayurveda-page .section-dark .section-title h2 {
    color: var(--gold-light);
}

/* ---------- WhatsApp CTA Buttons ---------- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-whatsapp-sm {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.whatsapp-cta-block {
    text-align: center;
    padding: 40px 20px;
}

.whatsapp-cta-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ---------- Sticky WhatsApp Button ---------- */
.sticky-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sticky-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.sticky-whatsapp a:hover {
    transform: scale(1.12);
}

.sticky-whatsapp a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.sticky-whatsapp span {
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SECTION 1: HERO ---------- */
.hero-section {
    background: linear-gradient(135deg, #0D3320 0%, #1A5C38 50%, #0D3320 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section h1 span {
    color: var(--gold-light);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 20px;
}

.hero-fact {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✔';
    color: #25D366;
    font-weight: 900;
    margin-right: 10px;
}

.cross-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cross-list li::before {
    content: '✗';
    color: #FF6B6B;
    font-weight: 900;
    margin-right: 10px;
}

.hero-lists-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-lists-row .list-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 18px;
}

.hero-lists-row .list-box h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.hero-cta-group .scarcity-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-cta-group .scarcity-note span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.hero-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-cert-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

.hero-cert-badges .badge-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
    flex-shrink: 0;
}

/* Hero Image Card */
.hero-image-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.hero-image-card .card-stat-bar {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-image-card .card-stat-bar .stat {}

.hero-image-card .card-stat-bar .stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

.hero-image-card .card-stat-bar .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- SECTION 2: MARKET SHIFT ---------- */
.market-shift {
    background: var(--white);
}

.shift-timeline {
    position: relative;
    padding-left: 30px;
}

.shift-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--green));
}

.shift-item {
    position: relative;
    margin-bottom: 28px;
}

.shift-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.shift-item h4 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 6px;
}

.shift-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.shift-arrow-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.shift-box {
    flex: 1;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.shift-box.old {
    background: #FFF5F5;
    border: 1px solid #FFCDD2;
}

.shift-box.old h4 {
    color: var(--danger-red);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.shift-box.new {
    background: #F0FFF4;
    border: 1px solid #A8E6C3;
}

.shift-box.new h4 {
    color: var(--green);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.shift-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shift-box.old ul li::before {
    content: '✗ ';
    color: var(--danger-red);
}

.shift-box.new ul li::before {
    content: '✔ ';
    color: var(--green);
}

.shift-arrow {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ---------- SECTION 3: PAIN ---------- */
.pain-section {
    background: linear-gradient(135deg, #1C0A00, #3D1A00);
    color: #fff;
}

.pain-section .section-title h2 {
    color: var(--gold-light);
}

.pain-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 28px;
    border-top: 4px solid;
}

.pain-card.danger {
    border-color: #FF6B6B;
}

.pain-card.success-card {
    border-color: #25D366;
}

.pain-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.pain-card.danger h3 {
    color: #FF6B6B;
}

.pain-card.success-card h3 {
    color: #4CAF50;
}

.pain-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}

.pain-card.danger ul li::before {
    content: '✗  ';
    color: #FF6B6B;
    font-weight: 900;
}

.pain-card.success-card ul li::before {
    content: '✔  ';
    color: #4CAF50;
    font-weight: 900;
}

/* ---------- SECTION 4: AUTHORITY ---------- */
.authority-section {
    background: var(--cream);
}

.authority-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: -20px auto 40px;
    text-align: center;
}

.authority-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-card .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pillar-card .icon-circle svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.pillar-card h3 {
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- SECTION 5: OPPORTUNITY ---------- */
.opportunity-section {
    background: var(--white);
}

.groups-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.group-card {
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

.group-card.group-1 {
    background: #FFF5F5;
    border: 2px solid #FFCDD2;
}

.group-card.group-2 {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border: 2px solid var(--green-light);
    color: #fff;
}

.group-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.group-1 .group-label {
    color: var(--danger-red);
}

.group-2 .group-label {
    color: var(--gold-light);
}

.group-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.group-1 h3 {
    color: var(--danger-red);
}

.group-2 h3 {
    color: #fff;
}

.group-card .price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.group-1 .price-tag {
    color: var(--danger-red);
}

.group-2 .price-tag {
    color: var(--gold-light);
}

.group-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.group-1 ul li {
    color: #777;
}

.group-2 ul li {
    color: rgba(255, 255, 255, 0.85);
}

.group-1 ul li::before {
    content: '• ';
    color: var(--danger-red);
}

.group-2 ul li::before {
    content: '✔ ';
    color: var(--gold-light);
}

.vs-divider {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
    text-align: center;
}

/* ---------- SECTION 6: CURRICULUM ---------- */
.curriculum-section {
    background: var(--cream-dark);
}

.curriculum-section .section-title h2 {
    color: var(--green);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.module-card-new {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.module-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.module-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green));
}

.module-num {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.module-card-new .module-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.module-card-new .module-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}

.module-card-new h3 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 6px;
}

.module-card-new p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- SECTION 7: COMPARISON ---------- */
.comparison-section {
    background: var(--white);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead th {
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.comparison-table thead th:first-child {
    background: #F5F5F5;
    color: var(--text-muted);
    width: 35%;
}

.comparison-table thead th:nth-child(2) {
    background: #FFEEEE;
    color: var(--danger-red);
    text-align: center;
}

.comparison-table thead th:nth-child(3) {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    color: #fff;
    text-align: center;
}

.comparison-table tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.015);
}

.comparison-table tbody td {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    color: var(--text);
    font-weight: 600;
}

.comparison-table tbody td:nth-child(2) {
    text-align: center;
    color: var(--danger-red);
}

.comparison-table tbody td:nth-child(3) {
    text-align: center;
    color: var(--green);
    font-weight: 600;
}

.ct-check {
    color: #25D366;
    font-size: 1.1rem;
    font-weight: 900;
}

.ct-cross {
    color: var(--danger-red);
    font-size: 1.1rem;
    font-weight: 900;
}

.comparison-table tfoot td {
    padding: 20px 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.comparison-table tfoot td:nth-child(2) {
    text-align: center;
    color: var(--danger-red);
    background: #FFF5F5;
}

.comparison-table tfoot td:nth-child(3) {
    text-align: center;
    color: var(--green);
    background: #F0FFF4;
}

/* ---------- SECTION 8: PRICE ---------- */
.price-section {
    background: linear-gradient(135deg, var(--green) 0%, #0D3320 100%);
    color: #fff;
}

.price-section .section-title h2 {
    color: var(--gold-light);
}

.price-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}

.price-card .price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.price-card .price-old {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    font-family: var(--font-heading);
}

.price-card .price-new {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold-light);
    line-height: 1;
    margin: 8px 0 4px;
}

.price-card .price-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.price-features li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✔';
    color: #25D366;
    font-weight: 900;
    flex-shrink: 0;
}

.savings-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ---------- SECTION 9: WHO IT'S FOR ---------- */
.who-section {
    background: var(--cream);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--gold);
    transition: var(--transition);
}

.who-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.who-card .who-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.who-card h3 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 6px;
}

.who-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- SECTION 10: FUTURE ---------- */
.future-section {
    background: linear-gradient(135deg, #0D3320, #1A5C38);
    color: #fff;
}

.future-section .section-title h2 {
    color: var(--gold-light);
}

.future-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.future-box {
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.future-box.future-leader {
    background: rgba(201, 168, 76, 0.12);
    border: 2px solid rgba(201, 168, 76, 0.4);
}

.future-box.future-loser {
    background: rgba(255, 255, 255, 0.04);
    border: 2px dashed rgba(255, 255, 255, 0.15);
}

.future-box h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.future-leader h3 {
    color: var(--gold-light);
}

.future-loser h3 {
    color: rgba(255, 255, 255, 0.4);
}

.future-box p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ---------- SECTION 11: SCARCITY ---------- */
.scarcity-section {
    background: var(--cream-dark);
}

.scarcity-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--gold);
    max-width: 680px;
    margin: 0 auto;
}

.scarcity-box h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--green);
    margin-bottom: 12px;
}

.scarcity-box .seats-visual {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.seat-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.seat-dot.taken {
    background: var(--gold);
}

.seat-dot.open {
    background: transparent;
}

.scarcity-box .urgency-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ---------- SECTION 12: FAQ ---------- */
.faq-section {
    background: var(--white);
}

.faq-section .section-title h2 {
    color: var(--green);
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--green);
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    gap: 12px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ---------- FINAL CTA ---------- */
.final-cta-section {
    background: linear-gradient(135deg, #1A5C38 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 10px;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 30px;
}

.final-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0;
}

.final-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-light);
}

/* ---------- Footer ---------- */
.footer-lp {
    background: #0D1F12;
    color: rgba(255, 255, 255, 0.5);
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-lp a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-lp a:hover {
    color: var(--gold-light);
}

/* ---------- Divider CTAs (every 2 sections) ---------- */
.whatsapp-divider {
    background: linear-gradient(135deg, var(--green), #0D3320);
    padding: 40px 20px;
    text-align: center;
}

.whatsapp-divider h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 400;
}

.whatsapp-divider h3 strong {
    font-family: var(--font-heading);
    color: var(--gold-light);
}

/* ---------- AOS Overrides ---------- */
[data-aos] {
    will-change: transform;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

/* --- Tablet (max 992px) --- */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .hero-lists-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-card img {
        height: 260px;
    }

    .hero-image-card .card-stat-bar .stat-num {
        font-size: 1.2rem;
    }

    .authority-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    .groups-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        transform: rotate(90deg);
        font-size: 1.8rem;
        padding: 10px 0;
    }

    .comparison-table thead th,
    .comparison-table tbody td,
    .comparison-table tfoot td {
        padding: 14px 18px;
    }

    .price-card {
        padding: 36px 28px;
    }

    .price-card .price-new {
        font-size: 3.2rem;
    }

    .future-split {
        grid-template-columns: 1fr 1fr;
    }

    .pain-cards-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }

    /* Hero */
    .hero-section {
        padding: 56px 0 40px;
    }

    .hero-section h1 {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-lists-row {
        grid-template-columns: 1fr;
    }

    .hero-cert-badges {
        flex-direction: column;
    }

    .hero-cta-group {
        align-items: center;
    }

    .hero-image-card img {
        height: 220px;
    }

    .hero-image-card .card-stat-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pain */
    .pain-cards-row {
        grid-template-columns: 1fr;
    }

    /* Authority */
    .authority-pillars {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 22px 18px;
    }

    /* Groups */
    .groups-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        transform: none;
        padding: 4px 0;
        text-align: center;
    }

    /* Modules */
    .modules-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison Table */
    .comparison-section {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 520px;
    }

    /* Price */
    .price-card {
        padding: 28px 20px;
    }

    .price-card .price-new {
        font-size: 2.8rem;
    }

    /* Who */
    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Future */
    .future-split {
        grid-template-columns: 1fr;
    }

    /* Scarcity */
    .scarcity-box {
        padding: 32px 20px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 64px 0;
    }

    .final-badges {
        gap: 10px;
    }

    /* Shift */
    .shift-arrow-box {
        flex-direction: column;
        gap: 10px;
    }

    .shift-arrow {
        transform: rotate(90deg);
    }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .hero-image-card .card-stat-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .hero-image-card .card-stat-bar .stat-num {
        font-size: 1rem;
    }

    .comparison-table {
        min-width: 480px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .price-card .price-new {
        font-size: 2.4rem;
    }
}