/* ============================================
   DESIGN 6 — BEST OF BOTH
   Playful layout + Classic French colors
   ============================================ */

/* Self-hosted fonts */
@font-face {
    font-family: 'Fredoka One';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/fredoka-one.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/fonts/nunito.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Classic French color palette */
    --navy: #1B2A4A;
    --navy-light: #2a3f6b;
    --navy-dark: #111d35;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --red: #C1272D;
    --red-light: #d44a4f;
    --red-dark: #9a1e23;
    --gold: #D4A843;
    --gold-light: #e6c672;
    --gold-dark: #b08a2e;
    --gray: #8C8279;
    --gray-light: #b5ada6;
    --gray-dark: #5e5750;
    --white: #ffffff;
    --black: #1a1a1a;

    /* Playful typography */
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Playful rounded radii */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.1);
    --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
    --shadow-xl: 0 12px 60px rgba(27, 42, 74, 0.18);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

body.nav-active {
    overflow: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ============ LUCIDE ICONS ============ */
/* Lucide renders as inline <svg> elements */

/* Inline icons within text (badges, trust, pricing delivery, footer) */
.icon-inline {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    display: inline-block;
}

.icon-inline.icon-filled {
    fill: currentColor;
    stroke: none;
}

.icon-heart {
    color: var(--red);
    fill: var(--red);
    width: 16px;
    height: 16px;
}

/* Icons inside buttons */
.icon-btn {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Icons in pricing feature lists */
.icon-list {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    display: inline-block;
    color: var(--gold);
    flex-shrink: 0;
    margin-right: 4px;
}

.pricing-card-annual .icon-list {
    color: var(--gold-dark);
}

/* Large icons in "What's Included" cards */
.card-icon {
    display: block;
    margin-bottom: 14px;
}

.card-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    color: var(--cream);
    stroke-width: 1.5;
    transition: transform var(--transition);
}

.included-card:hover .card-icon svg {
    transform: scale(1.15);
}

/* Step icons in How It Works */
.step-icon {
    display: block;
    margin-bottom: 14px;
}

.step-icon svg {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    color: var(--navy);
    stroke-width: 1.5;
}

/* Step arrows */
.step-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

/* Age group icons */
.age-icon {
    display: block;
    margin-top: 4px;
}

.age-icon svg {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    stroke-width: 1.5;
}

.age-card-kids .age-icon svg {
    color: var(--red);
}

.age-card-teens .age-icon svg {
    color: var(--navy);
}

/* Sample extras item icons */
.item-icon {
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.item-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    stroke-width: 1.8;
}

/* Stamp icon on letter/envelope */
.icon-stamp {
    width: 22px;
    height: 22px;
    color: var(--navy);
}

/* FAQ plus/minus icon */
.faq-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-open .faq-icon svg {
    transform: rotate(45deg);
}

/* Social link icons */
.social-link svg {
    width: 18px;
    height: 18px;
}

/* Scroll arrow icon */
.scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

/* ============ SECTION BASICS ============ */
.section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-title.dark-bg {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 600;
}

.section-subtitle.dark-bg {
    color: var(--cream);
    opacity: 0.9;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.3;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 6px 25px rgba(193, 39, 45, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 16px 38px;
}

.btn-xl {
    font-size: 1.2rem;
    padding: 18px 48px;
    border-radius: var(--radius-xl);
}

.bounce-hover {
    transition: transform 0.3s var(--bounce), box-shadow var(--transition);
}

.bounce-hover:hover {
    transform: translateY(-4px) scale(1.03);
}

.bounce-hover:active {
    transform: translateY(0) scale(0.98);
}

/* ============ WAVE DIVIDERS ============ */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-top {
    top: 0;
    bottom: auto;
}

/* ============ SCROLL ANIMATIONS ============ */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-card.animate-in:nth-child(1) { transition-delay: 0s; }
.step-arrow.animate-in:nth-child(2) { transition-delay: 0.1s; }
.step-card.animate-in:nth-child(3) { transition-delay: 0.15s; }
.step-arrow.animate-in:nth-child(4) { transition-delay: 0.2s; }
.step-card.animate-in:nth-child(5) { transition-delay: 0.25s; }

.included-card.animate-in:nth-child(1) { transition-delay: 0s; }
.included-card.animate-in:nth-child(2) { transition-delay: 0.05s; }
.included-card.animate-in:nth-child(3) { transition-delay: 0.1s; }
.included-card.animate-in:nth-child(4) { transition-delay: 0.15s; }
.included-card.animate-in:nth-child(5) { transition-delay: 0.2s; }
.included-card.animate-in:nth-child(6) { transition-delay: 0.25s; }
.included-card.animate-in:nth-child(7) { transition-delay: 0.3s; }

.sample-item.animate-in:nth-child(2) { transition-delay: 0.05s; }
.sample-item.animate-in:nth-child(3) { transition-delay: 0.1s; }
.sample-item.animate-in:nth-child(4) { transition-delay: 0.15s; }
.sample-item.animate-in:nth-child(5) { transition-delay: 0.2s; }
.sample-item.animate-in:nth-child(6) { transition-delay: 0.25s; }


/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-flag {
    display: flex;
    width: 28px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.flag-blue { background: #002395; flex: 1; }
.flag-white { background: #ffffff; flex: 1; }
.flag-red { background: #ED2939; flex: 1; }

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    transition: color var(--transition);
}

.header-scrolled .logo-text {
    color: var(--navy);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--radius-lg);
    color: var(--white);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.header-scrolled .nav-link {
    color: var(--navy);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header-scrolled .nav-link:hover {
    background: var(--cream);
}

.cta-nav {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    margin-left: 8px;
}

.cta-nav:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header-scrolled .hamburger-line {
    background: var(--navy);
}

.hamburger-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--white);
}

.hamburger-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--white);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 70%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Confetti dots */
.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-1 { width: 18px; height: 18px; background: var(--gold); top: 12%; left: 8%; animation-delay: 0s; }
.dot-2 { width: 12px; height: 12px; background: var(--red-light); top: 20%; right: 15%; animation-delay: 1s; }
.dot-3 { width: 22px; height: 22px; background: var(--cream); bottom: 25%; left: 5%; animation-delay: 2s; }
.dot-4 { width: 10px; height: 10px; background: var(--gold-light); top: 40%; left: 25%; animation-delay: 0.5s; }
.dot-5 { width: 16px; height: 16px; background: var(--red); bottom: 35%; right: 8%; animation-delay: 1.5s; }
.dot-6 { width: 14px; height: 14px; background: var(--cream); top: 15%; left: 55%; animation-delay: 3s; }
.dot-7 { width: 20px; height: 20px; background: var(--gold); bottom: 20%; left: 40%; animation-delay: 2.5s; }
.dot-8 { width: 8px; height: 8px; background: var(--red-light); top: 55%; right: 25%; animation-delay: 4s; }

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.1); }
    50% { transform: translate(-8px, -25px) scale(0.9); }
    75% { transform: translate(12px, -10px) scale(1.05); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--cream);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.highlight-gold {
    position: relative;
    display: inline;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold);
    opacity: 0.45;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    color: var(--cream);
    opacity: 0.9;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    color: var(--cream);
    opacity: 0.8;
    font-weight: 700;
    font-size: 0.9rem;
}

