/* VA Landing Page Redesign - Editorial Style - UPDATED */

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/Barlow/fonnts.com-BarlowCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/fonnts.com-Roc_Grotesk_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/fonnts.com-Roc_Grotesk_Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/fonnts.com-Roc_Grotesk_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('../fonts/fonnts.com-Roc_Grotesk_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== CSS VARIABLES ========== */
:root {
    --color-open-tab: #F3F1DE;
    --color-night-shift: #1C1C1C;
    --color-global-thread: #3D405B;
    --color-active: #80B29B;
    --color-task-force: #DF7A5F;
    --color-highlight: #DF7A5F;
    --bg-default: #F3F1DE;
    --color-green: #80B29B;
    --color-orange: #DF7A5F;
    --color-dark: #1C1C1C;
    --color-dark-accent: #3D405B;
    --font-primary: 'Roc Grotesk', sans-serif;
    --font-secondary: 'Barlow Condensed', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1400px;
    --scroll-progress: 0;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-open-tab);
    color: var(--color-night-shift);
    font-family: var(--font-secondary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.text-green { color: var(--color-active); }
.text-orange { color: var(--color-task-force); }
.text-dark { color: var(--color-night-shift); }
.bg-dark { background-color: var(--color-night-shift) !important; color: #fff; }
.bg-green { background-color: var(--color-active) !important; }
.bg-orange { background-color: var(--color-task-force) !important; }

/* ========== SCROLL-TRIGGERED HERO LAYOUT ========== */

/* Default Hero Section */
.editorial-hero {
    background-color: var(--color-open-tab);
    padding: 0;
    padding-top: 100px;
    min-height: calc(100vh - (15vh * var(--scroll-progress)));
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* ✅ ADD THESE LINES */
    position: relative;
    overflow: hidden;
    isolation: isolate; /* Creates stacking context for z-index */
}


/* ========== ANIMATED GRID BACKGROUND ========== */

/* Grid Lines Layer */
.editorial-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    
    /* Creates crosshatch grid pattern */
    background-image:
        linear-gradient(rgba(61,64,91,0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,64,91,0.14) 1px, transparent 1px);
    background-size: 40px 40px;
    
    /* Moves diagonally northwest */
    animation: gridMoveNW 30s linear infinite;
}

/* Dotted Pattern Layer */
.editorial-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    
    /* Creates subtle dots */
    background-image:
        radial-gradient(circle, rgba(61,64,91,0.20) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.18;
    
    /* Moves slower for depth effect */
    animation: dotsMoveNW 40s linear infinite;
}

/* Northwest Diagonal Movement - Grid */
@keyframes gridMoveNW {
    from {
        background-position: 0px 0px;
    }
    to {
        background-position: -200px -200px;
    }
}

/* Northwest Diagonal Movement - Dots */
@keyframes dotsMoveNW {
    from {
        background-position: 0px 0px;
    }
    to {
        background-position: -120px -120px;
    }
}

/* After Scroll - NORMAL LAYOUT */
body.scrolled .editorial-hero {
    min-height: 85vh;
    padding: 6rem 2rem 4rem;
}

/* Hero Content Grid */
.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    justify-items: center;
    place-items: center;
}

/* After Scroll - TWO COLUMN GRID */
body.scrolled .hero-content {
    grid-template-columns: repeat(12, 1fr);
    justify-items: initial;
    place-items: initial;
}

/* Hero Text - CENTERED ON LOAD */
.hero-text {
    padding: 0;
    max-width: 1100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* After Scroll - LEFT ALIGNED */
body.scrolled .hero-text {
    grid-column: 1 / span 7;
    padding-right: 2rem;
    text-align: left;
    display: block;
    max-width: none;
}

/* ✅ Hero Title - BIGGER ON LOAD (DEFAULT STATE) */
.display-hero {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 6rem) !important; /* ✅ Added !important to ensure it applies */
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--color-night-shift);
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ✅ After Scroll - SMALLER SIZE */
body.scrolled .display-hero {
    font-size: clamp(2.75rem, 6.5vw, 4.5rem) !important; /* ✅ Added !important */
    margin-bottom: 1.75rem;
    text-align: left;
}

/* Rotating Word Animation - FIXED CENTERING */
.rotating-word {
    display: inline-flex;
    position: relative;
    color: var(--color-task-force);
    font-weight: 800;
    min-width: 320px;
    min-height: 1.2em;
    vertical-align: bottom;
    overflow: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
}

.rotating-word .word-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    white-space: nowrap;
}

/* After scroll - left align rotating word */
body.scrolled .rotating-word {
    justify-content: flex-start;
}

