/* ============================================
   GEstética — Branding Design System 2026
   ============================================
   Tipografías:
   - Logo: Fredoka (alternativa temporal a Lightshift)
   - Títols: Sulphur Point
   - Cos de text: Quicksand

   Gamma cromàtica:
   - Taronja: #E84D23
   - Rosa: #F4BDC9
   - Blau fort: #002DDE
   - Blau cel: #C0D7FF
   - Groc: #FFCB4A
   ============================================ */

/* ── CSS Variables Override ── */
:root {
    /* Primary palette */
    --primary: #E84D23;
    --primary-rgb: 232, 77, 35;
    --primary-light: #FDEAE5;
    --primary-lighter: #FEF5F2;
    --primary-glow: rgba(232, 77, 35, 0.08);

    /* Secondary - Strong Blue */
    --secondary: #002DDE;
    --secondary-rgb: 0, 45, 222;
    --secondary-light: #C0D7FF;
    --secondary-lighter: #E8EEFF;

    /* Accent Pink */
    --pink: #F4BDC9;
    --pink-light: #FBE8ED;
    --pink-lighter: #FDF4F6;

    /* Accent Yellow */
    --yellow: #FFCB4A;
    --yellow-light: #FFF5D6;
    --yellow-lighter: #FFFAEB;

    /* Legacy mapping (for backward compat with existing pages) */
    --rose: #E84D23;
    --rose-light: #FDEAE5;
    --rose-lighter: #FEF5F2;
    --rose-50: #FEF5F2;
    --rose-glow: rgba(232, 77, 35, 0.08);
    --lavender: #002DDE;
    --lavender-light: #C0D7FF;
    --gold: #FFCB4A;
    --gold-light: #FFF5D6;

    /* Backgrounds - cool tint */
    --bg: #FAFBFE;
    --bg-2: #F2F5FA;
    --bg-3: #E8ECF4;
    --surface: #ffffff;

    /* Text */
    --text: #1a1a2e;
    --text-muted: #5f6880;

    /* Borders */
    --border: #DDE3F0;
    --border-light: #EDF0F7;

    /* Functional */
    --success: #16a34a;
    --danger: #dc2626;

    /* Typography */
    --font-logo: 'Fredoka', 'Quicksand', system-ui, sans-serif;
    --font-heading: 'Sulphur Point', 'Quicksand', system-ui, sans-serif;
    --font: 'Quicksand', system-ui, sans-serif;

    /* Layout */
    --radius: 16px;
    --max-w: 1080px;
}

/* ── Scroll Reveal Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 77, 35, 0.3); }
    50% { box-shadow: 0 0 20px 8px rgba(232, 77, 35, 0.08); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gentle-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

@keyframes gentle-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 8px); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Scroll Reveal Classes ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.55s; }

/* ── Hero Gradient Orbs ── */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-blob-1 {
    width: 220px; height: 220px;
    background: rgba(255, 203, 74, 0.2);
    filter: blur(40px);
    top: 5%; right: 8%;
    animation: gentle-drift-1 20s ease-in-out infinite;
}

.hero-blob-2 {
    width: 200px; height: 200px;
    background: rgba(244, 189, 201, 0.2);
    filter: blur(40px);
    bottom: 12%; left: 5%;
    animation: gentle-drift-2 24s ease-in-out infinite;
}

/* ── Brand Text Color ── */
.gradient-text {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary);
}

.gradient-text-alt {
    color: var(--secondary) !important;
    -webkit-text-fill-color: var(--secondary);
}

/* ── Enhanced Button Effects ── */
.btn-main {
    position: relative;
    overflow: hidden;
    background: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.5s;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.35) !important;
}

.btn-main:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25) !important;
}

