:root {
    /* Color Palette matching Reference */
    --bg-color: #F5F5F5;      /* Off-white background */
    --primary: #5C644E;       /* Deep Olive */
    --primary-light: #8E9A7B;
    --accent: #FAEBCA;        /* Pale Yellow/Cream */
    --accent-dark: #E6D4B0;
    --text-main: #282828;     /* Dark Gray */
    --text-muted: #5A5A5A;
    --white: #FFFFFF;
    
    /* Typography */
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
    
    /* Spacing & Sizes */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius-lg: 32px;
    --border-radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 16px 0;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu Toggle / Burger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    min-height: 100svh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--text-main);
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 13px; /* Larger font size */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

h1 {
    font-family: var(--font-serif);
    font-size: 100px; /* ~20% increase from 82px */
    font-weight: 600;
    line-height: 0.85;
    margin-bottom: 48px; /* More space to bullets */
    color: var(--text-main);
    letter-spacing: -2px;
}

h1 i {
    font-style: italic;
    color: var(--primary);
}

h1 .subtitle {
    display: block;
    margin-top: 12px;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--text-muted);
}

.hero-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.23;
    max-width: 520px;
    margin-bottom: 20px;
}

.hero-mark {
    /* Marker highlight: angled gradient + irregular radius + semi-transparent */
    background: linear-gradient(
        104deg,
        transparent 0.5%,
        rgba(250, 235, 202, 0.95) 2.5%,
        rgba(250, 235, 202, 0.75) 6%,
        rgba(250, 235, 202, 0.85) 91%,
        rgba(250, 235, 202, 0.62) 95.5%,
        transparent 98.5%
    );
    color: inherit;
    padding: 3px 9px 4px 7px;
    /* Asymmetric corners — each corner slightly different, like a real stroke */
    border-radius: 2px 5px 3px 2px / 5px 3px 6px 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 48px;
    max-width: 520px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start; /* Align to top instead of center */
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-10px);
    animation: bulletFadeIn 0.6s ease forwards;
}

.hero-bullets li iconify-icon {
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px; /* Fine-tune alignment with text */
}

.hero-bullets li:nth-child(1) { animation-delay: 0.1s; }
.hero-bullets li:nth-child(2) { animation-delay: 0.3s; }
.hero-bullets li:nth-child(3) { animation-delay: 0.5s; }

@keyframes bulletFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #5d664f; /* Exact match from the new reference button */
    color: var(--white);
    gap: 12px;
}

.btn-primary:hover {
    background-color: #4b523f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(93, 102, 79, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid #E5E5E5;
    gap: 12px;
}

.btn-secondary:hover {
    background-color: #FAFAFA;
    transform: translateY(-2px);
    border-color: #D5D5D5;
}

/* Hero Visual & Glassmorphism */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    background: #E8E5DF;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/5;
    transition: var(--transition);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover .hero-img {
    transform: scale(1);
}

/* Premium Floating Cards */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    animation: floating 4s ease-in-out infinite;
}

.floating-card-2 {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 10;
    animation: floating 5s ease-in-out infinite reverse;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 24px;
}

.card-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
    font-weight: 700;
}

.card-info p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.expert-tag {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1100px) {
    .container { padding: 0 30px; }
    h1 { font-size: 64px; }
    h1 .subtitle { font-size: 36px; }
    .hero-grid { gap: 40px; }
    .floating-card { left: -10px; padding: 20px; }
}

