/* ============================================================
   ZEN JEN WELLNESS — Premium Styles
   Color Palette (from client's mood boards):
   Purple:   #4a2260  #6b3a7d  #9b6baf  #c9a3d9
   Teal:     #2fb8a0  #1a9a84  #45d4bc  #88e8d8
   Gold:     #d4a843  #f0c75e  #fae09a  #b8922e
   Pink:     #e8a0b8  #f4c6d7  #fce4ec  #d4749a
   Mint:     #d1f0e8  #a8e6cf  #e0f7f1
   Lavender: #dcc6e8  #e8d5f0  #f0e6f6
   ============================================================ */

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

/* ---------- ACCESSIBILITY ---------- */
/* Skip to content link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal-500, #2fb8a0);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 100000;
    transition: top 0.2s;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    outline: 3px solid #f0c75e;
    outline-offset: 2px;
}

/* Screen reader only — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus outlines for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--teal-500, #2fb8a0);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

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

    .ticker__content,
    .marquee__content {
        animation: none !important;
    }

    .hero__particles,
    .hero__gradient-orbs,
    .hero__float,
    .cta__sparkle-field,
    #trailCanvas,
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

:root {
    /* Core palette */
    --purple-900: #2d1540;
    --purple-800: #3d1b56;
    --purple-700: #4a2260;
    --purple-600: #6b3a7d;
    --purple-500: #8b5ca8;
    --purple-400: #9b6baf;
    --purple-300: #c9a3d9;
    --purple-200: #dcc6e8;
    --purple-100: #f0e6f6;
    --purple-50:  #f8f2fb;

    --teal-700: #148f7a;
    --teal-600: #1a9a84;
    --teal-500: #2fb8a0;
    --teal-400: #45d4bc;
    --teal-300: #88e8d8;
    --teal-200: #b5f0e6;
    --teal-100: #d1f0e8;

    --gold-600: #b8922e;
    --gold-500: #d4a843;
    --gold-400: #f0c75e;
    --gold-300: #fae09a;
    --gold-200: #fdf0cc;

    --pink-600: #d4749a;
    --pink-500: #e8a0b8;
    --pink-400: #f4c6d7;
    --pink-300: #fce4ec;
    --pink-200: #fef0f5;

    --mint-300: #a8e6cf;
    --mint-200: #d1f0e8;
    --mint-100: #e0f7f1;

    /* Semantic tokens */
    --bg-primary: #fefbf6;
    --bg-secondary: #f9f4ff;
    --text-900: #1a0e24;
    --text-700: #3a2045;
    --text-500: #6b5a74;
    --text-400: #6e5e7a;
    --text-300: #8a7a94;
    --white: #ffffff;

    /* Spacing scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 100px;
    --space-4xl: 140px;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration: 0.5s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 34, 96, 0.06);
    --shadow-md: 0 8px 30px rgba(74, 34, 96, 0.08);
    --shadow-lg: 0 20px 60px rgba(74, 34, 96, 0.12);
    --shadow-xl: 0 30px 80px rgba(74, 34, 96, 0.16);
    --shadow-glow-teal: 0 0 40px rgba(47, 184, 160, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(107, 58, 125, 0.25);
    --shadow-glow-gold: 0 0 40px rgba(212, 168, 67, 0.3);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-700);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    cursor: none;
}

/* Restore default cursor on touch devices */
@media (hover: none) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; }
}

/* Extra mobile safety — hide custom cursor on small screens */
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; }
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; }
}

::selection {
    background: var(--purple-300);
    color: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.15;
    color: var(--text-900);
}

a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-ring {
    display: none;
}

.cursor-dot.active {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.15s var(--ease-spring), background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-ring.active {
    display: block;
    width: 36px;
    height: 36px;
    border: 2px solid var(--purple-400);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), border-color 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.cursor-dot.hovering {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--gold-400);
}

.cursor-ring.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--gold-400);
    opacity: 0.3;
}

/* ---------- MOUSE TRAIL CANVAS ---------- */
#trailCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-lotus {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    position: relative;
    animation: lotusRotate 3s ease-in-out infinite;
}

.lotus-petal {
    position: absolute;
    width: 20px; height: 36px;
    background: var(--teal-400);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    left: 50%; top: 50%;
    transform-origin: center bottom;
    opacity: 0.8;
}