.trust-sep {
    color: var(--gold);
    opacity: 0.5;
    font-weight: 300;
}

/* Hero envelope */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-envelope {
    width: 340px;
    height: 260px;
    position: relative;
    animation: floatEnvelope 4s ease-in-out infinite;
}

.envelope-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: #e5dace;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.envelope-flap {
    position: absolute;
    bottom: 170px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.envelope-flap svg {
    width: 100%;
    height: 100%;
}

.envelope-letter {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    height: 230px;
    background: var(--white);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    padding: 24px 20px;
    box-shadow: 0 -4px 15px rgba(27, 42, 74, 0.08);
    animation: letterPeek 4s ease-in-out infinite;
    z-index: 2;
}

.letter-greeting {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--navy);
    display: block;
    margin-bottom: 14px;
}

.letter-line {
    display: block;
    height: 3px;
    background: var(--cream-dark);
    border-radius: 2px;
    margin-bottom: 10px;
    width: 100%;
}

.letter-line.short {
    width: 65%;
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(175deg, var(--cream-dark), #ebe0d3);
    clip-path: polygon(0 6%, 50% 55%, 100% 6%, 100% 100%, 0 100%);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 3;
}


@keyframes floatEnvelope {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes letterPeek {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    opacity: 0.6;
    animation: bounceDown 2s ease-in-out infinite;
    display: flex;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--cream-dark);
    transition: all var(--transition);
    flex: 1;
    max-width: 300px;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--card-border, var(--cream-dark));
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* .step-icon sizing is in the Lucide Icons section above */

.step-card h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceRight 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

@keyframes bounceDownArrow {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(8px); }
}


