/* ---------- CSS RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

button,
a {
    font-size: 16px;
    /* or larger */
}

button,
a {
    touch-action: manipulation;
}



body {
    margin: 0;
    padding-top: 68px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #122016;
    background: #FAFAF7;
    line-height: 1.5;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

:root {
    --brand: #214E34;
    /* forest */
    --brand-600: #1B412B;
    --brand-700: #163624;
    --sage: #DCE7D3;
    --sage-2: #EEF4EA;
    --leaf: #5AA469;
    --ink: #101418;
    --muted: #5B6B61;
    --card: #FFFFFF;
    --focus: #1C7ED6;
    --ring: 0 0 0 3px rgba(28, 126, 214, .35);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(16, 20, 24, .08);
    --container: 1176px;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px
}

.btn {
    /*display: inline-flex;*/
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: all 0.2s ease;
    will-change: transform;
    border: none;
    cursor: pointer;
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--ring)
}

.btn:active {
    transform: translateY(1px)
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-primary:hover {
    background: var(--brand-600)
}

.btn-ghost {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent
}

.btn-ghost:hover {
    background: var(--sage)
}

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: .6rem 1rem;
    background: #fff;
    color: #000;
    border-radius: 8px;
    box-shadow: var(--ring)
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: #FFFFFFCC;
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid #E7ECE8
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px
}

.brand span {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--brand)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-links a {
    padding: .5rem .75rem;
    border-radius: 8px;
    color: #243027
}

.nav-links a:hover {
    background: var(--sage-2)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .6rem
}

/* Basket Icon */
.basket-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--sage-2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.basket-icon:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.basket-icon svg {
    stroke: var(--brand);
}

.basket-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid #FAFAF7;
}

.basket-count:empty,
.basket-count[data-count="0"] {
    display: none;
}

@media (max-width: 980px) {
    .nav-cta .btn {
        display: none;
    }
}

/* Mobile CTA buttons below hero */
.mobile-cta {
    display: none;
    padding: 20px;
    gap: 12px;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #E7ECE8;
}

@media (max-width: 980px) {
    .mobile-cta {
        display: flex;
    }
}

.burger {
    display: none;
    inline-size: 44px;
    block-size: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent
}

.burger:focus-visible {
    box-shadow: var(--ring)
}

.burger svg {
    width: 24px;
    height: 24px;
    color: var(--brand);
}

/* Hide mobile drawer on desktop */
.drawer {
    display: none;
}

@media (max-width: 980px) {
    .nav-links {
        display: none
    }

    .burger {
        display: inline-grid;
        place-items: center
    }

    .drawer {
        position: fixed;
        inset: 68px 0 auto 0;
        background: #fff;
        border-top: 1px solid #E7ECE8;
        box-shadow: var(--shadow);
        display: none
    }

    .drawer.open {
        display: block
    }

    .drawer a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid #F0F3F1
    }
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    padding: 52px 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sage);
    color: #1f2b10;
    border-radius: 999px;
    padding: .35rem .75rem;
    font-weight: 700;
    font-size: .85rem
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700)
}

.hero p {
    color: #314136;
    font-size: 1.12rem;
    max-width: 60ch
}

.hero .cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    justify-content: center;
}

.values .cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.hero-inner-content {
    padding: 0 20px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid #E7ECE8;
}

.hero-stats-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 981px) {
    .hero .cta {
        justify-content: flex-start;
    }

    .hero-inner-content {
        padding: 0;
    }
}

.hero-card {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px
}

.hero-card img {
    border-radius: 12px
}



.stat {
    background: linear-gradient(135deg, #F8FDF6, #F2F9EF);
    border: 1px solid #D4E8CC;
    border-radius: 12px;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--leaf));
}

.stat b {
    font-size: 1.1rem
}

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr
    }
}

/* ---------- VALUE CARDS ---------- */
.values {
    padding: 56px 0
}

.values h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    color: var(--brand-700);
    margin: 0 0 18px
}

.sub {
    max-width: 70ch;
    margin: 0 auto 26px;
    text-align: center;
    color: var(--muted)
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: var(--card);
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .35rem;
}

.card h3 {
    margin: 0;
    font-size: 1.1rem
}

.card p {
    color: #405247;
    font-size: 0.98rem
}

.icon {
    inline-size: 38px;
    block-size: 38px;
    border-radius: 10px;
    background: var(--sage);
    display: grid;
    place-items: center;
    color: var(--brand)
}

@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr
    }
}