.lotus-petal.p1 { transform: translate(-50%, -100%) rotate(0deg); background: var(--pink-500); }
.lotus-petal.p2 { transform: translate(-50%, -100%) rotate(72deg); background: var(--teal-400); }
.lotus-petal.p3 { transform: translate(-50%, -100%) rotate(144deg); background: var(--gold-400); }
.lotus-petal.p4 { transform: translate(-50%, -100%) rotate(216deg); background: var(--purple-400); }
.lotus-petal.p5 { transform: translate(-50%, -100%) rotate(288deg); background: var(--mint-300); }

.lotus-center {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--gold-400);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--gold-400);
}

@keyframes lotusRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.preloader-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-400), var(--gold-400), var(--pink-500));
    border-radius: 3px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(254, 251, 246, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 30px rgba(74, 34, 96, 0.06);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1001;
}

.nav__logo img {
    width: 78px; height: 78px;
    border-radius: 50%;
    transition: transform 0.6s var(--ease-spring);
    object-fit: contain;
}

.nav__logo:hover img { transform: rotate(360deg) scale(1.05); }

.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    transition: color 0.4s var(--ease-out);
}
.nav__logo-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.4s var(--ease-out);
}

.nav.scrolled .nav__logo-name { color: var(--purple-700); }
.nav.scrolled .nav__logo-tag { color: var(--teal-600); }

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-500);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    overflow: hidden;
}

.nav__links {
    display: flex;
    gap: 32px;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: 8px 28px;
    border: 1px solid rgba(255,255,255,0.15);
}

.nav.scrolled .nav__links {
    background: rgba(74, 34, 96, 0.06);
    backdrop-filter: none;
    border-color: rgba(74, 34, 96, 0.08);
}

.nav .nav__link { color: rgba(255,255,255,0.85); letter-spacing: 1.5px; font-size: 0.82rem; font-weight: 600; }
.nav.scrolled .nav__link { color: var(--text-500); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--teal-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
    border-radius: 2px;
}

.nav__link:hover { color: var(--teal-500); }
.nav.scrolled .nav__link:hover { color: var(--teal-600); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none; border: none;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    width: 28px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled .burger-line { background: var(--purple-700); }

.nav__burger.active .burger-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__burger.active .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.active .burger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu__bg {
    position: absolute;
    inset: 0;
    background: rgba(45, 21, 64, 0.92);
    backdrop-filter: blur(20px);
}

.mobile-menu__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--ease-out), color 0.3s;
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu__link:hover { color: var(--teal-400); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.btn__text { position: relative; z-index: 2; }
.btn__icon { position: relative; z-index: 2; display: flex; }

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before { transform: translateX(100%); }

.btn--primary {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(47, 184, 160, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 8px 35px rgba(47, 184, 160, 0.5);
    transform: translateY(-2px);
}

.btn--glass {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--teal-600);
    border: 2px solid var(--teal-400);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn--outline:hover {
    background: var(--teal-500);
    color: var(--white);
    border-color: var(--teal-500);
}

.btn--small { padding: 10px 20px; font-size: 0.82rem; }

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

.btn--glow {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(47, 184, 160, 0.3); }
    50% { box-shadow: 0 4px 50px rgba(47, 184, 160, 0.55), 0 0 80px rgba(47, 184, 160, 0.15); }
}

/* ---------- SECTION LABELS & HEADINGS ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.section-label--center { justify-content: center; display: flex; }

.section-label__icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: var(--teal-500);
}

.section-heading {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.5px;
}

.section-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-subheading {
    text-align: center;
    color: var(--text-400);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto var(--space-3xl);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--purple-900) 0%, var(--purple-700) 25%, var(--purple-600) 45%, #7a4c8f 65%, var(--pink-600) 85%, var(--pink-500) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Gradient orbs */
.hero__gradient-orbs { position: absolute; inset: 0; overflow: hidden; }

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: orbDrift 25s ease-in-out infinite;
}

.orb--teal {
    width: 600px; height: 600px;
    background: var(--teal-400);
    top: -15%; right: -10%;
}

.orb--gold {
    width: 450px; height: 450px;
    background: var(--gold-400);
    bottom: -20%; left: -8%;
    animation-delay: -5s;
}

.orb--pink {
    width: 350px; height: 350px;
    background: var(--pink-500);
    top: 40%; left: 40%;
    animation-delay: -10s;
}

.orb--purple {
    width: 500px; height: 500px;
    background: var(--purple-400);
    top: 15%; left: 5%;
    animation-delay: -15s;
    opacity: 0.2;
}