/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.whats-included {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding-top: 140px;
    padding-bottom: 140px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.included-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-bottom: 5px solid var(--card-accent, var(--gold));
    transition: all var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.included-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* .card-icon is styled in the Lucide Icons section above */

.included-card h3 {
    color: var(--cream);
    margin-bottom: 8px;
}

.included-card p {
    color: var(--cream);
    opacity: 0.75;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}


/* ============================================
   AGE GROUPS
   ============================================ */
.age-groups {
    background: var(--cream);
}

.age-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.age-card {
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition);
}

.age-card:hover {
    transform: translateY(-6px);
}

.age-card-kids {
    background: linear-gradient(165deg, #FFF5F0, #FFE8E0);
    border: 3px solid rgba(193, 39, 45, 0.15);
    box-shadow: 0 8px 30px rgba(193, 39, 45, 0.08);
}

.age-card-kids:hover {
    box-shadow: 0 12px 40px rgba(193, 39, 45, 0.15);
}

.age-card-teens {
    background: linear-gradient(165deg, #F0F3FF, #E0E8F8);
    border: 3px solid rgba(27, 42, 74, 0.12);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.08);
}

.age-card-teens:hover {
    box-shadow: 0 12px 40px rgba(27, 42, 74, 0.15);
}

.age-card-header {
    margin-bottom: 16px;
}

.age-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.age-card-kids .age-badge {
    background: var(--red);
}

.age-card-teens .age-badge {
    background: var(--navy);
}

/* .age-icon is styled in the Lucide Icons section above */

.age-card h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.age-level {
    color: var(--gray);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.age-features {
    text-align: left;
    margin-bottom: 28px;
}

.age-features li {
    padding: 6px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    position: relative;
    padding-left: 24px;
}

.age-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 800;
}

.age-card-kids .age-features li::before {
    color: var(--red);
}

.age-card-teens .age-features li::before {
    color: var(--navy);
}

.btn-kids {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(193, 39, 45, 0.25);
}

.btn-kids:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn-teens {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.25);
}

.btn-teens:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--red-dark));
    padding-top: 140px;
    padding-bottom: 140px;
}

/* Plan options (age group + shipping toggles) */
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 36px;
}

.plan-option-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.plan-option-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 90px;
    text-align: right;
    flex-shrink: 0;
}

.plan-option-buttons {
    display: flex;
    gap: 8px;
}