/* ---------- FEATURED COURSE ---------- */
.featured {
    background: #fff;
    border-top: 1px solid #E7ECE8;
    border-bottom: 1px solid #E7ECE8
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: center;
    padding: 44px 20px
}

.badge {
    display: inline-block;
    background: #CFE5C7;
    color: #1f2b10;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .82rem;
    margin-bottom: 8px
}

@media (max-width:980px) {
    .featured-inner {
        grid-template-columns: 1fr
    }
}

/* ---------- PRICING ---------- */
.pricing {
    padding: 56px 20px
}

.pricing h2 {
    font-family: "Playfair Display", serif;
    text-align: center;
    color: var(--brand-700)
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plan {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--leaf));
}

.plan:first-child::before {
    background: linear-gradient(90deg, var(--brand), var(--brand-600));
}

.plan h3 {
    margin: .25rem 0;
    font-size: 1.25rem
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-700)
}

.plan ul {
    margin: 16px 0 20px;
    padding-left: 0;
    list-style: none;
}

.plan li {
    margin: .5rem 0;
    padding-left: 24px;
    position: relative;
}

.plan li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf);
    font-weight: 700;
}

@media (max-width:980px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .plan {
        padding: 24px 20px;
    }
}

/* ---------- TESTIMONIALS ---------- */
.social {
    padding: 50px 0;
    background: linear-gradient(180deg, #F6FBF3, #FFFFFF)
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.track {
    display: flex;
    gap: 16px;
    padding-bottom: 4px;
    transition: transform 0.3s ease;
}

.track .quote {
    width: 500px;
    flex-shrink: 0;
}

/* Mobile card sizing */
@media (max-width: 980px) {
    .track .quote {
        width: calc(100vw - 60px);
        margin: 0 10px;
    }
}

/* Navigation arrows */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--leaf);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(90, 164, 105, 0.3);
}

.testimonials-nav:hover {
    background: var(--brand);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(90, 164, 105, 0.4);
}

.testimonials-nav svg {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonials-nav.prev {
    left: 20px;
}

.testimonials-nav.next {
    right: 20px;
}

.testimonials-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.quote {
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow)
}

.from {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .6rem;
    color: #405247;
    font-size: .95rem
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--brand));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Mobile responsive arrows */
@media (max-width: 980px) {
    .testimonials-nav {
        width: 44px;
        height: 44px;
    }

    .testimonials-nav.prev {
        left: 10px;
    }

    .testimonials-nav.next {
        right: 10px;
    }

    .testimonials-nav svg {
        width: 18px;
        height: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .track {
        animation: none;
        overflow-x: auto;
    }

    .testimonials-container {
        overflow-x: auto;
    }
}

/* ---------- FAQ ---------- */
.faq {
    padding: 56px 20px;
    border-top: 1px solid #E7ECE8
}

details {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 14px;
    padding: 14px 16px
}

details+details {
    margin-top: 10px
}

summary {
    cursor: pointer;
    font-weight: 700
}

summary:focus-visible {
    outline: none;
    box-shadow: var(--ring)
}

/* ---------- FOOTER ---------- */
footer {
    background: #0E1812;
    color: #D9E4DC;
    margin-top: 56px
}

.foot {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 26px;
    padding: 28px 0
}

.foot a {
    color: #D9E4DC
}

.foot small {
    color: #9EB5A8
}

.credit {
    border-top: 1px solid #2C3B32;
    padding: 16px 0;
    color: #A6B7AD
}

@media (max-width:980px) {
    .foot {
        grid-template-columns: 1fr
    }
}

/* ---------- FORM IMPROVEMENTS ---------- */
.toolkit-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.toolkit-form>div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toolkit-form label {
    font-weight: 600;
    color: var(--brand-700);
    font-size: .9rem;
}

.toolkit-form input {
    padding: 12px 14px;
    border: 1px solid #D8E2DA;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.toolkit-form input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--ring);
}

.toolkit-form .form-note {
    grid-column: 1 / -1;
    color: #5B6B61;
    font-size: .9rem;
    margin: 6px 2px 0;
}

@media (max-width: 768px) {
    .toolkit-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ---------- ENHANCED VISUAL IMPROVEMENTS ---------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(92, 164, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 20, 24, .12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 78, 52, 0.2);
}

.btn:active {
    transform: translateY(1px);
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.stat {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 20, 24, .08);
}

/* ---------- SECTION PADDING ---------- */
.toolkit-section {
    padding: 54px 20px;
}

.contact-content {
    text-align: center;
}

/* ---------- SCROLL TO TOP BUTTON ---------- */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(33, 78, 52, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 78, 52, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
    outline: none;
    box-shadow: var(--ring)
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }
}