@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .hero { padding-top: 40px; padding-bottom: 40px; align-items: flex-start; min-height: 0; }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0;
    }

    .hero-content, .hero-actions {
        display: contents; /* Unpack structure for mixing grid items */
    }

    .hero-badge { 
        order: 1; 
        margin-bottom: 8px; /* Tighter */
    }

    .hero-grid h1 {
        order: 2;
        font-size: 56px;
        margin-bottom: 16px;
        letter-spacing: -1.5px;
        line-height: 1.05;
    }

    .hero-lead {
        order: 3;
        margin-bottom: 20px;
    }

    .hero-bullets {
        order: 4;
        margin-bottom: 20px;
    }

    .hero-visual {
        order: 5;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }

    #cta-enroll {
        order: 6;
        width: 100%;
        margin-bottom: 10px;
    }

    #cta-program {
        order: 7;
        width: 100%;
    }

    .hero-bullets li { 
        justify-content: flex-start;
        margin-bottom: 6px;
    }

    .floating-card, .floating-card-2 { display: none; }
    .image-wrapper { aspect-ratio: 16/10; border-radius: 16px; min-height: 220px; }

    /* Mobile Header */
    header { padding: 8px 0; }
    header.scrolled { padding: 8px 0; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        display: none;
        width: auto;
        min-width: 200px;
        align-items: flex-start;
        border: 1px solid rgba(0,0,0,0.05);
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
        animation: menuFadeIn 0.3s ease forwards;
    }
    .mobile-only-btn {
        display: block !important;
        width: 100%;
        text-align: center;
        background: var(--accent) !important;
    }
}

@keyframes menuFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 576px) {
    h1 { font-size: 64px; line-height: 1.05; }
    h1 .subtitle { font-size: 32px; margin-top: 5px; }
    .hero { padding-top: 80px; padding-bottom: 40px; } /* Symmetry */
    .hero-bullets li { font-size: 16px; }
    .btn { padding: 14px 20px; font-size: 15px; }
    .hero-visual { margin-bottom: 12px; }
    #cta-enroll { margin-bottom: 16px; }
}

/* ===================== */
/* Target Audience Section */
/* ===================== */

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 80px; /* More space below title before cards */
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--text-main);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-main);
    max-width: 680px;
    margin: 0 auto;
}

.section-title i {
    font-style: italic;
    color: var(--primary);
}

.target-audience {
    background-color: var(--white);
    background-image: linear-gradient(to bottom, var(--bg-color), var(--white) 150px);
    background-repeat: no-repeat;
    padding-top: 100px; /* More space on desktop as requested */
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px; /* row-gap big to avoid icon overlap, col-gap normal */
    padding-top: 48px; /* Space for hanging icon */
}

.audience-card {
    background: var(--bg-color);
    border-radius: 24px;
    padding: 48px 24px 24px; /* Reduced top so content is closer to icon */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Tighter gap between title and text */
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: visible; /* Allow icon to hang over edge */
}

.audience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.audience-icon {
    position: absolute;
    top: -36px; /* Hang half out of card */
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(92, 100, 78, 0.15);
}

.audience-content h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.audience-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Stagger animation delays */
.audience-card:nth-child(1) { transition-delay: 0.05s; }
.audience-card:nth-child(2) { transition-delay: 0.1s; }
.audience-card:nth-child(3) { transition-delay: 0.15s; }
.audience-card:nth-child(4) { transition-delay: 0.2s; }
.audience-card:nth-child(5) { transition-delay: 0.25s; }
.audience-card:nth-child(6) { transition-delay: 0.3s; }

/* Responsive audience grid */
@media (max-width: 992px) {
    .target-audience {
        padding-top: 40px; /* Symmetry */
        padding-bottom: 40px;
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px 16px; /* row-gap enough to not overlap icons */
    }

    .section-title {
        font-size: 38px;
    }

    .section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 52px 0; /* Large row gap on mobile */
        padding-top: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .audience-card {
        padding: 48px 20px 24px;
    }

    .audience-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
        border-radius: 18px;
    }
}

/* ===================== */
/* Course Program Section */
/* ===================== */

.program {
    background-color: var(--bg-color);
    background-image: linear-gradient(to bottom, var(--white), var(--bg-color) 150px);
    background-repeat: no-repeat;
    /* ~80vh per card transition */
    min-height: 350vh;
    position: relative;
}

.program-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Clearing the fixed site header (approx 100px) and adding symmetric space */
    padding: 120px 0 80px;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* Vertically center both columns */
    width: 100%;
}