body.scrolled .rotating-word .word-wrapper {
    left: 0;
    transform: translateY(-50%);
}

.rotating-word .letter-char {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    height: 1em;
}

.rotating-word .letter-char__inner {
    display: block;
    transform: translateY(0);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: inherit;
}

.rotating-word .word-wrapper.animate-out .letter-char__inner {
    transform: translateY(-120%);
}

.rotating-word .word-wrapper.animate-in .letter-char__inner {
    transform: translateY(120%);
}

.rotating-word .word-wrapper.animate-in.active .letter-char__inner {
    transform: translateY(0);
}

/* Hero Description - BIGGER ON LOAD */
.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-night-shift);
    margin: 0 auto 3rem;
    max-width: 850px;
    font-weight: 400;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* After Scroll - NORMAL SIZE */
body.scrolled .hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-left: 0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: left;
}

/* Hero CTA - CENTERED ON LOAD */
.hero-cta {
    margin-top: 2rem;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* After Scroll - LEFT ALIGNED */
body.scrolled .hero-cta {
    text-align: left;
}

/* Button - BIGGER ON LOAD */
.btn-register {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: var(--color-active);
    color: white;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

/* After Scroll - NORMAL SIZE */
body.scrolled .btn-register {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-register:hover {
    background-color: var(--color-orange); /* ✅ ADD THIS - Changes to orange on hover */
    color: white; /* ✅ Keep white text on hover */
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px #F2CC8F;
}

/* Hero Image - HIDDEN ON LOAD */

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    position: relative; /* ✅ Add this! */
}

/* ✅ ADD THIS - Gradient shadow on .hero-image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #3D405B 0%, #80B29B 100%);
    border: 2px solid var(--color-dark);
    z-index: 0;
}


/* After Scroll - SHOW IMAGE */
body.scrolled .hero-image {
    grid-column: 8 / span 5;
    opacity: 1;
    pointer-events: auto;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--color-dark);
    overflow: hidden;
    background-color: var(--bg-default);
    z-index: 1; /* ✅ Sits above the gradient shadow */
}


/* Optional: Make shadow slightly bigger on hover */

.hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 0;
}



.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video::-moz-media-controls {
    display: none !important;
}

.hero-video::-ms-media-controls {
    display: none !important;
}

/* ========== DECORATIVE LINES - HIDDEN ON LOAD ========== */
.hero-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: -100px;
    transform: translateX(-50%);
    width: 2px;
    pointer-events: none;
    opacity: var(--scroll-progress);
    transition: opacity 0.3s ease;
}

body.scrolled .hero-divider {
    opacity: 1;
}

.divider-vertical {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height:99.7%;
    background-color: var(--color-night-shift);
}

.divider-horizontal {
    position: absolute;
    bottom: 0px;
    right: 1;
    transform: translateX(-50%);
    width: calc(20vw + 800px);
    height: 2px;
    background-color: var(--color-night-shift);
}

/* ========== BENEFITS SECTION - CARD STYLE ========== */
.benefits-section {
    background-color: var(--color-open-tab);
    padding: 3rem 2rem;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
    
    /* Grid background */
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Grid animation layers */
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(61,64,91,0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,64,91,0.14) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMoveNW 30s linear infinite;
}

.benefits-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(61,64,91,0.20) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.18;
    animation: dotsMoveNW 40s linear infinite;
}

body.scrolled .benefits-section {
    opacity: 1;
    pointer-events: auto;
}

/* ✅ BENEFITS CONTAINER */
.benefits-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1; /* ✅ Ensures cards appear above background */
}

/* ✅ FIXED CARD STYLE */
.benefit-item {
    text-align: left;
    position: relative;
    padding: 2rem 1.5rem;
    background-color: var(--color-open-tab); /* Same as background for clean look */
    border: 2px solid var(--color-night-shift); /* ✅ Solid border */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 2; /* ✅ Ensures card sits above grid */
    isolation: isolate; /* ✅ Creates new stacking context */
}

/* ✅ FIXED: Remove all pseudo-element dividers */
.benefit-item::before,
.benefit-item::after {
    display: none !important;
}

/* ✅ FIXED HOVER EFFECT */
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px var(--color-orange);
    background-color: rgba(255, 255, 255, 0.5); /* ✅ Slight bg change on hover */
    z-index: 3; /* ✅ Bring hovered card above others */
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 1.2rem !important;  
    font-weight: 700;
    text-transform: uppercase;
    color: #3D405B !important;  
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative; /* ✅ Ensures proper stacking */
    z-index: 1;
}