/* ---------- COURSES PAGE ---------- */
.courses-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 0;
}

.courses-hero-inner {
    text-align: center;
}

.courses-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.courses-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.courses-hero p {
    color: #314136;
    font-size: 1.12rem;
    max-width: 65ch;
    margin: 0 auto 1.5rem;
}

.courses-hero .cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Course Filter Bar */
.courses-filter {
    margin: 0 0 32px;
    padding: 20px 0;
    border-bottom: 1px solid #E7ECE8;
}

.filter-controls {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: .7rem 1.2rem;
    border: 2px solid #E7ECE8;
    border-radius: 10px;
    background: #fff;
    color: var(--muted);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--sage);
    background: var(--sage-2);
    color: var(--brand);
}

.filter-btn.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.filter-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* Course Cards Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

.course-card {
    position: relative;
    background: var(--card);
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 20, 24, .12);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.course-badge span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.badge-popular {
    background: linear-gradient(135deg, #FFD93D, #FFB03A);
    color: #1f2b10;
}

.badge-new {
    background: linear-gradient(135deg, var(--leaf), #4A9259);
    color: #fff;
}

.badge-essential {
    background: linear-gradient(135deg, #FF6B6B, #EE5A52);
    color: #fff;
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--sage-2);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-meta {
    display: flex;
    gap: .75rem;
    margin-bottom: 12px;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 4px 10px;
    background: var(--sage-2);
    color: var(--brand);
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 600;
}

.course-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--brand-700);
}

.course-content > p {
    color: #405247;
    font-size: .98rem;
    margin: 0 0 16px;
    line-height: 1.6;
}

.course-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.course-includes li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #405247;
    font-size: .92rem;
}

.course-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf);
    font-weight: 700;
}

.course-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #E7ECE8;
}

.course-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
}

.price-note {
    font-size: .85rem;
    color: var(--muted);
}

.course-actions {
    display: flex;
    gap: 8px;
}

.btn-course {
    flex: 1;
    justify-content: center;
    padding: .8rem 1rem;
    font-size: .95rem;
}

/* Membership CTA Section */
.courses-cta {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    padding: 60px 20px;
    margin: 60px 0;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-card h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin: 0 0 16px;
}

.cta-card > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 65ch;
    margin: 0 auto 32px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
}

.benefit svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #fff;
}

.courses-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.courses-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cta-benefits {
        grid-template-columns: 1fr;
    }
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 20px 48px;
    text-align: center;
}

.legal-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.legal-updated {
    color: var(--muted);
    font-size: .95rem;
    font-style: italic;
}

.legal-content {
    padding: 48px 20px 60px;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.legal-wrapper .intro {
    font-size: 1.1rem;
    color: #314136;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--sage-2);
    border-left: 4px solid var(--brand);
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-of-type {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--brand-700);
    margin: 0 0 16px;
}

.legal-section p {
    color: #405247;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    color: #405247;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--brand);
    text-decoration: underline;
    font-weight: 600;
}

.legal-section a:hover {
    color: var(--brand-600);
}

.contact-details {
    background: var(--sage-2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
}

.contact-details p {
    margin: 8px 0;
}

.legal-footer {
    padding-top: 32px;
    border-top: 1px solid #E7ECE8;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 24px;
    }
    
    .legal-hero {
        padding: 40px 20px 32px;
    }
}

/* ---------- FAQ PAGE ---------- */
.faq-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 20px 48px;
    text-align: center;
}

.faq-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.faq-hero p {
    color: #314136;
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0 auto;
}

.faq-content {
    padding: 48px 20px 60px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.category-title {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    color: var(--brand-700);
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sage);
}

.faq-item {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(16, 20, 24, .08);
}

.faq-item[open] {
    box-shadow: 0 4px 16px rgba(16, 20, 24, .1);
    border-color: var(--sage);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brand-700);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--brand);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: #405247;
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    color: #fff;
}

.faq-cta h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin: 0 0 12px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin: 0 0 24px;
    opacity: 0.95;
}

.faq-cta .cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.faq-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 20px 32px;
    }
    
    .faq-item summary {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-cta {
        padding: 32px 24px;
    }
}

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 20px 48px;
}

.contact-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.contact-hero p {
    color: #314136;
    font-size: 1.12rem;
    max-width: 65ch;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--brand-700);
    margin: 0 0 12px;
}

.contact-form-header p {
    color: var(--muted);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--brand-700);
    font-size: .95rem;
}

