/* ==========================================================
   Top de Crochê Brasil Dupla Face — Landing Page
   Palette: #fdafbe (rose), #2c3577 (deep blue),
            #884869 (wine), #c8e26f (lime)
   ========================================================== */

:root {
    --rose: #fdafbe;
    --rose-50: #fff3f6;
    --rose-100: #ffd8e1;
    --rose-200: #fcc5d1;
    --rose-700: #c5778a;

    --indigo: #2c3577;
    --indigo-deep: #1d245a;
    --indigo-soft: #4a55a5;
    --indigo-50: #eef0fa;

    --wine: #884869;
    --wine-dark: #62324a;
    --wine-soft: #a86c8a;

    --lime: #c8e26f;
    --lime-dark: #a8c44a;
    --lime-soft: #ddee9e;

    --ink: #1a1729;
    --ink-soft: #4d4760;
    --paper: #fffaf6;
    --paper-warm: #fff1e8;

    --shadow-sm: 0 2px 12px rgba(44, 53, 119, 0.06);
    --shadow-md: 0 12px 30px -12px rgba(44, 53, 119, 0.18);
    --shadow-lg: 0 30px 60px -25px rgba(44, 53, 119, 0.30);
    --shadow-rose: 0 25px 50px -20px rgba(253, 175, 190, 0.7);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --container: 1180px;

    /* Fluid typography */
    --fs-hero: clamp(2.4rem, 6.5vw, 5.4rem);
    --fs-h2: clamp(1.9rem, 4.2vw, 3.4rem);
    --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
    --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);
    --fs-body: clamp(0.98rem, 1vw, 1.05rem);
    --fs-small: 0.9rem;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* ===== Display heading style (Fraunces serif w/ italic accents) ===== */
h1, h2, h3, .display {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--indigo);
}
h1 em, h2 em, h3 em, .display em {
    font-style: italic;
    font-weight: 500;
    color: var(--wine);
    font-variation-settings: 'opsz' 144;
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 246, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(44, 53, 119, 0.06);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    color: var(--indigo);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.logo-mark {
    width: 57px;
    height: 57px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.logo-mark--footer {
    width: 51px;
    height: 51px;
}
.logo-text em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--wine);
    font-weight: 500;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}
.nav__links a {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 500;
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--wine); }

.nav__cta {
    background: var(--indigo);
    color: var(--paper) !important;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
    background: var(--wine) !important;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--indigo);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        inset: 72px 0 auto 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--paper);
        padding: 1rem 1.5rem 2rem;
        border-bottom: 1px solid rgba(44, 53, 119, 0.08);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
    }
    .nav__links a {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(44, 53, 119, 0.06);
    }
    .nav__cta {
        margin-top: 1rem;
        text-align: center;
        border-bottom: 0 !important;
    }
    .nav.is-open .nav__links { transform: translateY(0); }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(253, 175, 190, 0.45), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(200, 226, 111, 0.30), transparent 55%),
        var(--paper);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: float 14s ease-in-out infinite;
}
.hero__blob--1 {
    top: -10%; left: -8%;
    width: 380px; height: 380px;
    background: var(--rose);
}
.hero__blob--2 {
    top: 30%; right: -10%;
    width: 320px; height: 320px;
    background: var(--lime);
    animation-delay: -4s;
}
.hero__blob--3 {
    bottom: 10%; left: 30%;
    width: 280px; height: 280px;
    background: var(--rose-100);
    animation-delay: -8s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding-bottom: clamp(3rem, 7vw, 5rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--wine);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(136, 72, 105, 0.2);
}
.eyebrow__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 226, 111, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(200, 226, 111, 0); }
}

.hero__title {
    font-size: var(--fs-hero);
    margin: 1.2rem 0 1.4rem;
    color: var(--indigo);
}
.hero__title em {
    color: var(--wine);
    font-style: italic;
    font-weight: 500;
}
.hero__title-row {
    display: block;
    margin-top: 0.2em;
}
.hero__title-mark {
    display: inline-block;
    background: var(--lime);
    padding: 0.05em 0.4em;
    border-radius: 0.2em 0.5em 0.15em 0.45em;
    color: var(--indigo-deep);
    font-style: italic;
    font-weight: 700;
    transform: rotate(-1.5deg);
    box-shadow: var(--shadow-sm);
}