.orb--mint {
    width: 300px; height: 300px;
    background: var(--mint-300);
    bottom: 10%; right: 20%;
    animation-delay: -8s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(50px, -40px) scale(1.08); }
    40% { transform: translate(-30px, 50px) scale(0.95); }
    60% { transform: translate(40px, 30px) scale(1.05); }
    80% { transform: translate(-20px, -30px) scale(0.97); }
}

.hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 var(--space-lg);
    max-width: 850px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--space-xl);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero__eyebrow-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.3);
}

.hero__title {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}

.hero__title-line { display: block; }

.hero__title-accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 30%, var(--pink-400) 70%, var(--teal-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-wheel {
    width: 4px; height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* Floating decorative elements */
.hero__float {
    position: absolute;
    color: rgba(255,255,255,0.15);
    font-size: 2rem;
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 2;
}

.hero__float--3 { bottom: 20%; left: 15%; animation-delay: -4s; color: rgba(69,212,188,0.25); }
.hero__float--4 { bottom: 30%; right: 8%; font-size: 2.5rem; animation-delay: -6s; color: rgba(201,163,217,0.25); }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
    background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
}

.ticker::before { left: 0; background: linear-gradient(90deg, var(--purple-700), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--purple-800), transparent); }

.ticker__track { display: flex; width: max-content; }

.ticker__content {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: tickerScroll 75s linear infinite;
    white-space: nowrap;
}

.ticker__item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

.ticker__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--gold-400);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    background: var(--bg-primary);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__image-col { position: relative; }

.about__image-frame {
    position: relative;
    width: 380px;
    height: 460px;
    margin: 0 auto;
}

.about__image-placeholder {
    width: 100%; height: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--purple-100), var(--pink-300), var(--mint-200));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-frame[data-tilt-photo] {
    transition: transform 0.4s var(--ease-out);
    transform-style: preserve-3d;
}

.about__author-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: transform 0.5s var(--ease-out);
}

.about__image-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 3;
}

.about__image-frame[data-tilt-photo]:hover .about__image-shine {
    opacity: 1;
}

.about__image-decoration {
    position: absolute;
    width: 100%; height: 100%;
    top: 16px; left: 16px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--teal-400);
    opacity: 0.3;
    z-index: 1;
}

/* ring removed per client request */

.about__floating-badge {
    position: absolute;
    bottom: 30px; right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeFloat 4s ease-in-out infinite;
}

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

.about__badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about__badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-500);
    line-height: 1.3;
}

.about__lead {
    font-size: 1.2rem;
    color: var(--text-700);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__text {
    color: var(--text-400);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

.about__stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(74, 34, 96, 0.08);
}

.about__stat { text-align: center; }

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal-500), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about__stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal-500), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-400);
    margin-top: 4px;
    font-weight: 500;
}

.about__stat-divider {
    width: 1px; height: 40px;
    background: rgba(74, 34, 96, 0.1);
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--purple-50) 100%);
    overflow: hidden;
}

.pillars__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(47, 184, 160, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(155, 107, 175, 0.04) 0%, transparent 60%);
}

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

.pillar-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-xl);
    padding: 48px 36px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    background: rgba(255,255,255,0.9);
}

.pillar-card__glow {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.5s;
}

.pillar-card:hover .pillar-card__glow { opacity: 0.3; }

.pillar-card__glow--teal { background: var(--teal-400); }
.pillar-card__glow--purple { background: var(--purple-400); }
.pillar-card__glow--gold { background: var(--gold-400); }

.pillar-card__number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    position: absolute;
    top: -10px; right: 20px;
    color: rgba(74, 34, 96, 0.04);
    line-height: 1;
    transition: color 0.5s;
}

.pillar-card:hover .pillar-card__number { color: rgba(47, 184, 160, 0.08); }

.pillar-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    color: var(--teal-500);
    transition: transform 0.5s var(--ease-spring), color 0.5s;
}

.pillar-card:hover .pillar-card__icon { transform: scale(1.15); }

.pillar-card:nth-child(1):hover .pillar-card__icon { color: var(--teal-500); }
.pillar-card:nth-child(2):hover .pillar-card__icon { color: var(--purple-500); }
.pillar-card:nth-child(3):hover .pillar-card__icon { color: var(--gold-500); }

.pillar-card__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-900);
}