.plan-toggle-btn {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.plan-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.plan-toggle-btn.plan-toggle-active,
.plan-toggle-btn.toggle-active {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

/* Digital Only — full-width horizontal banner */
.pricing-card-digital {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 36px 48px;
    text-align: left;
    background: rgba(255, 255, 255, 0.07);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.pricing-card-digital:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.pricing-digital-left {
    flex-shrink: 0;
}

.pricing-card-digital .pricing-name {
    color: var(--cream);
    text-align: left;
}

.pricing-card-digital .pricing-currency,
.pricing-card-digital .pricing-period {
    color: var(--cream);
}

.pricing-card-digital .pricing-value {
    color: var(--cream);
}

.pricing-card-digital .pricing-delivery {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

.pricing-digital-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
    column-gap: 24px;
}

.pricing-card-digital .pricing-features li {
    color: var(--cream);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-digital-cta {
    flex-shrink: 0;
    text-align: center;
    min-width: 200px;
}

.pricing-card-digital .pricing-note {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card-featured {
    border: 3px solid var(--gold);
}

.pricing-card-featured .pricing-value {
    color: var(--gold-dark);
}

.subscribe-btn {
    width: 100%;
    justify-content: center;
    border: none;
}

.pricing-ribbon {
    position: absolute;
    top: 24px;
    right: -36px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    padding: 6px 48px;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

.pricing-name {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-currency {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--red);
    line-height: 1;
}

/* pricing-value color for featured card is set above in .pricing-card-featured */

.pricing-period {
    font-weight: 700;
    color: var(--gray);
    font-size: 1rem;
}

.pricing-billed {
    color: var(--gray);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pricing-delivery {
    color: var(--gray);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--cream-dark);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 14px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-shipping {
    text-align: center;
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 32px;
}


/* ============================================
   SAMPLE PREVIEW
   ============================================ */
.sample-preview {
    background: var(--white);
}

.sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.sample-letter {
    position: relative;
}

.letter-paper {
    background: linear-gradient(to bottom, var(--cream), #fffdf8);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--cream-dark);
    background-image: repeating-linear-gradient(
        transparent,
        transparent 30px,
        rgba(27, 42, 74, 0.05) 30px,
        rgba(27, 42, 74, 0.05) 31px
    );
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 44px;
    bottom: 0;
    width: 2px;
    background: rgba(193, 39, 45, 0.15);
}

.letter-paper .letter-stamp {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream-dark);
    border-radius: 4px;
}

.letter-date {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.letter-salutation {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.letter-body {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.85;
    margin-bottom: 16px;
    padding-left: 24px;
}

.letter-closing {
    font-style: italic;
    color: var(--navy);
    margin-bottom: 4px;
    margin-top: 24px;
    padding-left: 24px;
}

.letter-signature {
    font-family: var(--font-heading);
    color: var(--red);
    font-size: 1rem;
    padding-left: 24px;
}

.letter-wax-seal {
    position: absolute;
    bottom: -16px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: radial-gradient(circle at 35% 35%, var(--red-light), var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Extras sidebar */
.sample-extras {
    padding-top: 8px;
}

.extras-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--navy);
}

.sample-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.sample-item:hover {
    background: var(--cream);
    border-color: var(--cream-dark);
}

/* .item-icon is styled in the Lucide Icons section above */

.sample-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 2px;
    font-size: 1rem;
}

.sample-item p {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}

.sample-extras .btn {
    margin-top: 20px;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding-top: 140px;
    padding-bottom: 140px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    width: 50px;
    height: 5px;
    border-radius: 0 0 4px 4px;
    background: var(--card-color, var(--gold));
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--card-color, var(--gold));
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.7;
}

.testimonial-text {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    flex-shrink: 0;
}

.testimonial-author strong {
    color: var(--cream);
    display: block;
    font-size: 0.95rem;
}

.testimonial-author p {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--cream);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    border: 2px solid var(--cream-dark);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-light);
}

.faq-item.faq-open {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    text-align: left;
    line-height: 1.4;
}

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

/* .faq-icon svg styling is in the Lucide Icons section above */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.7;
}


/* ============================================
   NEWSLETTER CTA
   ============================================ */
.newsletter-cta {
    background: var(--cream-dark);
    padding: 80px 0;
    text-align: center;
}

.newsletter-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.newsletter-stamp {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    transform: rotate(-3deg);
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.25);
}

.newsletter-cta .section-title {
    margin-bottom: 12px;
}

.newsletter-cta .section-subtitle {
    margin-bottom: 32px;
}

.newsletter-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input,
.form-select {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 20px;
    border: 3px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--navy);
    outline: none;
    transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus {
    border-color: var(--gold);
}

.form-input {
    flex: 1;
    min-width: 220px;
}

.form-select {
    min-width: 140px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo .logo-text {
    color: var(--cream);
    font-size: 1.1rem;
}

.footer-tagline {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 248, 240, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 800;
    transition: all 0.3s var(--bounce);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--gold);
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--cream);
    opacity: 0.65;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity var(--transition);
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 600;
}


/* ============================================
   MEET NATHALIE / ABOUT
   ============================================ */
.meet-nathalie {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.about-photo-frame {
    position: relative;
    display: inline-block;
}

.about-photo-placeholder {
    width: 280px;
    height: 340px;
    background: linear-gradient(145deg, var(--cream-dark), var(--white));
    border-radius: var(--radius-lg);
    border: 3px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-photo-placeholder .about-photo-icon {
    width: 80px;
    height: 80px;
    color: var(--gray-light);
    stroke-width: 1.2;
}

.about-stamp {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1rem;
    transform: rotate(4deg);
    box-shadow: var(--shadow-sm);
}

.about-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-intro {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-content em {
    color: var(--navy);
    font-style: italic;
}

.about-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-xl);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.about-tag .icon-inline {
    width: 15px;
    height: 15px;
    color: var(--red);
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-envelope {
        width: 280px;
        height: 214px;
    }

    .envelope-back { height: 140px; }
    .envelope-flap { height: 99px; bottom: 140px; }
    .envelope-letter { bottom: 25px; left: 16px; right: 16px; height: 190px; }
    .envelope-front { height: 132px; }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        max-width: 600px;
    }

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

    .about-photo-placeholder {
        width: 220px;
        height: 270px;
    }

    .about-details {
        justify-content: center;
    }

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

    /* Flatten top-row so all 4 cards sit in a shared 2-col grid */
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .pricing-top-row {
        display: contents;
    }

    .pricing-card-digital {
        flex-direction: column;
        text-align: center;
        padding: 44px 36px;
    }

    .pricing-digital-features {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pricing-card-digital .pricing-name,
    .pricing-card-digital .pricing-delivery {
        text-align: center;
    }

    .pricing-digital-cta {
        width: 100%;
    }
}

/* Nav collapse — hamburger kicks in early to avoid wrapping at mid-widths */
@media (max-width: 1150px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(165deg, var(--navy-dark), var(--navy), var(--red-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link,
    .header-scrolled .nav-link {
        font-size: 1.3rem;
        padding: 4px 24px;
        color: var(--white) !important;
    }

    .nav-link:hover,
    .header-scrolled .nav-link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .cta-nav {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 140px;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .hero-scroll-hint {
        bottom: 70px;
    }

    .hero-envelope {
        width: 220px;
        height: 168px;
    }

    .envelope-back { height: 110px; }
    .envelope-flap { height: 78px; bottom: 110px; }
    .envelope-letter { bottom: 19px; left: 13px; right: 13px; height: 149px; }
    .envelope-front { height: 104px; }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .highlight-gold::after {
        bottom: -2px;
    }

    .plan-option-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .plan-option-label {
        width: auto;
        text-align: center;
    }

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

    .step-arrow {
        animation-name: bounceDownArrow;
    }

    .step-card {
        max-width: 100%;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .age-grid {
        grid-template-columns: 1fr;
    }

    /* Back to single column on small screens */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-digital {
        flex-direction: column;
        text-align: center;
        padding: 44px 36px;
    }

    .pricing-digital-features {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .pricing-card-digital .pricing-name,
    .pricing-card-digital .pricing-delivery {
        text-align: center;
    }

    .pricing-digital-cta {
        width: 100%;
    }

    .sample-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0 100px;
    }

    .wave-divider {
        height: 60px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-input,
    .form-select {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 6px;
    }

    .trust-sep {
        display: none;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .age-card {
        padding: 32px 24px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .pricing-value {
        font-size: 3.5rem;
    }

    .letter-paper {
        padding: 28px 20px;
    }

    .letter-body {
        padding-left: 12px;
        font-size: 0.9rem;
    }

    .letter-closing,
    .letter-signature {
        padding-left: 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-target {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Print */
@media print {
    .header, .hamburger, .hero-scroll-hint, .newsletter-cta, .wave-divider, .btn {
        display: none;
    }

    body { background: white; color: black; }
    .section { padding: 30px 0; }
}