.hero__lead {
    font-size: var(--fs-lead);
    color: var(--ink-soft);
    max-width: 30em;
    line-height: 1.55;
}
.hero__lead strong { color: var(--indigo); font-weight: 600; }

.hero__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem;
    flex-wrap: wrap;
}
.hero__price { display: flex; flex-direction: column; line-height: 1.2; }
.hero__price-old {
    text-decoration: line-through;
    color: var(--ink-soft);
    font-size: 0.85rem;
}
.hero__price-new {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--indigo);
    font-weight: 700;
}
.hero__price-meta {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.hero__badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.hero__badges li { display: flex; align-items: center; gap: 0.4rem; }
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--lime);
    color: var(--indigo-deep);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.check--big { width: 26px; height: 26px; font-size: 0.85rem; }

/* HERO MEDIA */
.hero__media {
    position: relative;
    aspect-ratio: 1 / 1.05;
    max-width: 540px;
    justify-self: end;
    width: 100%;
}
.hero__photo {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--rose-100);
    transition: transform 0.4s ease;
}
.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__photo--main {
    width: 70%;
    height: 78%;
    top: 0;
    right: 8%;
    transform: rotate(-2deg);
    z-index: 2;
}
.hero__photo--main:hover { transform: rotate(-2deg) translateY(-6px); }
.hero__photo--side {
    width: 52%;
    height: 60%;
    bottom: 0;
    left: 0;
    transform: rotate(4deg);
    z-index: 1;
    border: 8px solid var(--paper);
}
.hero__photo--side:hover { transform: rotate(4deg) translateY(-6px); }

.photo-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.photo-tag--green {
    background: rgba(44, 53, 119, 0.75);
    color: var(--lime);
}
.photo-tag--yellow {
    background: rgba(255, 250, 246, 0.85);
    color: var(--wine);
}

.hero__sticker {
    position: absolute;
    top: 5%;
    left: -3%;
    z-index: 3;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--indigo-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Fraunces', serif;
    transform: rotate(-12deg);
    box-shadow: var(--shadow-md);
    animation: spin-slow 18s linear infinite;
    animation-direction: alternate;
}
@keyframes spin-slow {
    from { transform: rotate(-12deg); }
    to { transform: rotate(8deg); }
}
.hero__sticker span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero__sticker strong {
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0.15rem;
}

/* MARQUEE */
.hero__marquee {
    background: var(--indigo);
    color: var(--rose);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}
.marquee__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
}
.marquee__track > span {
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.marquee__track span:nth-child(odd) { color: var(--lime); }
.marquee__track span:nth-child(even) { color: var(--rose); opacity: 0.7; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 880px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__media {
        aspect-ratio: 1 / 1.1;
        margin: 1rem auto 0;
        max-width: 420px;
    }
    .hero__sticker { width: 95px; height: 95px; left: 0; }
    .hero__sticker strong { font-size: 1.25rem; }
    .hero__sticker span { font-size: 0.65rem; }
}

/* =================================================================
   BENEFITS
   ================================================================= */
.benefits {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper);
}
.section__head {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--wine);
    margin-bottom: 1rem;
}
.section__eyebrow--light { color: var(--rose); }
.section__title {
    font-size: var(--fs-h2);
    color: var(--indigo);
}
.section__title--small { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section__title--light { color: var(--paper); }
.section__title--light em { color: var(--lime); }
.section__sub {
    margin-top: 1rem;
    font-size: var(--fs-lead);
    color: var(--ink-soft);
    max-width: 36em;
}
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    padding: 2rem 1.7rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 53, 119, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.benefit-card__icon svg { width: 28px; height: 28px; }
.icon--pink { background: var(--rose-100); color: var(--wine); }
.icon--blue { background: var(--indigo-50); color: var(--indigo); }
.icon--wine { background: rgba(136, 72, 105, 0.12); color: var(--wine); }
.icon--lime { background: var(--lime-soft); color: var(--indigo-deep); }

.benefit-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0.55rem;
    color: var(--indigo);
}
.benefit-card p {
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* =================================================================
   WHAT YOU LEARN (dark section)
   ================================================================= */
.learn {
    background: var(--indigo);
    color: var(--paper);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}
.learn::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: var(--rose);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.learn::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -50px;
    width: 280px; height: 280px;
    background: var(--lime);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.18;
}
.learn__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.learn__intro { position: sticky; top: 100px; }
.learn__lead {
    font-size: var(--fs-lead);
    color: rgba(255, 250, 246, 0.78);
    margin: 1.2rem 0 2rem;
    max-width: 32em;
}