/* Ghost button enhanced */
.btn-ghost {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-ghost:hover {
    border-color: var(--primary) !important;
    color: #fff !important;
    background: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

/* ── Card Hover Effects ── */
.card-hover {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.card-hover:hover {
    transform: perspective(800px) rotateX(-2deg) rotateY(2deg) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(var(--primary-rgb), 0.08);
}

/* ── Magnetic button effect ── */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Typography overrides ── */
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

h1, h2, h3, .section-title, .hero-title, .price-amount,
.visually-display, .visually-h2, .visually-h3 {
    font-family: var(--font-heading) !important;
}

/* ── Scroll Progress Bar — Rainbow ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ── Section Dividers ── */
.section-wave {
    position: relative;
    overflow: hidden;
}

.section-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Floating decoration elements ── */
.deco-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
}

.deco-dot-primary { background: var(--primary); }
.deco-dot-secondary { background: var(--secondary); }
.deco-dot-pink { background: var(--pink); }
.deco-dot-yellow { background: var(--yellow); }

/* ── Parallax layers ── */
.parallax-layer {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ── Tilt card effect ── */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(800px) rotateY(2deg) rotateX(2deg);
}

/* ── Glow effect on feature icons ── */
.feature-icon {
    transition: all 0.3s ease !important;
}

.flip-card:hover .feature-icon,
.card-hover:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── Feature icon colors — brand palette only ── */
.fi-1 { background: var(--primary-light) !important; color: var(--primary) !important; }
.fi-2 { background: var(--secondary-lighter) !important; color: var(--secondary) !important; }
.fi-3 { background: var(--yellow-light) !important; color: #9a7400 !important; }
.fi-4 { background: var(--pink-light) !important; color: #b04a6a !important; }
.fi-5 { background: var(--secondary-light) !important; color: var(--secondary) !important; }
.fi-6 { background: var(--primary-lighter) !important; color: var(--primary) !important; }

/* ── Enhanced flip card back ── */
.flip-back {
    background: var(--primary) !important;
}

/* Force white text on flip-back regardless of section color overrides */
.flip-back,
.flip-back h4,
.flip-back p,
.section-pink .flip-back p,
.section-lightblue .flip-back p,
.section-blue .flip-back p,
.section-yellow .flip-back p,
.section-pink .flip-back h4,
.section-lightblue .flip-back h4,
.section-blue .flip-back h4,
.section-yellow .flip-back h4 {
    color: #fff !important;
}

/* Flip card: ensure back stays within card boundaries */
.flip-card-inner {
    min-height: 100%;
}

.flip-back {
    overflow: hidden !important;
}

/* Tighter flip-back in feature cards (shorter than step cards) */
.features-grid .flip-back {
    padding: 1.25rem 1rem !important;
}

.features-grid .flip-back p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.6rem !important;
}

.features-grid .flip-back .flip-cta {
    padding: 0.4rem 1rem !important;
    font-size: 0.82rem !important;
}

.flip-back .flip-cta,
.section-pink .flip-back .flip-cta,
.section-lightblue .flip-back .flip-cta,
.section-blue .flip-back .flip-cta,
.section-yellow .flip-back .flip-cta {
    color: #fff !important;
}

/* ── Step number badge ── */
.step-num {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
}

/* ── Nav enhancement ── */
nav {
    background: #F4F0E7 !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent !important;
}

.nav-cta {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    border-radius: 999px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
    background: #001ab0 !important;
    border-color: #001ab0 !important;
}

.nav-login {
    border-radius: 999px !important;
    background: transparent !important;
    border: 2px solid #1a1a2e !important;
    color: #1a1a2e !important;
}

.nav-login:hover {
    border-color: var(--secondary) !important;
    background: var(--secondary) !important;
    color: #fff !important;
}

/* ── Auth section ── */
.auth-tab.active {
    background: var(--primary) !important;
}

.auth-field input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

.auth-btn {
    background: var(--primary) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}

/* ── Section label (eyebrow text) ── */
.section-label {
    color: var(--primary) !important;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* ── Audience tags ── */
.audience-tag:hover {
    color: #fff !important;
    border-color: var(--primary) !important;
    background: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

/* ── Price card featured ── */
.price-card.featured {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.15), 0 0 0 2px rgba(var(--primary-rgb), 0.08) !important;
    transform: scale(1.04);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 36px rgba(var(--primary-rgb), 0.2), 0 0 0 2px rgba(var(--primary-rgb), 0.12) !important;
}

.price-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Footer ── */
.footer-col a:hover {
    color: var(--primary) !important;
}

.footer-credit a:hover {
    color: var(--primary) !important;
}

.footer-legal a:hover {
    color: var(--primary) !important;
}

/* ── Spinner ── */
.spinner {
    border-top-color: var(--primary) !important;
}

/* ── Hero badge enhanced ── */
.hero-badge {
    transition: all 0.3s ease;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge .dot {
    background: var(--primary) !important;
    animation: pulse-glow 2s ease-in-out infinite;
    width: 8px !important;
    height: 8px !important;
}

/* ── Mockup card float animation ── */
.mockup-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateX(-3deg) rotateY(2deg) translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* ── Custom selection color ── */
::selection {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--text);
}

/* ── Smooth underline links ── */
.nav-links a {
    position: relative;
}

.nav-links a:not(.nav-login):not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.nav-login):not(.nav-cta):hover::after {
    width: 100%;
}

/* ── Header login focus style ── */
.header-login-dropdown .auth-field input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.08);
}

/* ============================================
   Colorful Section Backgrounds
   ============================================
   Contrast ratios (WCAG AA):
   - #002DDE + white text: ~8.5:1 ✓
   - #E84D23 + white text: ~3.6:1 (large text only, use bold)
   - #FFCB4A + #1a1a2e: ~10:1 ✓
   - #F4BDC9 + #1a1a2e: ~7:1 ✓
   - #C0D7FF + #1a1a2e: ~8:1 ✓
   - #0d0d24 + rgba(255,255,255,0.8): ~12:1 ✓
   ============================================ */

/* ── Blue section (#002DDE) ── */
.section-blue {
    background: var(--secondary) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.1) !important;
}
.section-blue .section-label { color: var(--yellow) !important; }
.section-blue .section-label::after { background: var(--yellow) !important; }
.section-blue .section-title,
.section-blue h2,
.section-blue h3 { color: #fff !important; }
.section-blue .section-sub,
.section-blue p,
.section-blue .feature-card p,
.section-blue .step-card p { color: rgba(255,255,255,0.85) !important; }
.section-blue .feature-card,
.section-blue .step-card {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(8px);
}
.section-blue .feature-card h3,
.section-blue .step-card h3 { color: #fff !important; }
.section-blue .feature-icon {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}
.section-blue .step-num {
    background: rgba(255,203,74,0.2) !important;
    color: var(--yellow) !important;
}
.section-blue .flip-hint { color: rgba(255,255,255,0.5) !important; }
.section-blue .flip-card:hover .feature-card,
.section-blue .flip-card:hover .step-card {
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}
.section-blue .audience-tag {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
}
.section-blue .audience-tag:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: var(--yellow) !important;
    color: var(--yellow) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

/* ── Orange section (#E84D23) ── */
.section-orange {
    background: var(--primary) !important;
    color: #fff !important;
}
.section-orange h2,
.section-orange .section-title { color: #fff !important; }
.section-orange p,
.section-orange .section-sub { color: rgba(255,255,255,0.9) !important; }
.section-orange .btn-main {
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}
.section-orange .btn-main:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.25) !important;
}
.section-orange .btn-ghost {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.5) !important;
}
.section-orange .btn-ghost:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* ── Yellow section — vibrant gradient ── */
.section-yellow {
    background: #FFCB4A !important;
    color: var(--text) !important;
}
.section-yellow .section-label { color: #7a5800 !important; }
.section-yellow .section-label::after { background: #7a5800 !important; }
.section-yellow .section-title,
.section-yellow h2,
.section-yellow h3 { color: var(--text) !important; }
.section-yellow .section-sub,
.section-yellow p { color: #3d2c00 !important; }
.section-yellow .audience-tag {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: var(--text) !important;
}
.section-yellow .audience-tag:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3) !important;
}
.section-yellow .step-card {
    background: rgba(255,255,255,0.6) !important;
    border-color: rgba(255,255,255,0.7) !important;
}
.section-yellow .step-card h3 { color: var(--text) !important; }
.section-yellow .step-card p { color: #3d2c00 !important; }
.section-yellow .step-num {
    background: rgba(232,77,35,0.12) !important;
    color: var(--primary) !important;
}
.section-yellow .flip-card:hover .step-card {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(232,77,35,0.12) !important;
}
.section-yellow .flip-hint { color: #7a5800 !important; }

/* ── Pink section — uses brand pink #F4BDC9 ── */
.section-pink {
    background: #F4BDC9 !important;
    color: var(--text) !important;
    border-color: rgba(0,0,0,0.06) !important;
}
.section-pink .section-label { color: var(--primary) !important; }
.section-pink .section-label::after { background: var(--primary) !important; }
.section-pink .section-title,
.section-pink h2,
.section-pink h3 { color: var(--secondary) !important; }
.section-pink .section-sub,
.section-pink p { color: #3d2233 !important; }
.section-pink .feature-card,
.section-pink .step-card {
    background: rgba(255,255,255,0.55) !important;
    border-color: rgba(255,255,255,0.7) !important;
    backdrop-filter: blur(8px);
}
.section-pink .feature-card h3,
.section-pink .step-card h3 { color: var(--text) !important; }
.section-pink .feature-card p,
.section-pink .step-card p { color: #3d2233 !important; }
.section-pink .feature-icon {
    background: rgba(255,255,255,0.6) !important;
    color: var(--primary) !important;
}
.section-pink .flip-card:hover .feature-card,
.section-pink .flip-card:hover .step-card {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(232,77,35,0.1) !important;
    background: rgba(255,255,255,0.7) !important;
}
.section-pink .flip-hint { color: #8a5068 !important; }
.section-pink .audience-tag {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(0,0,0,0.08) !important;
    color: var(--text) !important;
}
.section-pink .audience-tag:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3) !important;
}

/* ── Light blue section — soft sky blue ── */
.section-lightblue {
    background: #C0D7FF !important;
    color: var(--text) !important;
    border-color: rgba(0,45,222,0.08) !important;
}
.section-lightblue .section-label { color: var(--primary) !important; }
.section-lightblue .section-label::after { background: var(--primary) !important; }
.section-lightblue .section-title,
.section-lightblue h2,
.section-lightblue h3 { color: var(--secondary) !important; }
.section-lightblue .section-sub,
.section-lightblue p { color: #2a2a4a !important; }
.section-lightblue .feature-card,
.section-lightblue .step-card {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(255,255,255,0.7) !important;
    backdrop-filter: blur(8px);
}
.section-lightblue .feature-card h3,
.section-lightblue .step-card h3 { color: var(--text) !important; }
.section-lightblue .feature-card p,
.section-lightblue .step-card p { color: #2a2a4a !important; }
.section-lightblue .feature-icon {
    background: rgba(255,255,255,0.6) !important;
    color: var(--primary) !important;
}
.section-lightblue .flip-card:hover .feature-card {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 30px rgba(0,45,222,0.1) !important;
    background: rgba(255,255,255,0.7) !important;
}
.section-lightblue .flip-hint { color: var(--secondary) !important; opacity: 0.5; }
.section-lightblue .step-num {
    background: rgba(232,77,35,0.1) !important;
    color: var(--primary) !important;
}
.section-lightblue .audience-tag {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(0,0,0,0.08) !important;
    color: var(--text) !important;
}
.section-lightblue .audience-tag:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

/* ── Hero Dark (elegant charcoal/slate for page heroes) ── */
.hero-dark {
    background: #C0D7FF !important;
    color: var(--text) !important;
    position: relative;
    overflow: hidden;
}
.hero-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    background: #F4F0E7;
    pointer-events: none;
    z-index: 0;
}
.hero-dark::after {
    display: none;
}
.hero-dark h1,
.hero-dark .hero-title,
.hero-dark .section-title { color: var(--secondary) !important; }
.hero-dark h1.visually-eyebrow { color: var(--primary) !important; }
.hero-dark .hero-title .gradient,
.hero-dark h1 .gradient {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}
.hero-dark .hero-sub,
.hero-dark p { color: var(--text) !important; }
.hero-dark .hero-badge {
    background: rgba(255,255,255,0.7) !important;
    border-color: var(--border) !important;
    color: var(--text-muted) !important;
    backdrop-filter: blur(8px);
}
.hero-dark .hero-badge .dot { background: var(--primary) !important; }
.hero-dark .btn-main {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(232,77,35,0.25) !important;
}
.hero-dark .btn-main:hover {
    box-shadow: 0 8px 30px rgba(232,77,35,0.35) !important;
}
.hero-dark .btn-ghost {
    background: #F4BDC9 !important;
    color: var(--text) !important;
    border-color: #F4BDC9 !important;
}
.hero-dark .btn-ghost:hover {
    background: #e8a3b5 !important;
    border-color: #e8a3b5 !important;
    color: var(--text) !important;
}
.hero-dark .toggle-wrap {
    background: rgba(255,255,255,0.5) !important;
    border-color: var(--border) !important;
}
.hero-dark .toggle-btn {
    color: var(--text-muted) !important;
}
.hero-dark .toggle-btn.active {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ── Hero Light Blue (subpages) ── */
.hero-light-blue {
    background: #C0D7FF !important;
    color: var(--text) !important;
    position: relative;
    overflow: hidden;
}
.hero-light-blue h1,
.hero-light-blue .hero-title,
.hero-light-blue .section-title { color: var(--secondary) !important; }
.hero-light-blue h1.visually-eyebrow { color: var(--primary) !important; }
.hero-light-blue .hero-title .gradient,
.hero-light-blue h1 .gradient {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}
.hero-light-blue .hero-sub,
.hero-light-blue p { color: var(--text) !important; }
.hero-light-blue .hero-badge {
    background: rgba(255,255,255,0.7) !important;
    border-color: var(--border) !important;
    color: var(--text-muted) !important;
}
.hero-light-blue .hero-badge .dot { background: var(--primary) !important; }
.hero-light-blue .btn-main {
    background: var(--primary) !important;
    color: #fff !important;
}
.hero-light-blue .btn-ghost {
    background: #F4BDC9 !important;
    color: var(--text) !important;
    border-color: #F4BDC9 !important;
}
.hero-light-blue .toggle-wrap {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(0,0,0,0.08) !important;
}
.hero-light-blue .toggle-btn {
    color: var(--text-muted) !important;
}
.hero-light-blue .toggle-btn.active {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ── Hero Light Pink (subpages) ── */
.hero-light-pink {
    background: #FBE8ED !important;
    color: var(--text) !important;
    position: relative;
    overflow: hidden;
}
.hero-light-pink h1,
.hero-light-pink .hero-title,
.hero-light-pink .section-title { color: var(--secondary) !important; }
.hero-light-pink h1.visually-eyebrow { color: var(--primary) !important; }
.hero-light-pink .hero-title .gradient,
.hero-light-pink h1 .gradient {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}
.hero-light-pink .hero-sub,
.hero-light-pink p { color: var(--text) !important; }
.hero-light-pink .hero-badge {
    background: rgba(255,255,255,0.7) !important;
    border-color: var(--border) !important;
    color: var(--text-muted) !important;
}
.hero-light-pink .hero-badge .dot { background: var(--primary) !important; }
.hero-light-pink .btn-main {
    background: var(--primary) !important;
    color: #fff !important;
}
.hero-light-pink .btn-ghost {
    background: #C0D7FF !important;
    color: var(--text) !important;
    border-color: #C0D7FF !important;
}
.hero-light-pink .toggle-wrap {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(0,0,0,0.08) !important;
}
.hero-light-pink .toggle-btn {
    color: var(--text-muted) !important;
}
.hero-light-pink .toggle-btn.active {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ── Hero Blue (for page-hero with dark blue bg) ── */
.hero-blue {
    background: var(--secondary) !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}
.hero-blue::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,203,74,0.15);
    filter: blur(40px);
    pointer-events: none;
    animation: gentle-drift-1 24s ease-in-out infinite;
}
.hero-blue::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(244,189,201,0.15);
    filter: blur(35px);
    pointer-events: none;
    animation: gentle-drift-2 28s ease-in-out infinite;
}
.hero-blue h1,
.hero-blue .hero-title,
.hero-blue .section-title { color: #fff !important; }
.hero-blue h1.visually-eyebrow { color: var(--yellow) !important; }
.hero-blue .hero-title .gradient,
.hero-blue h1 .gradient {
    color: var(--yellow) !important;
    -webkit-text-fill-color: var(--yellow) !important;
}
.hero-blue .hero-sub,
.hero-blue p { color: rgba(255,255,255,0.88) !important; }
.hero-blue .hero-badge {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(8px);
}
.hero-blue .hero-badge .dot { background: var(--yellow) !important; }
.hero-blue .btn-main {
    background: var(--yellow) !important;
    color: #1a1a2e !important;
    box-shadow: 0 4px 16px rgba(255,203,74,0.35) !important;
}
.hero-blue .btn-main:hover {
    box-shadow: 0 8px 30px rgba(255,203,74,0.5) !important;
}
.hero-blue .btn-ghost {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.4) !important;
}
.hero-blue .btn-ghost:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #fff !important;
    color: #fff !important;
}
.hero-blue .toggle-wrap {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.hero-blue .toggle-btn {
    color: rgba(255,255,255,0.7) !important;
}
.hero-blue .toggle-btn.active {
    background: var(--yellow) !important;
    color: #1a1a2e !important;
}

/* ── Corporate Footer ── */
.footer-dark {
    background: #F4BDC9 !important;
    color: #2a2a4a !important;
    border-top: 4px solid var(--primary) !important;
    position: relative;
}
.footer-dark::before {
    display: none;
}
.footer-dark .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}
.footer-dark .nav-logo { display: inline-flex; align-items: center; }
.footer-dark .nav-logo img { height: 32px; width: auto; display: block; }
.footer-dark .footer-brand p { color: #3d2233 !important; margin-top: 0.75rem; line-height: 1.7; font-size: 0.88rem; }
.footer-dark .footer-trust {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.footer-dark .footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3d2233;
    letter-spacing: 0.02em;
}
.footer-dark .footer-trust svg {
    color: var(--primary);
}
.footer-dark .footer-col h4, .footer-dark .footer-col h3.visually-tag { color: var(--secondary) !important; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-dark .footer-col a { color: #3d2233 !important; display: block; font-size: 0.88rem; padding: 0.25rem 0; transition: color 0.2s, padding-left 0.2s; }
.footer-dark .footer-col a:hover { color: var(--primary) !important; padding-left: 4px; text-decoration: none; }
.footer-dark .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-dark .footer-bottom p { color: #3d2233 !important; font-size: 0.82rem; }
.footer-dark .footer-credit { font-size: 0.85rem; color: #3d2233 !important; }
.footer-dark .footer-credit a { color: var(--secondary) !important; text-decoration: none; font-weight: 700; }
.footer-dark .footer-credit a:hover { color: var(--primary) !important; text-decoration: underline; }

/* Footer responsive */
@media (max-width: 900px) {
    .footer-dark .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-dark .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .footer-dark .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0 2rem; }
    .footer-dark .footer-bottom { flex-direction: column; text-align: center; }
    .footer-dark .footer-trust { justify-content: center; }
}

/* ── Active nav link ── */
.nav-links a.active { color: #E84D23 !important; font-weight: 700 !important; }

/* ── Auth section on blue ── */
.auth-on-blue {
    background: var(--secondary) !important;
    color: #fff !important;
}
.auth-on-blue .section-title { color: #fff !important; }
.auth-on-blue .section-sub { color: rgba(255,255,255,0.85) !important; }
.auth-on-blue .auth-box {
    background: #fff !important;
    border-color: rgba(255,255,255,0.2) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25) !important;
}

/* ── Mockup on dark hero ── */
.hero-dark .mockup-card {
    background: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08) !important;
}
.hero-dark .mockup-bar {
    background: #f8f9fc !important;
    border-bottom: 1px solid #e8ecf4 !important;
}
.hero-dark .mockup-bar span { color: var(--text-muted) !important; }

/* ── Mockup on blue hero ── */
.hero-blue .mockup-card {
    background: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) !important;
}
.hero-blue .mockup-bar {
    background: #f8f9fc !important;
    border-bottom-color: #edf0f7 !important;
}
.hero-blue .mockup-bar span { color: var(--text-muted) !important; }

/* ── Compare table on lightblue ── */
.section-lightblue .compare-table {
    background: rgba(255,255,255,0.95) !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15) !important;
}
.section-lightblue .compare-table th {
    background: rgba(0,45,222,0.06) !important;
    color: var(--text) !important;
}
.section-lightblue .compare-table td {
    color: var(--text) !important;
}
.section-lightblue .compare-section h2 {
    color: #fff !important;
}

/* ── FAQ on yellow ── */
.section-yellow .faq-item { border-bottom-color: rgba(0,0,0,0.12) !important; }
.section-yellow .faq-item summary { color: var(--text) !important; }
.section-yellow .faq-item summary::after { color: #7a5800 !important; }
.section-yellow .faq-item p { color: #3d2c00 !important; }

/* ── Price cards on pink/colored bg ── */
.section-pink .price-card,
.section-lightblue .price-card {
    background: rgba(255,255,255,0.95) !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}
.section-pink .price-card h3,
.section-pink .price-card .price-amount,
.section-lightblue .price-card h3,
.section-lightblue .price-card .price-amount {
    color: var(--text) !important;
}
.section-pink .price-card p,
.section-pink .price-card li,
.section-lightblue .price-card p,
.section-lightblue .price-card li {
    color: var(--text-muted) !important;
}

/* ── Detail section color variants ── */
.detail-on-pink { background: #F4BDC9 !important; }
.detail-on-pink .detail-content .section-label { color: rgba(255,255,255,0.8) !important; }
.detail-on-pink .detail-content h2 { color: #fff !important; }
.detail-on-pink .detail-content p { color: rgba(255,255,255,0.9) !important; }
.detail-on-pink .detail-content li { color: rgba(255,255,255,0.9) !important; }
.detail-on-pink .detail-content li::before { color: #fff !important; }
.detail-on-pink .detail-visual {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(8px);
}

.detail-on-yellow { background: #FFCB4A !important; }
.detail-on-yellow .detail-content .section-label { color: #5a4000 !important; }
.detail-on-yellow .detail-content h2 { color: var(--text) !important; }
.detail-on-yellow .detail-content p { color: #3d2c00 !important; }
.detail-on-yellow .detail-content li { color: #3d2c00 !important; }
.detail-on-yellow .detail-content li::before { color: var(--primary) !important; }
.detail-on-yellow .detail-visual {
    background: rgba(255,255,255,0.5) !important;
    border-color: rgba(255,255,255,0.6) !important;
    backdrop-filter: blur(8px);
}

.detail-on-lightblue { background: #4d7fff !important; }
.detail-on-lightblue .detail-content .section-label { color: var(--yellow) !important; }
.detail-on-lightblue .detail-content h2 { color: #fff !important; }
.detail-on-lightblue .detail-content p { color: rgba(255,255,255,0.9) !important; }
.detail-on-lightblue .detail-content li { color: rgba(255,255,255,0.9) !important; }
.detail-on-lightblue .detail-content li::before { color: var(--yellow) !important; }
.detail-on-lightblue .detail-visual {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(8px);
}

/* ── Back to Top Button ── */
.btn-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 45, 222, 0.3);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.2s ease;
}

.btn-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-top:hover {
    background: var(--primary);
    box-shadow: 0 6px 24px rgba(232, 77, 35, 0.35);
    transform: translateY(-3px);
}

.btn-back-top:active {
    transform: translateY(-1px);
}

.btn-back-top svg {
    width: 22px;
    height: 22px;
}

/* Move button up when cookie banner is visible */
body.cookie-banner-visible .btn-back-top {
    bottom: 5.5rem;
}

@media (max-width: 768px) {
    .btn-back-top {
        width: 42px;
        height: 42px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .btn-back-top svg {
        width: 20px;
        height: 20px;
    }
    body.cookie-banner-visible .btn-back-top {
        bottom: 6rem;
    }
}

/* ── Cookie Banner Enhanced ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0d0d24;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 1.5rem;
    font-family: var(--font);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.88rem;
    margin: 0;
    flex: 1;
    min-width: 240px;
    line-height: 1.55;
}

.cookie-banner a {
    color: var(--yellow) !important;
    text-decoration: underline;
}

.cookie-banner-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: var(--primary) !important;
    color: #fff !important;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-config {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-config:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.cookie-btn-reject {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-reject:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Cookie Config Panel */
.cookie-config-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.cookie-config-overlay.open {
    display: flex;
}

.cookie-config-panel {
    background: #fff;
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease;
}

.cookie-config-header {
    padding: 1.75rem 2rem 0;
}

.cookie-config-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.cookie-config-header p {
    font-size: 0.92rem;
    color: var(--text-muted) !important;
    line-height: 1.6;
}

.cookie-config-body {
    padding: 1.25rem 2rem;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-cat-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.cookie-cat-header .cookie-tag {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    background: var(--bg-2);
    color: var(--text-muted);
}

.cookie-cat-header .cookie-tag.required {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.cookie-cat-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 0.4rem;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-3);
    border-radius: 999px;
    transition: background 0.2s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-config-footer {
    padding: 1rem 2rem 1.75rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-config-footer .cookie-btn-accept {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
}

.cookie-config-footer .cookie-btn-reject {
    color: var(--text-muted) !important;
    border-color: var(--border) !important;
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
}

.cookie-config-footer .cookie-btn-reject:hover {
    color: var(--text) !important;
    border-color: var(--text) !important;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-btns {
        justify-content: center;
        width: 100%;
    }
    .cookie-banner-btns button {
        flex: 1;
        min-width: 0;
    }
    .cookie-config-panel {
        max-height: 90vh;
    }
    .cookie-config-header,
    .cookie-config-body,
    .cookie-config-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ============================================
   ADVANCED VISUAL EFFECTS — Phase 2 (Enhanced)
   ============================================ */

/* ── Subtle Background Glow ── */
.aurora-bg {
    position: relative;
    overflow: hidden;
}

.aurora-bg::before {
    display: none;
}

/* ── Glass Cards ── */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.section-blue .glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-blue .glass-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── Animated Gradient Border ── */
@keyframes border-gradient-rotate {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

.gradient-border {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* ── Noise Texture Overlay ── */
.noise-overlay {
    position: relative;
}

.noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* (cursor-glow, typewriter, spotlight removed — too heavy) */

/* ── Animated Underline Decoration ── */
@keyframes underline-expand {
    from { width: 0; }
    to { width: 100%; }
}

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-underline.revealed::after,
.animated-underline:hover::after {
    width: 100%;
}

/* ============================================
   MASCOT & BRANDING ICON PLACEHOLDER SYSTEM
   ============================================
   Placeholders for mascot/icon assets from the
   branding department. Replace src/background
   with final assets when available.

   Classes:
   - .brand-mascot       : Main mascot container
   - .brand-mascot--hero  : Large hero mascot
   - .brand-mascot--card  : Small card-level mascot
   - .brand-mascot--float : Floating decorative mascot
   - .brand-mascot--badge : Inline badge mascot
   - .brand-icon          : Generic brand icon placeholder
   ============================================ */

/* Mascot placeholders hidden until real branding assets are ready */
.brand-mascot {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

/* Placeholder visual while waiting for branding assets */
.brand-mascot__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    border: 2px dashed rgba(var(--primary-rgb), 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-mascot__placeholder::after {
    display: none;
}

/* Inner SVG icon placeholder */
.brand-mascot__icon {
    position: relative;
    z-index: 1;
    color: var(--primary);
    opacity: 0.6;
}

/* Mascot label */
.brand-mascot__label {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: var(--surface);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid var(--border-light);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.brand-mascot:hover .brand-mascot__label {
    opacity: 1;
}

/* ── Hero Mascot (large, floating in hero area) ── */
.brand-mascot--hero {
    position: absolute;
    z-index: 2;
}

.brand-mascot--hero .brand-mascot__placeholder {
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite, pulse-glow 4s ease-in-out infinite;
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
}

.brand-mascot--hero .brand-mascot__icon svg {
    width: 48px;
    height: 48px;
}

/* ── Card Mascot (small, inline within cards) ── */
.brand-mascot--card .brand-mascot__placeholder {
    width: 56px;
    height: 56px;
}

.brand-mascot--card .brand-mascot__icon svg {
    width: 24px;
    height: 24px;
}

/* ── Floating Mascot (decorative, around sections) ── */
.brand-mascot--float {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.brand-mascot--float .brand-mascot__placeholder {
    width: 64px;
    height: 64px;
    animation: float 8s ease-in-out infinite;
    opacity: 0.7;
    border-style: dotted;
}

.brand-mascot--float .brand-mascot__icon svg {
    width: 28px;
    height: 28px;
}

/* ── Badge Mascot (inline with text) ── */
.brand-mascot--badge {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 0.35rem;
}

.brand-mascot--badge .brand-mascot__placeholder {
    width: 32px;
    height: 32px;
    border-width: 1.5px;
}

.brand-mascot--badge .brand-mascot__icon svg {
    width: 14px;
    height: 14px;
}

/* ── Brand Icon Placeholder (generic) ── */
.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--primary-light);
    border: 1.5px dashed rgba(var(--primary-rgb), 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.brand-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    opacity: 0.5;
}

.brand-icon:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

/* Brand icon size variants */
.brand-icon--sm { width: 28px; height: 28px; border-radius: 8px; }
.brand-icon--sm svg { width: 14px; height: 14px; }
.brand-icon--lg { width: 56px; height: 56px; border-radius: 16px; }
.brand-icon--lg svg { width: 28px; height: 28px; }
.brand-icon--xl { width: 80px; height: 80px; border-radius: 20px; }
.brand-icon--xl svg { width: 40px; height: 40px; }

/* ── MarIA AI Mascot (special treatment) ── */
.brand-mascot--maria .brand-mascot__placeholder {
    background: var(--primary);
    border: none;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.2);
}

.brand-mascot--maria .brand-mascot__icon {
    color: #fff;
    opacity: 0.9;
}

/* ── Section-specific mascot positioning ── */
.hero .brand-mascot--hero {
    right: 5%;
    top: 20%;
}

.section-yellow .brand-mascot--float .brand-mascot__placeholder {
    background: var(--yellow-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.section-blue .brand-mascot--float .brand-mascot__placeholder {
    background: rgba(192,215,255,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-blue .brand-mascot--float .brand-mascot__icon {
    color: #fff;
}

.section-pink .brand-mascot--float .brand-mascot__placeholder {
    background: rgba(255,255,255,0.7);
    border-color: rgba(138, 32, 64, 0.12);
}

/* ── Glow Ring Effect ── */
@keyframes glow-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.1; }
}

.glow-ring {
    position: relative;
}

.glow-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
    animation: glow-ring-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* (stat-glow removed — unnecessary) */

/* ── Enhanced Section Transitions ── */
.section-transition-wave {
    position: relative;
}

/* Wave transition disabled — caused visible white stripe between sections */
.section-transition-wave::after {
    display: none;
}

/* ============================================
   WOW FACTOR — High-Impact Visual Effects v2
   ============================================ */

/* (mesh-drift orbs removed — blur(80px) too heavy) */
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-mesh-orb { display: none; }

/* (holographic card effects removed — clean hover only) */

/* ── Dramatic Text Clip Reveal ── */
@keyframes text-clip-reveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

.reveal-clip {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-clip.revealed {
    clip-path: inset(0 0 0 0);
}

/* ── 3D Card Lift with Reflection ── */
.card-3d-lift {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.card-3d-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* ── Neon Glow Text (simplified) ── */
.neon-glow {
    text-shadow: 0 0 12px rgba(var(--primary-rgb), 0.15);
}

/* ── Animated Counter (big numbers) ── */
.counter-reveal {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* ── Hover Border Glow ── */
.hover-glow {
    transition: all 0.4s ease;
}

.hover-glow:hover {
    box-shadow:
        0 0 0 1px rgba(var(--primary-rgb), 0.15),
        0 0 20px rgba(var(--primary-rgb), 0.1),
        0 8px 30px rgba(var(--primary-rgb), 0.08);
}

/* ── Brand Text Color — Enhanced ── */
.gradient-text-vivid {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary);
}

/* (particle-canvas removed) */
.particle-canvas { display: none; }

/* ── Mockup Glow Ring ── */
.mockup-glow {
    position: relative;
}

.mockup-glow::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 30px;
    background: rgba(232, 77, 35, 0.05);
    filter: blur(20px);
    z-index: -1;
}

/* ── Enhanced Marquee Items ── */
.marquee-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    opacity: 0.4;
}

.marquee-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
}

/* (card-spotlight mouse-following effect removed) */

/* ── Gradient Divider Between Sections ── */
.gradient-divider {
    height: 3px;
    background: rgba(var(--primary-rgb), 0.2);
    border: none;
    margin: 0;
}

/* ── Enhanced Flip Card Back ── */
.flip-back {
    background: var(--primary) !important;
}

/* ── Glowing Step Numbers ── */
.step-num {
    position: relative;
    z-index: 1;
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 11px;
    background: rgba(var(--primary-rgb), 0.15);
    filter: blur(6px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flip-card:hover .step-num::after {
    opacity: 1;
}

/* (char-animate removed — hero uses simpler fade-in) */

/* ── Price Card Number Gradient ── */
.price-amount .precio-valor {
    color: var(--primary);
}

/* Premium pricing override — keep gold */
.price-card:last-child .precio-valor {
    color: #c49500 !important;
}

/* ── Scroll-Triggered Glow on Section Titles ── */
.section-title.revealed {
    position: relative;
}

.section-title.revealed::before {
    display: none;
}

/* ============================================
   WOW FACTOR — Phase 3: UAU Level
   ============================================ */

/* ── Dot Grid Background Pattern ── */
.dot-grid {
    position: relative;
}

.dot-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-dark .dot-grid::after,
.hero-blue .dot-grid::after,
.section-blue .dot-grid::after {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.section-yellow .dot-grid::after {
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

/* ── Rotating Gradient Border on Hero Badge ── */
@keyframes badge-border-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-badge-glow {
    position: relative;
    overflow: hidden;
    border: none !important;
    z-index: 1;
}

.hero-badge-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--primary);
    border-radius: inherit;
    z-index: -2;
}

.hero-badge-glow::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: inherit;
    z-index: -1;
}

.hero-dark .hero-badge-glow::after {
    background: rgba(20, 20, 40, 0.7);
}

.hero-blue .hero-badge-glow::after {
    background: rgba(0, 20, 120, 0.6);
}

/* (icon-draw, precio-scramble, micro-badges removed — too heavy/distracting) */
.hero-micro-badges { display: none; }
.micro-badge { display: none; }

/* (mockup-3d-scroll removed — JS parallax disabled) */

/* ── Enhanced Marquee — Gradient per Item ── */
.marquee-item:nth-child(5n+1) { color: var(--primary); opacity: 0.8; }
.marquee-item:nth-child(5n+2) { color: var(--secondary); opacity: 0.7; }
.marquee-item:nth-child(5n+3) { color: var(--pink); opacity: 0.8; }
.marquee-item:nth-child(5n+4) { color: #b8860b; opacity: 0.7; }
.marquee-item:nth-child(5n+5) { color: #4d7fff; opacity: 0.8; }

.marquee-item:hover {
    opacity: 1 !important;
    color: var(--primary) !important;
    transform: scale(1.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Enhanced Nav Logo Hover ── */
.nav-logo {
    transition: opacity 0.3s ease !important;
}
.nav-logo:hover {
    opacity: 0.8;
}

/* ── Pricing Grid Perspective ── */
.pricing-grid {
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* ── Auth Box Gradient Border ── */
.auth-box-glow {
    position: relative;
}

.auth-box-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: rgba(var(--primary-rgb), 0.3);
    z-index: -1;
    filter: blur(1px);
}

/* ── Responsive Phase 3 ── */
@media (max-width: 768px) {
    .dot-grid::after { background-size: 24px 24px; }
    .marquee-item:nth-child(n) { color: var(--text-muted); opacity: 0.6; }
    .marquee-track { animation-duration: 15s; }
    .marquee-item { font-size: 0.92rem; gap: 0.5rem; }

    /* Reduce heavy effects on mobile */
    .card-hover:hover { transform: none !important; }
    .card-3d-lift:hover { transform: translateY(-4px) !important; }
    .reveal { transition-duration: 0.5s !important; }
    .reveal-left, .reveal-right { transform: none !important; opacity: 0; }
    .stagger-children > * { transition-delay: 0s !important; }
    .hero-blob { display: none !important; }
    .noise-overlay::after { display: none !important; }
    .aurora-bg::before { display: none !important; }
}

/* ── Stacked Cards (parallax depth) ── */
.stacked-cards {
    position: relative;
    perspective: 1200px;
}

.stacked-cards::before,
.stacked-cards::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.stacked-cards::before {
    background: inherit;
    opacity: 0.3;
    transform: translateY(8px) translateX(4px) scale(0.97);
    filter: blur(2px);
    z-index: -1;
}

.stacked-cards::after {
    background: inherit;
    opacity: 0.15;
    transform: translateY(16px) translateX(8px) scale(0.94);
    filter: blur(4px);
    z-index: -2;
}

.stacked-cards:hover::before {
    transform: translateY(12px) translateX(6px) scale(0.97) rotateX(2deg);
}

.stacked-cards:hover::after {
    transform: translateY(24px) translateX(12px) scale(0.94) rotateX(4deg);
}

/* ── Animated Gradient Shine on Cards ── */
@keyframes card-shine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shine-on-hover {
    position: relative;
    overflow: hidden;
}

.shine-on-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    background-size: 200% 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
    z-index: 2;
}

.shine-on-hover:hover::after {
    opacity: 1;
    animation: card-shine 1.2s ease-in-out;
}

/* ── Badge ── */
.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.floating-badge--primary {
    background: var(--primary);
    color: #fff;
}

.floating-badge--secondary {
    background: var(--secondary);
    color: #fff;
}

/* ── Marquee / Infinite Scroll Text ── */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.6;
    white-space: nowrap;
    transition: opacity 0.3s, color 0.3s;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--primary);
}

/* ── Price Card Ribbon Effect ── */
.price-ribbon {
    position: absolute;
    top: 16px;
    right: -35px;
    padding: 0.35rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

/* ── Breathing Animation (subtle) ── */
@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.03); opacity: 1; }
}

.breathe {
    animation: breathe 4s ease-in-out infinite;
}

/* ── Section Number (big decorative) ── */
.section-number {
    position: absolute;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    font-family: var(--font-heading);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* ── Animated Checkmark ── */
@keyframes checkmark-draw {
    from { stroke-dashoffset: 24; }
    to { stroke-dashoffset: 0; }
}

.animated-check svg {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
}

.animated-check.revealed svg {
    animation: checkmark-draw 0.4s ease forwards;
}

/* ── Responsive for advanced effects ── */
@media (max-width: 768px) {
    .brand-mascot--hero .brand-mascot__placeholder {
        width: 80px;
        height: 80px;
    }
    .brand-mascot--hero .brand-mascot__icon svg {
        width: 32px;
        height: 32px;
    }
    .hero .brand-mascot--hero {
        right: 2%;
        top: 12%;
    }
    .brand-mascot--float .brand-mascot__placeholder {
        width: 44px;
        height: 44px;
    }
    .cursor-glow {
        display: none !important;
    }
    .hero-blob-1 { width: 140px; height: 140px; }
    .hero-blob-2 { width: 110px; height: 110px; }
    .hero-blob-3 { width: 90px; height: 90px; }
    .hero-dark::before { width: 200px; height: 200px; }
    .hero-dark::after { width: 160px; height: 160px; }
    .hero-blue::before { width: 200px; height: 200px; }
    .hero-blue::after { width: 160px; height: 160px; }
    .hero-mesh-orb--1 { width: 280px; height: 280px; }
    .hero-mesh-orb--2 { width: 250px; height: 250px; }
    .hero-mesh-orb--3 { width: 200px; height: 200px; }
    .hero-mesh-orb--4 { display: none; }
    .particle-canvas { display: none; }
    .mockup-glow::before { inset: -10px; filter: blur(20px); }
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-blob, .gradient-text, .gradient-text-alt, .gradient-text-vivid {
        animation: none !important;
    }

    .btn-main::before {
        display: none;
    }

    .brand-mascot--hero .brand-mascot__placeholder,
    .brand-mascot--float .brand-mascot__placeholder,
    .aurora-bg::before,
    .gradient-border::before,
    .glow-ring::before,
    .hero-mesh-orb,
    .flip-back,
    .price-card.featured::after {
        animation: none !important;
    }

    .cursor-glow, .particle-canvas {
        display: none !important;
    }

    .char-animate {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