.pillar-card__desc {
    color: var(--text-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pillar-card__line {
    width: 40px; height: 3px;
    border-radius: 3px;
    margin: 24px auto 0;
    background: linear-gradient(90deg, var(--teal-400), var(--gold-400));
    transition: width 0.4s var(--ease-out);
}

.pillar-card:hover .pillar-card__line { width: 80px; }

/* ============================================================
   BOOK
   ============================================================ */
.book {
    position: relative;
    overflow: hidden;
}

.book__bg {
    position: absolute;
    inset: 0;
}

.book__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--mint-100) 0%, var(--pink-200) 40%, var(--purple-50) 100%);
}

.book__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* 3D Book */
.book__visual { display: flex; justify-content: center; }

.book__3d-wrapper { perspective: 1200px; }

.book__3d {
    width: 280px; height: 448px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(5deg);
    transition: transform 0.8s var(--ease-out);
}

.book__3d-wrapper:hover .book__3d {
    transform: rotateY(-30deg) rotateX(8deg);
}

.book__front {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: var(--radius-md) var(--radius-sm) var(--radius-sm) var(--radius-md);
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: -15px 15px 40px rgba(74, 34, 96, 0.3);
}

.book__cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.book__spine {
    position: absolute;
    width: 30px; height: 100%;
    left: -15px; top: 0;
    background: linear-gradient(180deg, var(--purple-800), var(--purple-700));
    transform: rotateY(90deg);
    transform-origin: right;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.book__pages {
    position: absolute;
    width: 96%; height: 96%;
    left: -12px; top: 2%;
    background: linear-gradient(90deg, #f5f0e8, #ede6d8);
    border-radius: 2px var(--radius-sm) var(--radius-sm) 2px;
    transform: translateZ(-4px);
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
}

.book__shadow {
    width: 200px; height: 20px;
    background: radial-gradient(ellipse, rgba(74, 34, 96, 0.2), transparent 70%);
    margin: 30px auto 0;
    border-radius: 50%;
}

/* Book info */
.book__desc {
    color: var(--text-400);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

.book__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: var(--space-xl);
}

.book__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 184, 160, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-700);
}

.book__feature-icon { display: flex; align-items: center; color: var(--teal-500); }

.book__also {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(74, 34, 96, 0.08);
}

.book__also-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
    padding: 4px 12px;
    background: rgba(47, 184, 160, 0.08);
    border-radius: var(--radius-full);
}

.book__also-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book__also-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.book__also-info p {
    font-size: 0.9rem;
    color: var(--text-400);
}

/* ============================================================
   TESTIMONIAL MARQUEE
   ============================================================ */
.marquee {
    padding: 48px 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
}

.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-secondary), transparent); }

.marquee__track { display: flex; width: max-content; }

.marquee__content {
    display: flex;
    gap: 28px;
    animation: marqueeMove 45s linear infinite;
}

.marquee__card {
    min-width: 360px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid rgba(74, 34, 96, 0.06);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.marquee__stars {
    color: var(--gold-400);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.marquee__card p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-700);
    line-height: 1.6;
    margin-bottom: 12px;
}

.marquee__author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-600);
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--mint-100) 50%, var(--bg-secondary) 100%);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.service-card:hover {
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-xl);
}

.service-card__accent {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card__accent { transform: scaleX(1); }

.service-card__accent--1 { background: linear-gradient(90deg, var(--teal-500), var(--teal-300)); }
.service-card__accent--2 { background: linear-gradient(90deg, var(--purple-500), var(--pink-500)); }
.service-card__accent--3 { background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); }
.service-card__accent--4 { background: linear-gradient(90deg, var(--pink-500), var(--purple-400)); }

.service-card--featured {
    background: linear-gradient(135deg, rgba(107, 58, 125, 0.04), rgba(47, 184, 160, 0.04));
    border-color: rgba(47, 184, 160, 0.15);
}

.service-card__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.service-card__icon {
    width: 48px; height: 48px;
    color: var(--teal-500);
    margin-bottom: 20px;
    transition: transform 0.5s var(--ease-spring);
}

.service-card:hover .service-card__icon { transform: scale(1.15) rotate(-5deg); }

.service-card__icon--material .material-symbols-rounded {
    font-size: 44px;
    color: var(--teal-500);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-400);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal-600);
    transition: gap 0.3s, color 0.3s;
}

.service-card__link:hover { gap: 14px; color: var(--teal-700); }

/* ============================================================
   CTA / NEWSLETTER
   ============================================================ */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--purple-800) 0%, var(--purple-700) 40%, var(--purple-600) 100%);
    padding: var(--space-3xl) 0;
}

.cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta__orb--1 { width: 400px; height: 400px; background: var(--teal-400); opacity: 0.15; top: -100px; right: -100px; }
.cta__orb--2 { width: 300px; height: 300px; background: var(--gold-400); opacity: 0.1; bottom: -100px; left: -100px; }
.cta__orb--3 { width: 250px; height: 250px; background: var(--pink-500); opacity: 0.1; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta__sparkle-field {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.cta__sparkle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-400);
    animation: ctaSparkle 4s ease-in-out infinite;
}

.cta__sparkle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.cta__sparkle:nth-child(2) { top: 5%; right: 10%; animation-delay: 0.7s; }
.cta__sparkle:nth-child(3) { bottom: 15%; left: 10%; animation-delay: 1.4s; }
.cta__sparkle:nth-child(4) { bottom: 5%; right: 5%; animation-delay: 2.1s; }
.cta__sparkle:nth-child(5) { top: 50%; left: 0%; animation-delay: 2.8s; }
.cta__sparkle:nth-child(6) { top: 30%; right: 0%; animation-delay: 3.5s; }

@keyframes ctaSparkle {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(2.5); opacity: 1; }
}

.cta__icon {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    animation: ctaIconFloat 3s ease-in-out infinite;
    color: var(--gold-300);
}

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

.cta__title {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta__desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-xl);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cta__desc strong { color: var(--gold-300); }

.cta__form { margin-bottom: 16px; }

.cta__input-group {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}

.cta__input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, background 0.3s;
}

.cta__input-group input::placeholder { color: rgba(255,255,255,0.4); }
.cta__input-group input:focus { border-color: var(--teal-400); background: rgba(255,255,255,0.12); }

.cta__note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

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

.faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.faq__lead {
    color: var(--text-400);
    line-height: 1.8;
}

.faq__list-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid rgba(74, 34, 96, 0.06);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item:hover {
    border-color: rgba(47, 184, 160, 0.15);
    box-shadow: var(--shadow-sm);
}

.faq__item.active {
    border-color: var(--teal-400);
    box-shadow: 0 4px 20px rgba(47, 184, 160, 0.1);
}

.faq__trigger {
    width: 100%;
    background: none; border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-700);
    text-align: left;
    transition: color 0.3s;
}

.faq__trigger:hover { color: var(--teal-600); }

.faq__q-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(47, 184, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.faq__item.active .faq__q-icon {
    background: var(--teal-500);
    transform: rotate(45deg);
}

.faq__plus {
    position: relative;
    width: 12px; height: 12px;
}

.faq__plus::before,
.faq__plus::after {
    content: '';
    position: absolute;
    background: var(--teal-500);
    border-radius: 2px;
    transition: background 0.3s;
}

.faq__plus::before { width: 12px; height: 2px; top: 5px; left: 0; }
.faq__plus::after { width: 2px; height: 12px; top: 0; left: 5px; }

.faq__item.active .faq__plus::before,
.faq__item.active .faq__plus::after { background: var(--white); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq__item.active .faq__answer { max-height: 300px; }

.faq__answer p {
    padding: 0 24px 22px;
    color: var(--text-400);
    line-height: 1.85;
    font-size: 0.95rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--purple-50) 100%);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.contact__lead {
    color: var(--text-400);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

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

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px; height: 48px;
    background: rgba(47, 184, 160, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-500);
}

.contact__detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-300);
}

.contact__detail-value {
    font-weight: 500;
    color: var(--text-700);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74, 34, 96, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-500);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-form__group input,
.contact-form__group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(74, 34, 96, 0.06);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-700);
    background: var(--bg-primary);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    resize: vertical;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 4px rgba(47, 184, 160, 0.08);
    background: var(--white);
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: var(--text-300);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, var(--purple-900), var(--purple-800));
    padding: 48px 0 28px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

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

.footer__logo {
    width: 74px; height: 74px;
    border-radius: 50%;
    object-fit: contain;
}

.footer__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--teal-400); }

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    text-align: center;
}