.required {
    color: #E53E3E;
    font-weight: 700;
}

.optional {
    color: var(--muted);
    font-weight: 400;
    font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D8E2DA;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--ring);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    color: var(--muted);
    font-size: .85rem;
    margin-top: -4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--brand);
}

.form-actions {
    margin-top: 12px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-size: .85rem;
}

.form-note svg {
    flex-shrink: 0;
    color: var(--leaf);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--brand-700);
    margin: 0 0 8px;
}

.contact-info-card > p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--sage-2);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-method:hover {
    background: var(--sage);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    color: #fff;
}

.contact-method-content {
    flex: 1;
}

.contact-method-content h4 {
    font-size: 1.05rem;
    margin: 0 0 4px;
    color: var(--brand-700);
}

.contact-method-content a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.contact-method-content a:hover {
    text-decoration: underline;
}

.contact-method-content p {
    margin: 4px 0 0;
    color: #405247;
    font-size: .95rem;
}

.contact-method-content small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .85rem;
}

/* Quick Links */
.contact-quick-links {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.contact-quick-links h4 {
    font-size: 1.05rem;
    margin: 0 0 16px;
    color: var(--brand-700);
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: var(--sage-2);
}

.quick-link span {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-2);
    border-radius: 8px;
    flex-shrink: 0;
}

.quick-link div {
    flex: 1;
}

.quick-link strong {
    display: block;
    color: var(--brand-700);
    font-size: .95rem;
    margin-bottom: 2px;
}

.quick-link small {
    color: var(--muted);
    font-size: .85rem;
}

/* Response Banner */
.response-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, var(--sage-2), var(--sage));
    border: 1px solid #D4E8CC;
    border-radius: 12px;
}

.response-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.response-banner strong {
    display: block;
    color: var(--brand-700);
    font-size: 1rem;
    margin-bottom: 6px;
}

.response-banner p {
    color: #405247;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--leaf), var(--brand));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--brand-700);
    margin: 0 0 12px;
}

.form-success p {
    color: #405247;
    font-size: 1.05rem;
    max-width: 50ch;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 980px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 32px 24px;
    }

    .contact-info-card {
        padding: 28px 20px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 40px 20px 32px;
    }

    .contact-form-section {
        padding: 28px 20px;
    }

    .contact-method {
        padding: 14px;
    }

    .contact-method-icon {
        width: 44px;
        height: 44px;
    }
}

/* ---------- PRICING PAGE ---------- */
.pricing-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 20px 48px;
}

.pricing-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.pricing-hero p {
    color: #314136;
    font-size: 1.12rem;
    max-width: 65ch;
    margin: 0 auto;
}

/* Enhanced Pricing Grid */
.pricing-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-grid-enhanced {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    background: #fff;
    border: 2px solid #E7ECE8;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(16, 20, 24, .06);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 20, 24, .12);
    border-color: var(--sage);
}

.pricing-card-featured {
    border-color: var(--brand);
    border-width: 3px;
    box-shadow: 0 8px 30px rgba(33, 78, 52, .15);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(33, 78, 52, .2);
}

.pricing-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD93D, #FFB03A);
    color: #1f2b10;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 185, 58, 0.4);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-badge-leaf {
    background: linear-gradient(135deg, var(--leaf), #4A9259);
    color: #fff;
}

.pricing-badge-brand {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
}

.pricing-badge-sage {
    background: var(--sage);
    color: var(--brand);
}

.pricing-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--brand-700);
    margin: 0 0 8px;
}

.pricing-subtitle {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 24px 0 32px;
    padding: 20px 0;
    border-top: 1px solid #E7ECE8;
    border-bottom: 1px solid #E7ECE8;
}

.pricing-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand);
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-700);
    line-height: 1;
}

.pricing-period {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F3F1;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--leaf);
    margin-top: 2px;
}

.pricing-features span {
    color: #405247;
    font-size: .95rem;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: .85rem;
}

/* Alternative Option Card */
.pricing-alternative {
    max-width: 900px;
    margin: 0 auto;
}

.alternative-card {
    background: linear-gradient(135deg, var(--sage-2), var(--sage));
    border: 2px solid #D4E8CC;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.alternative-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.alternative-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.alternative-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--brand-700);
    margin: 0 0 8px;
}

.alternative-content p {
    color: #405247;
    margin: 0;
    line-height: 1.6;
}

.alternative-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.alternative-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-700);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.alternative-price small {
    font-size: .85rem;
    font-weight: 400;
    color: var(--muted);
}