.modules {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}
.module {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.7rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.module:hover {
    background: rgba(253, 175, 190, 0.10);
    border-color: rgba(253, 175, 190, 0.3);
    transform: translateX(6px);
}
.module__num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--lime);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5ch;
}
.module__body h3 {
    color: var(--paper);
    font-size: var(--fs-h3);
    margin-bottom: 0.3rem;
}
.module__body p {
    color: rgba(255, 250, 246, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 880px) {
    .learn__inner { grid-template-columns: 1fr; }
    .learn__intro { position: static; }
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper);
}
.gallery__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1rem;
    grid-template-rows: 480px;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: var(--rose-100);
    transition: transform 0.4s ease;
}
.gallery__item:hover { transform: translateY(-8px); }
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 1; }

.gallery__item figcaption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 250, 246, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--indigo);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot--green { background: linear-gradient(135deg, #1d6e22, #4ea835); }
.dot--yellow { background: linear-gradient(135deg, #f5d50d, #e8b008); }
.dot--wine { background: var(--wine); }

@media (max-width: 880px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px;
    }
    .gallery__item--tall {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 540px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 320px);
    }
    .gallery__item--tall { grid-column: span 1; }
}

/* =================================================================
   CALCULATOR BONUS
   ================================================================= */
.calc {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background:
        radial-gradient(ellipse at top right, rgba(200, 226, 111, 0.25), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(253, 175, 190, 0.30), transparent 55%),
        var(--paper);
    position: relative;
    overflow: hidden;
}
.calc__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.calc__media {
    position: relative;
    aspect-ratio: 4 / 3;
}
.calc__shot {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
    border: 8px solid var(--paper);
}
.calc__shot:hover { transform: rotate(-2deg) translateY(-6px); }
.calc__shot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(253, 175, 190, 0.12));
    pointer-events: none;
    z-index: 1;
}
.calc__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.calc__sticker {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--indigo-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    transform: rotate(8deg);
    box-shadow: var(--shadow-md);
}
.calc__sticker span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.calc__sticker strong {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
}

.calc__body { max-width: 32em; }
.calc__lead {
    font-size: var(--fs-lead);
    color: var(--ink-soft);
    margin: 1.2rem 0 1.8rem;
    line-height: 1.6;
}
.calc__lead strong { color: var(--indigo); font-weight: 600; }

.calc__list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}
.calc__list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}
.calc__list li > div { flex: 1; }
.calc__list strong {
    display: block;
    color: var(--indigo);
    font-size: 1rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
}
.calc__list p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.5;
}

@media (max-width: 880px) {
    .calc__inner { grid-template-columns: 1fr; }
    .calc__media { max-width: 540px; margin: 0 auto; }
    .calc__sticker { width: 88px; height: 88px; right: -8px; top: -8px; }
    .calc__sticker strong { font-size: 1.15rem; }
    .calc__sticker span { font-size: 0.66rem; }
}

/* =================================================================
   INSTRUCTOR + TESTIMONIALS
   ================================================================= */
.instructor {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--rose-50);
    background:
        radial-gradient(ellipse at top left, rgba(253, 175, 190, 0.35), transparent 55%),
        var(--paper-warm);
}
.instructor__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
}
.instructor__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(136, 72, 105, 0.08);
}
.instructor__avatar {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--rose-100);
}
.instructor__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
.instructor__body p {
    color: var(--ink-soft);
    margin-top: 0.7rem;
    line-height: 1.65;
}
.instructor__signature {
    color: var(--wine) !important;
    font-style: italic;
    font-family: 'Fraunces', serif;
    margin-top: 1rem !important;
}

.testimonials {
    display: grid;
    gap: 1rem;
    align-content: center;
}
.testimonial {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.7rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--lime);
}
.testimonial__stars {
    color: var(--lime-dark);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}