.program-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-steps .section-header {
    margin-bottom: 16px;
}

/* Week Card Accordion */
.week-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    /* Added background-color to transition for smoother color fade */
    transition: 
        background-color 0.6s ease,
        box-shadow var(--transition), 
        border-color var(--transition), 
        transform var(--transition);
    border: 1.5px solid transparent;
}

.week-card.open {
    border-color: var(--accent-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.week-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.week-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.week-card.open .week-icon,
.week-card:hover .week-icon {
    background: var(--primary);
    color: var(--white);
}

.week-meta {
    flex: 1;
}

.week-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.week-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.2;
}

.week-toggle {
    font-size: 24px;
    color: var(--primary-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.week-card.open .week-toggle {
    color: var(--primary);
    transform: rotate(45deg);
}

/* Accordion body */
.week-body {
    max-height: 0;
    overflow: hidden;
    /* 'Careful' premium easing with slightly faster start and very soft finish */
    transition: max-height 1.4s cubic-bezier(0.2, 0, 0, 1),
                opacity 1s ease,
                padding 1.4s cubic-bezier(0.2, 0, 0, 1);
    opacity: 0;
    padding: 0 24px;
}

.week-card.open .week-body {
    max-height: 400px;
    opacity: 1;
    padding: 0 24px 24px;
}

.week-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--accent-dark);
    padding-left: 12px;
}

.week-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.week-list li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.week-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Bonus lesson item — same style as regular list items, gift icon instead of ✓ */
.week-list li.week-bonus {
    margin-top: 8px;
}

.week-list li.week-bonus::before {
    content: none;
}

.week-list li.week-bonus .bonus-icon {
    flex-shrink: 0;
    font-size: 14px;
    width: 14px;
    height: 14px;
    min-width: 14px;
    display: inline-flex;
    color: var(--primary);
    margin-top: 1px;
    font-style: normal;
}

/* When JS scroll is driving the accordion, kill CSS transitions so inline styles win cleanly */
.program-scroll-active .week-body {
    transition: none !important;
}

.program-visual {
    /* Visual is centered by the grid now; no sticky needed (parent is sticky) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-visual.focus {
    transform: scale(1.05);
    opacity: 1;
}

.program-visual.focus .program-img {
    transform: scale(1.2); /* Scale up the image significantly (1.2x) during its focus phase */
}

@media (max-width: 992px) {
    .program-visual {
        opacity: 1;
        transform: scale(0.95);
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .program-visual.focus {
        opacity: 1;
        transform: scale(1.1);
    }
    .program-visual.focus .program-img {
        transform: scale(1.05);
        transform-origin: top center;
    }
}

.program-image-wrap {
    border-radius: 28px;
    overflow: visible;
    width: 110%; /* Slightly wider than column to feel bigger */
    transform: translateX(5%); /* Offset slightly right */
    position: relative;
}

.week-tag {
    position: absolute;
    display: block;
    padding: 5px 10px;
    background: var(--white);
    border: 1px solid var(--accent-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    pointer-events: none;
    z-index: 10;
    line-height: 1.3;
}

.week-topic {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
    margin-top: 1px;
}

.tag-r1 { top: 12%; right: calc(26% - 40px); }
.tag-r2 { top: 25%; right: calc(16% - 40px); }
.tag-l1 { top: 42%; left: 1%; }
.tag-l2 { top: 75%; left: 8%; }

.program-img {
    width: 100%;
    display: block;
    object-fit: contain;
    transform: scale(1.15); /* Additional visual scale */
    transform-origin: center center;
}

/* Responsive - mobile: cards always open, color fills on scroll */
@media (max-width: 992px) {
    /* Remove background-color transition so JS scroll updates don't fight CSS animation */
    .week-card {
        transition: box-shadow var(--transition), border-color var(--transition);
    }

    .program {
        min-height: auto;
    }

    .program-sticky {
        position: static;
        height: auto;
        overflow: visible;
        padding: 60px 0 20px;
        will-change: auto;
    }

    .program-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        height: auto;
        overflow: visible;
    }

    .program-steps {
        overflow: visible;
        min-height: 0;
    }

    /* Cards always open — no accordion on mobile */
    .week-body {
        max-height: none !important;
        opacity: 1 !important;
        padding: 0 24px 24px !important;
    }

    .week-toggle {
        display: none;
    }

    .week-header {
        cursor: default;
    }

    /* Pyramid below cards */
    .program-visual {
        height: auto;
        max-height: none;
        margin-top: 8px;
    }

    .program-image-wrap {
        width: auto;
        height: auto;
        max-width: 504px;
        transform: none;
        margin: 0 auto;
        position: relative;
    }

    .program-img {
        height: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        transform: none;
        transform-origin: top center;
    }

    /* Push left-side tags further from pyramid on mobile */
    .tag-l1 { top: 46%; left: 2%; }
    .tag-l2 { top: 72%; left: 2%; }
}


@media (max-width: 576px) {
    .program-img {
        max-width: 100%;
    }

    .week-header {
        padding: 16px 20px;
    }

    .week-card.open .week-body {
        padding: 0 20px 20px;
    }
}

/* ===================== */
/* Process Section */
/* ===================== */

.process {
    background-color: var(--white);
    background-image: linear-gradient(to bottom, var(--bg-color), var(--white) 150px);
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 100px;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 24px;
    padding-top: 36px; /* Space for hanging icons */
}

.process-card {
    background: var(--bg-color);
    padding: 48px 24px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    text-align: center;
}

.process-card .card-icon {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(92, 100, 78, 0.15);
}



.process-card .card-content h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.3;
}

.process-card .card-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

.process-image {
    text-align: center;
    position: relative;
}

.process-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* Responsive Process */
@media (max-width: 992px) {
    .process {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-image {
        order: 2;
    }

    .process-grid {
        order: 1;
        grid-template-columns: 1fr;
        gap: 52px 0;
        padding-top: 40px;
    }
    
    .process-card {
        padding: 48px 24px 24px;
    }

    .process-card .card-icon {
        width: 64px;
        height: 64px;
        font-size: 30px;
        top: -32px;
    }
}

/* ===================== */
/* Taboo Section */
/* ===================== */

.taboo {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-color) 80px, var(--bg-color) 100%);
}