.benefit-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-night-shift);
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
    position: relative; /* ✅ Ensures proper stacking */
    z-index: 1;
}

/* ✅ HIDE OLD DIVIDER */
.benefit-divider {
    display: none !important;
}




/* ========== INFINITE BANNER - HIDDEN ON LOAD ========== */
.infinite-banner {
    background-color: #DF7A5F;
    overflow: hidden;
    padding: 0 0 0.75rem 0;
    position: relative;
    border-top: 2px solid var(--color-night-shift);
    border-bottom: 1px solid var(--color-night-shift);
    display: flex;
    align-items: center;
    min-height: 120px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

body.scrolled .infinite-banner {
    opacity: 1;
    pointer-events: auto;
}

.banner-track {
    display: flex;
    width: fit-content;
    animation: scroll 60s linear infinite;
    align-items: center;
}

.banner-content {
    display: flex;
    gap: 0.3rem;
    padding-right: 4rem;
    align-items: center;
}

.banner-text {
    font-family: var(--font-secondary);
    font-size: clamp(5rem, 10vw, 10rem);
    text-transform: uppercase;
    color: #F3F1DE;
    white-space: nowrap;
    display: flex;
    gap: 0.1rem;
    line-height: 1;
    align-items: center;
}

.banner-the {
    font-weight: 400;
    letter-spacing: -0.02em;
    transform: scaleX(0.75);
    display: inline-block;
    margin-right: -1.5rem;
}

.banner-task {
    font-weight: 700;
    letter-spacing: -0.03em;
}

.banner-masters {
    font-weight: 700;
    letter-spacing: -0.04em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--color-night-shift);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 4px solid var(--color-task-force);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--color-task-force);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.footer-col h5 {
    color: white;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.footer-col p {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-task-force);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-task-force);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: var(--color-active);
    transform: translateY(-3px);
}

.scroll-top.active {
    display: flex;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    body.scrolled .hero-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    /* ✅ Benefits Cards - 2 Columns */
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem; /* ✅ Card spacing */
    }
    
    /* Hero Responsive */
    body.scrolled .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    body.scrolled .hero-text,
    body.scrolled .hero-image {
        grid-column: 1 / -1;
    }
    
    body.scrolled .hero-text {
        padding-right: 0;
    }
    
    body.scrolled .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    body.scrolled .editorial-hero {
        padding: 4rem 1rem 3rem;
    }
    
    /* ✅ Benefits Cards - Single Column */
    .benefits-section {
        padding: 2rem 1.5rem;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* ✅ Card spacing */
    }
    
    /* ✅ Card padding on tablet */
    .benefit-item {
        padding: 1.5rem 1.25rem; /* ✅ Smaller internal padding */
    }
    
    .benefit-title {
        font-size: 1.35rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    /* Banner & Footer */
    .banner-text {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ✅ Mobile - Extra Small Screens */
@media (max-width: 480px) {
    .display-hero {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    }
    
    body.scrolled .display-hero {
        font-size: clamp(2.25rem, 6.5vw, 3rem) !important;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .video-container {
        height: 300px;
    }
    
    /* ✅ Benefits Cards Mobile */
    .benefits-section {
        padding: 1.5rem 1rem;
    }
    
    .benefits-container {
        gap: 1rem; /* ✅ Tighter card spacing on mobile */
    }
    
    .benefit-item {
        padding: 1.25rem 1rem; /* ✅ Even smaller internal padding */
    }
    
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    /* Banner */
    .banner-text {
        font-size: 5rem;
        gap : 1rem;
    }
    
    .infinite-banner {
        padding: 0 0;
    }
}

/* ========== MOBILE HERO SECTION FIXES ========== */

@media (max-width: 992px) {
  
  /* ✅ Hide the vertical divider line on mobile */
  .hero-divider {
    display: none !important;
  }
  
  .divider-vertical,
  .divider-horizontal {
    display: none !important;
  }
  
  /* ✅ Hide the video container on mobile */
  .hero-image,
  .video-container,
  .hero-video {
    display: none !important;
  }
  
  /* ✅ Make hero content full width on mobile */
  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-text {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  /* ✅ Adjust hero title for mobile */
  .display-hero {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  /* ✅ Adjust hero description for mobile */
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
  }
  
  /* ✅ Center the CTA button on mobile */
  .hero-cta {
    text-align: center;
    margin-top: 2rem;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
  .display-hero {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
}


/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .editorial-hero::before,
    .editorial-hero::after,
    .benefits-section::before,
    .benefits-section::after {
        animation: none !important;
    }
}