.testimonial p {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--indigo);
    line-height: 1.45;
    font-weight: 500;
}
.testimonial footer {
    margin-top: 0.8rem;
    color: var(--wine);
    font-size: 0.86rem;
    font-weight: 600;
}

@media (max-width: 880px) {
    .instructor__inner { grid-template-columns: 1fr; }
}

/* =================================================================
   OFFER
   ================================================================= */
.offer {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background:
        linear-gradient(180deg, var(--paper) 0%, var(--paper) 50%, var(--paper-warm) 50%, var(--paper-warm) 100%);
}
.offer__card {
    background: linear-gradient(135deg, var(--rose-100) 0%, var(--rose) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-rose);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    position: relative;
    overflow: hidden;
}
.offer__card::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 280px; height: 280px;
    background: var(--lime);
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(8px);
}
.offer__left, .offer__right { position: relative; z-index: 1; }

.offer__title {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    color: var(--indigo-deep);
    margin: 0.8rem 0 1.5rem;
}
.offer__title em { color: var(--wine-dark); }
.offer__list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}
.offer__list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.02rem;
    color: var(--indigo-deep);
    font-weight: 500;
}

.offer__pricebox {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid rgba(255,255,255,0.5);
}
.offer__from {
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.offer__from s { color: var(--rose-700); }
.offer__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
    margin: 0.4rem 0 0.3rem;
    color: var(--wine);
    font-family: 'Fraunces', serif;
}
.offer__price .currency {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.offer__price .amount {
    font-size: clamp(4rem, 9vw, 6.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
}
.offer__price .cents {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.offer__split {
    display: block;
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}
.offer__safe {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.offer__guarantee {
    margin-top: 1.5rem;
    background: rgba(255, 250, 246, 0.55);
    backdrop-filter: blur(8px);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.5);
}
.offer__guarantee-seal {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--indigo-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.offer__guarantee-seal strong { font-size: 1.6rem; line-height: 1; font-weight: 700; }
.offer__guarantee-seal span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.offer__guarantee-text strong {
    color: var(--indigo-deep);
    font-size: 0.96rem;
    display: block;
    margin-bottom: 0.2rem;
}
.offer__guarantee-text p {
    font-size: 0.86rem;
    color: var(--indigo-deep);
    opacity: 0.8;
    line-height: 1.45;
}

@media (max-width: 880px) {
    .offer__card { grid-template-columns: 1fr; }
}

/* =================================================================
   FAQ
   ================================================================= */
.faq {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper-warm);
}
.faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}
.faq__item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(44, 53, 119, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq__item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--rose);
}
.faq__item summary {
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rose-100);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s, background 0.3s;
}
.faq__chev::before, .faq__chev::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px;
    height: 2px;
    background: var(--wine);
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
    border-radius: 2px;
}
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev {
    background: var(--lime);
    transform: rotate(180deg);
}
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__item p {
    padding: 0 1.6rem 1.4rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--indigo);
    color: var(--paper);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(253, 175, 190, 0.25), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(200, 226, 111, 0.2), transparent 40%);
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--paper);
    margin-bottom: 1rem;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.final-cta h2 em { color: var(--lime); font-style: italic; font-weight: 500; }
.final-cta p {
    color: rgba(255, 250, 246, 0.75);
    margin-bottom: 2rem;
    font-size: var(--fs-lead);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--indigo-deep);
    color: rgba(255, 250, 246, 0.6);
    padding: 2.5rem 0;
}
.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.86rem;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--paper);
    font-weight: 600;
}
.footer__legal {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.footer__legal a:hover { color: var(--rose); }
.footer__legal span { opacity: 0.4; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s;
    font-family: inherit;
    letter-spacing: -0.005em;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
    background: var(--wine);
    color: var(--paper);
    box-shadow: 0 12px 24px -10px rgba(136, 72, 105, 0.55);
}
.btn--primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -10px rgba(136, 72, 105, 0.6);
}
.btn--lime {
    background: var(--lime);
    color: var(--indigo-deep);
    box-shadow: 0 12px 24px -10px rgba(200, 226, 111, 0.7);
}
.btn--lime:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
}
.btn--block {
    display: flex;
    width: 100%;
}
.btn--xl {
    padding: 1.25rem 2.2rem;
    font-size: 1.1rem;
}

/* =================================================================
   UTIL: reduce motion
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