@media (max-width: 768px) {
    .alternative-card {
        flex-direction: column;
        text-align: center;
    }

    .alternative-content {
        flex-direction: column;
        text-align: center;
    }

    .alternative-cta {
        align-items: center;
        width: 100%;
    }

    .alternative-cta .btn {
        width: 100%;
    }

    .alternative-price {
        align-items: center;
    }
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table th:first-child {
    border-top-left-radius: 16px;
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E7ECE8;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--sage-2);
}

.comparison-table td {
    padding: 16px;
    color: #405247;
    font-size: .95rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--brand-700);
}

.comparison-table .check {
    color: var(--leaf);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table .dash {
    color: #D8E2DA;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: .9rem;
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--sage);
}

.faq-item[open] {
    border-color: var(--brand);
    box-shadow: 0 4px 16px rgba(33, 78, 52, .1);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--brand-700);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(90deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #405247;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 20, 24, .08);
    border-color: var(--sage);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.trust-item h4 {
    font-size: 1.1rem;
    color: var(--brand-700);
    margin: 0 0 8px;
}

.trust-item p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
    line-height: 1.5;
}

/* Final CTA */
.final-cta-card {
    text-align: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(33, 78, 52, .2);
}

.final-cta-card h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    margin: 0 0 16px;
}

.final-cta-card p {
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0 auto 24px;
    opacity: 0.95;
}

.final-cta-card .btn-ghost {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.final-cta-card .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 40px 20px 32px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .alternative-card {
        padding: 24px 20px;
    }

    .final-cta-card {
        padding: 40px 24px;
    }
}

/* ---------- DEMO/BOOK PAGE ---------- */
.demo-hero {
    background: linear-gradient(180deg, #F4F8F1, #FDFEFC);
    border-bottom: 1px solid #E7ECE8;
    padding: 56px 20px 48px;
}

.demo-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 1rem;
    color: var(--brand-700);
}

.demo-hero p {
    color: #314136;
    font-size: 1.12rem;
    max-width: 65ch;
    margin: 0 auto;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Demo Form Section */
.demo-form-section {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.demo-form-header {
    margin-bottom: 32px;
}

.demo-form-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--brand-700);
    margin: 0 0 12px;
}

.demo-form-header p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
}

/* Demo Info Section */
.demo-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-info-card {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.demo-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--brand-700);
    margin: 0 0 8px;
}

.demo-info-card > p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Timeline */
.demo-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--sage-2);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.timeline-item:hover {
    background: var(--sage);
    transform: translateX(4px);
}

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--sage);
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--brand-700);
}

.timeline-content p {
    margin: 0;
    color: #405247;
    font-size: .92rem;
    line-height: 1.5;
}

/* Benefits Card */
.demo-benefits-card {
    background: linear-gradient(135deg, var(--sage-2), var(--sage));
    border: 2px solid #D4E8CC;
    border-radius: 16px;
    padding: 28px;
}

.demo-benefits-card h4 {
    font-size: 1.15rem;
    margin: 0 0 16px;
    color: var(--brand-700);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #405247;
    font-size: .95rem;
}

.benefits-list svg {
    flex-shrink: 0;
    color: var(--leaf);
    margin-top: 2px;
}

/* Meeting Details Card */
.demo-meeting-card {
    background: #fff;
    border: 1px solid #E7ECE8;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meeting-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--sage-2);
    border-radius: 10px;
}

.meeting-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.meeting-detail strong {
    display: block;
    color: var(--brand-700);
    font-size: .95rem;
    margin-bottom: 2px;
}

.meeting-detail p {
    margin: 0;
    color: #405247;
    font-size: .9rem;
}

/* Testimonial Card */
.demo-testimonial {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(33, 78, 52, .2);
}

.demo-testimonial blockquote {
    margin: 0 0 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.demo-testimonial cite {
    display: block;
    font-size: .9rem;
    opacity: 0.9;
    font-style: normal;
}

/* Demo FAQ Section */
.demo-faq-section .faq-item {
    background: #fff;
}

/* Responsive Design */
@media (max-width: 980px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
    }

    .demo-form-section {
        padding: 32px 24px;
    }

    .demo-info-card {
        padding: 28px 20px;
    }
}

@media (max-width: 640px) {
    .demo-hero {
        padding: 40px 20px 32px;
    }

    .demo-form-section {
        padding: 28px 20px;
    }

    .timeline-item {
        padding: 14px;
    }

    .timeline-icon {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    .demo-meeting-card {
        padding: 20px;
    }

    .demo-testimonial {
        padding: 24px 20px;
    }
}