.footer__bottom span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(47, 184, 160, 0.3);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 8px 30px rgba(47, 184, 160, 0.5);
    transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .about__image-frame { width: 300px; height: 360px; }
    .book__layout { grid-template-columns: 1fr; text-align: center; }
    .book__features { justify-content: center; }
    .book__also-info { flex-direction: column; text-align: center; }
    .faq__layout { grid-template-columns: 1fr; }
    .contact__layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }

    .section { padding: var(--space-3xl) 0; }

    .hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }

    .pillars__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .services__grid { grid-template-columns: 1fr; }

    .hero__actions { flex-direction: column; align-items: center; }

    .book__3d { width: 220px; height: 352px; }

    .contact-form__row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 24px; }

    .about__floating-badge { display: none; }

    .cta__input-group {
        flex-direction: column;
    }

    .cta__input-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero__eyebrow-line { display: none; }
    .footer__links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ============================================================
   CLIENT REVISION STYLES
   ============================================================ */

/* About infinity icon */
.about__infinity {
    margin-bottom: var(--space-md);
    color: var(--gold-500);
}

/* Colorful about text */
.about__text--colorful {
    font-size: 1.1rem;
    color: var(--text-700);
    line-height: 1.9;
}

/* Thrive text accent */
.thrive-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3em;
    font-style: italic;
    background: linear-gradient(135deg, var(--teal-500), var(--gold-500), var(--pink-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: thriveShimmer 3s ease-in-out infinite;
    position: relative;
}

@keyframes thriveShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Thrive heading in pillars section */
.thrive-heading {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal-500), var(--gold-500), var(--pink-600), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: thriveShimmer 3s ease-in-out infinite;
}

/* Book cover centered (flat, full image) */
.book__visual--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book__cover-centered {
    width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 34, 96, 0.25), 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.book__cover-centered:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(74, 34, 96, 0.3), 0 12px 35px rgba(0,0,0,0.12);
}

.book__cover-full {
    width: 100%;
    height: auto;
    display: block;
}

/* Second book - larger text & baby illustration */
.book__also-info--large {
    display: flex;
    align-items: center;
    gap: 24px;
}

.book__also-baby {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.baby-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    animation: babyBounce 3s ease-in-out infinite;
}

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

.book__also-title {
    font-size: 1.3rem !important;
    margin-bottom: 8px;
}

.book__also-desc {
    font-size: 1rem !important;
    color: var(--text-400);
    margin-bottom: 14px;
    line-height: 1.7;
}

/* Coming soon */
.book__coming-soon {
    margin-top: var(--space-lg);
    padding: 16px 20px;
    background: rgba(47, 184, 160, 0.06);
    border-left: 3px solid var(--teal-400);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.book__coming-soon p {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-500);
    line-height: 1.7;
}

/* Services 3-column layout */
.services__grid--three {
    grid-template-columns: repeat(3, 1fr);
}

/* Services 2-column layout */
.services__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services__grid--three { grid-template-columns: 1fr; }
    .services__grid--two { grid-template-columns: 1fr; }
    .book__cover-centered { width: 240px; }
    .book__also-info--large { flex-direction: column; text-align: center; }
}

/* ============================================================
   ADDITIONAL REVISIONS
   ============================================================ */

/* Bold/colorful first sentence in Meet Jennifer */
.about__lead-sentence {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--purple-600);
    display: block;
    margin-bottom: 8px;
}

/* Darken pillars section background for contrast with book section */
.pillars {
    background: linear-gradient(180deg, #e8daf2 0%, #d8c4e8 40%, #d0bce0 100%);
}

/* Coming soon - bolder, different font, heart icon */
.coming-soon-heart {
    color: var(--pink-600);
    vertical-align: middle;
    margin-right: 4px;
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.coming-soon-label {
    font-family: var(--font-heading);
    font-size: 1.15em;
    font-weight: 700;
    color: var(--teal-600);
    letter-spacing: 0.5px;
}

.book__coming-soon p {
    font-style: normal;
    color: var(--text-700);
    font-size: 0.92rem;
}

/* Marquee card - italicize book titles */
.marquee__card p em {
    font-style: italic;
    color: var(--teal-700);
}

/* Fix mobile nav overlap - give eyebrow its own row, shrink nav items */
@media (max-width: 768px) {
    .hero__eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
        gap: 10px;
        margin-bottom: var(--space-lg);
    }

    .nav__inner {
        padding: 0 16px;
    }

    .nav__logo img {
        width: 58px;
        height: 58px;
    }

    .nav__logo-name {
        font-size: 1rem;
    }

    .nav__logo-tag {
        font-size: 0.6rem;
    }

    .nav {
        padding: 12px 0;
    }

    .hero__content {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .nav__logo img {
        width: 52px;
        height: 52px;
    }

    .nav__logo-name {
        font-size: 0.9rem;
    }

    .hero__content {
        padding-top: 70px;
    }
}