.taboo-container {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(92, 100, 78, 0.2);
}

.taboo-header .section-badge {
    background: rgba(250, 235, 202, 0.2);
    color: var(--accent);
}

.taboo-header .section-title {
    color: var(--white);
    max-width: 100%;
    margin-bottom: 12px;
}

.taboo-header .section-title i {
    color: var(--accent);
}

.taboo-subtitle {
    font-size: 16px;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 40px;
}

.taboo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.taboo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: var(--transition);
}

.taboo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.taboo-icon {
    font-size: 22px;
    color: var(--accent);
    display: flex;
    flex-shrink: 0;
}

.taboo-item span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.taboo-footer {
    margin-top: 40px;
}

.taboo-footer p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--accent);
}

/* Responsive Taboo */
@media (max-width: 992px) {
    .taboo {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .taboo-container {
        padding: 50px 20px;
    }
    
    .taboo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .taboo-header .section-title {
        font-size: 32px;
    }

    .taboo-subtitle {
        margin-bottom: 24px;
        font-size: 15px;
    }
    
    .taboo-item {
        padding: 14px 20px;
    }
    
    .taboo-footer p {
        font-size: 16px;
    }
}

/* ===================== */
/* About Section */
/* ===================== */

.about {
    background: linear-gradient(to bottom, var(--white) 0%, #FEF3E8 100px, #FEF3E8 calc(100% - 100px), #FEF3E8 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-wrap {
    width: 100%;
    max-width: 440px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(200, 100, 30, 0.12);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content .section-badge {
    background: #FDDDB8;
    color: #B05A00;
}

.about-role {
    font-size: 16px;
    font-weight: 600;
    color: #C26A0A;
    letter-spacing: 0.5px;
    margin-top: -12px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(200, 100, 30, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    transition: var(--transition);
}

.credential-item:hover {
    background: var(--white);
    box-shadow: 0 8px 24px rgba(200, 100, 30, 0.08);
    transform: translateX(4px);
}

.credential-icon {
    width: 48px;
    height: 48px;
    background: #FDDDB8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C26A0A;
    flex-shrink: 0;
}

.credential-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.credential-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .about {
        padding-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        max-width: 340px;
        margin: 0 auto;
        border-radius: 24px;
    }
}

@media (max-width: 576px) {
    .about-image-wrap {
        max-width: 100%;
        border-radius: 20px;
    }

    .credential-item {
        padding: 14px 16px;
    }
}

/* ===================== */
/* Pricing Section */
/* ===================== */

.pricing {
    background: linear-gradient(to bottom, #FEF3E8 0%, var(--bg-color) 120px, var(--bg-color) calc(100% - 80px), var(--white) 100%);
}

.pricing-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

.pricing-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.pricing-card {
    background: var(--white);
    border-radius: 40px;
    padding: 48px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Header */
.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-spots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF3E0;
    color: #C26A0A;
    border: 1px solid #FDDDB8;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 8px;
}

.pricing-spots iconify-icon {
    font-size: 16px;
}

.pricing-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.pricing-tagline {
    font-family: var(--font-serif);
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -1px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
}

.price-amount {
    font-family: var(--font-sans);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -2px;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Divider */
.pricing-divider {
    height: 1px;
    background: var(--bg-color);
    border-radius: 2px;
}

/* Features */
.features-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list li div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.features-list li strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.features-list li span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA */
.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-start iconify-icon {
    font-size: 18px;
    color: var(--primary);
}

.pricing-btn {
    width: 100%;
    padding: 20px;
    font-size: 17px;
    border-radius: 16px;
    justify-content: center;
    gap: 10px;
}

.pricing-btn iconify-icon {
    font-size: 22px;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 32px 24px;
        border-radius: 28px;
        gap: 24px;
        max-width: 100%;
    }
    .pricing-wrap {
        width: 100%;
    }

    .pricing-tagline {
        font-size: 28px;
    }

    .price-amount {
        font-size: 44px;
    }
}

/* ===================== */
/* FAQ Section */
/* ===================== */

.faq {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-color) 100px, var(--bg-color) 100%);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-toggle {
    color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0, 0, 1),
                opacity 0.4s ease,
                padding 0.5s cubic-bezier(0.2, 0, 0, 1);
    opacity: 0;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    border-left: 3px solid var(--accent-dark);
    padding-left: 16px;
}

@media (max-width: 576px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 18px;
    }
}

/* ===================== */
/* Results Variant 1: Bento Grid */
/* ===================== */

.results-v1 {
    background: linear-gradient(to bottom, var(--bg-color) 0%, var(--white) 180px, var(--white) 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    margin-top: 48px;
}

.bento-card {
    padding: 32px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.small {
    grid-column: span 1;
}

.bento-card.medium {
    grid-column: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.bento-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.bento-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Responsive Bento */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.small,
    .bento-card.medium {
        grid-column: span 1;
    }
}


/* ===================== */
/* Footer */
/* ===================== */

.site-footer {
    background: var(--primary);
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social-btn iconify-icon {
    font-size: 18px;
}

.vk-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.vk-icon svg {
    display: block;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition);
}

.footer-whatsapp iconify-icon {
    font-size: 22px;
}

.footer-whatsapp:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-email {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--accent);
}

/* Nav column */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent);
}

/* Legal column */
.footer-legal-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 28px;
}

.footer-docs {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.footer-docs:hover {
    color: var(--accent);
}

/* Bottom bar */
.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 48px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ===================== */
/* Placeholder Section 4 */
/* ===================== */
