/* ============================================================
   STRONGMOMENTS TECHNOLOGIES — Premium Animation System
   animations.css v3.0
   
   Motion Principles:
   - Ease-out for entrances (elements feel like they arrive)
   - Ease-in-out for sustained transitions (oscillation, loops)
   - Spring-like overshoot for pop effects (feels physical)
   - Under 400ms unless cinematic/intentional
   - All animations via transform + opacity (GPU-accelerated)
   ============================================================ */

/* ========================================
   EASING TOKENS
   ======================================== */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-soft: cubic-bezier(0.45, 0, 0.55, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
    --duration-enter: 600ms;
    --duration-cinematic: 1000ms;
}

/* ========================================
   PREFERS-REDUCED-MOTION GUARD
   Guard wraps all motion — enable it globally
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    /* Keep opacity transitions for visibility */
    .sm-reveal,
    .sm-reveal-left,
    .sm-reveal-right,
    .sm-reveal-scale,
    [data-stagger-reveal]>* {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   SCROLL PROGRESS INDICATOR
   ======================================== */
#sm-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2E7D32, #66BB6A, #AED581);
    z-index: 9999;
    transform-origin: left;
    transition: width 80ms linear;
    border-radius: 0 2px 2px 0;
}

/* ========================================
   CUSTOM CURSOR SPOTLIGHT
   ======================================== */
#sm-cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 300ms ease;
    mix-blend-mode: normal;
}

/* ========================================
   SCROLL REVEAL CLASSES
   All use transform + opacity (GPU-accelerated)
   ======================================== */

/* Base state: hidden */
.sm-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform, opacity;
}

.sm-reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform, opacity;
}

.sm-reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform, opacity;
}

.sm-reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform, opacity;
}

/* Visible state */
.sm-reveal.in-view,
.sm-reveal-left.in-view,
.sm-reveal-right.in-view,
.sm-reveal-scale.in-view {
    opacity: 1;
    transform: none;
}

/* ========================================
   STAGGER GRID REVEALS
   Apply [data-stagger-reveal] to parent, 
   children animate in sequence
   ======================================== */
[data-stagger-reveal]>* {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform, opacity;
}

[data-stagger-reveal].in-view>* {
    opacity: 1;
    transform: none;
}

/* Each child gets longer delay (up to 12 children) */
[data-stagger-reveal].in-view>*:nth-child(1) {
    transition-delay: 0ms;
}

[data-stagger-reveal].in-view>*:nth-child(2) {
    transition-delay: 80ms;
}

[data-stagger-reveal].in-view>*:nth-child(3) {
    transition-delay: 160ms;
}

[data-stagger-reveal].in-view>*:nth-child(4) {
    transition-delay: 240ms;
}

[data-stagger-reveal].in-view>*:nth-child(5) {
    transition-delay: 320ms;
}

[data-stagger-reveal].in-view>*:nth-child(6) {
    transition-delay: 400ms;
}

[data-stagger-reveal].in-view>*:nth-child(7) {
    transition-delay: 480ms;
}

[data-stagger-reveal].in-view>*:nth-child(8) {
    transition-delay: 560ms;
}

[data-stagger-reveal].in-view>*:nth-child(9) {
    transition-delay: 640ms;
}

/* ========================================
   WORD-BY-WORD HEADING ANIMATION
   Wrap each word in <span class="word-wrap"><span class="word">
   JS will handle this automatically
   ======================================== */
.sm-split-words .word-wrap {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.sm-split-words .word {
    display: inline-block;
    transform: translateY(105%);
    transition:
        transform var(--duration-enter) var(--ease-out-expo);
    will-change: transform;
}

.sm-split-words.in-view .word {
    transform: translateY(0);
}

.sm-split-words.in-view .word:nth-child(1) {
    transition-delay: 0ms;
}

.sm-split-words.in-view .word:nth-child(2) {
    transition-delay: 55ms;
}

.sm-split-words.in-view .word:nth-child(3) {
    transition-delay: 110ms;
}

.sm-split-words.in-view .word:nth-child(4) {
    transition-delay: 165ms;
}

.sm-split-words.in-view .word:nth-child(5) {
    transition-delay: 220ms;
}

.sm-split-words.in-view .word:nth-child(6) {
    transition-delay: 275ms;
}

.sm-split-words.in-view .word:nth-child(7) {
    transition-delay: 330ms;
}

.sm-split-words.in-view .word:nth-child(8) {
    transition-delay: 385ms;
}

/* ========================================
   MAGNETIC BUTTON EFFECT
   JS applies the transform; CSS adds the glow.
   ======================================== */
.btn-magnetic {
    transition:
        transform 300ms var(--ease-out-expo),
        box-shadow 300ms var(--ease-out-expo);
    cursor: pointer;
    will-change: transform;
}

.btn-magnetic:hover {
    box-shadow: 0 16px 48px rgba(46, 125, 50, 0.35);
}

/* ========================================
   VANILLA TILT CARDS
   JS will apply perspective transform;
   CSS handles the glow overlay
   ======================================== */
.sm-tilt {
    transform-style: preserve-3d;
    transition: transform 300ms var(--ease-out-expo), box-shadow 300ms var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

/* Shine overlay — JS moves via CSS custom props */
.sm-tilt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.10) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.sm-tilt:hover::before {
    opacity: 1;
}

/* ========================================
   TYPEWRITER CURSOR
   Used by JS typewriter on hero title
   ======================================== */
.sm-typewriter-cursor {
    display: inline-block;
    width: 0.08em;
    height: 1em;
    background: #66BB6A;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursor-blink 0.75s step-start infinite;
    border-radius: 1px;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ========================================
   TEXT SCRAMBLE
   JS cycles through chars; CSS fades them
   ======================================== */
.sm-scramble-char {
    display: inline-block;
    transition: opacity 60ms ease;
}

.sm-scramble-char.scrambling {
    opacity: 0.25;
    color: #66BB6A;
}

/* ========================================
   NAV SCROLL PROGRESS LINE
   (inside navbar, fills as user scrolls)
   ======================================== */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--nav-progress, 0%);
    height: 2px;
    background: linear-gradient(90deg, #2E7D32, #66BB6A);
    transition: width 100ms linear;
}

/* ========================================
   ACTIVE NAV INDICATOR (pill)
   ======================================== */
.nav-active-pill {
    position: absolute;
    background: var(--color-brand-green-light);
    border-radius: 6px;
    transition:
        left 250ms var(--ease-out-expo),
        width 250ms var(--ease-out-expo),
        opacity 200ms ease;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   BUTTON MICRO-INTERACTIONS
   ======================================== */

/* Press-down feedback */
.btn:active {
    transform: scale(0.97) !important;
    transition: transform 80ms ease;
}

/* Shine on primary */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.22) 50%,
            transparent 80%);
    transform: translateX(-120%);
    transition: transform 550ms var(--ease-out-quart);
    pointer-events: none;
}

.btn-primary:hover::after {
    transform: translateX(120%);
}

/* ========================================
   FORM INPUT MICRO-INTERACTIONS
   ======================================== */
.form-input,
.form-select,
.form-textarea {
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        transform 150ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 3px rgba(46, 125, 50, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Floating label animation (class toggled by JS) */
.form-group {
    position: relative;
}

.form-group.filled .form-label,
.form-group.focused .form-label {
    color: var(--color-brand-green);
}

/* Submit button loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 700ms linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   SCROLL-TRIGGERED STEPPER LINE DRAW
   ======================================== */
.stepper-line {
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 800ms var(--ease-out-expo);
}

.stepper.in-view .stepper-line {
    transform: scaleY(1);
}

.step-circle {
    transition:
        background 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-out-back);
}

.stepper.in-view .step-circle {
    animation: step-pop 500ms var(--ease-out-back) forwards;
}

.stepper.in-view .step:nth-child(2) .step-circle {
    animation-delay: 150ms;
}

.stepper.in-view .step:nth-child(3) .step-circle {
    animation-delay: 300ms;
}

.stepper.in-view .step:nth-child(4) .step-circle {
    animation-delay: 450ms;
}

@keyframes step-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   GLASSMORPHISM CHIP / BADGE
   ======================================== */
.chip-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #A5D6A7;
}

/* ========================================
   STAT NUMBER CASINO ROLL
   ======================================== */
.stat-number {
    display: inline-block;
    transition: transform 600ms var(--ease-out-expo);
}

.stat-number.counting {
    animation: stat-roll 600ms var(--ease-out-expo);
}

@keyframes stat-roll {
    0% {
        transform: translateY(-20px) scale(0.8);
        opacity: 0;
    }

    60% {
        transform: translateY(4px) scale(1.06);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ========================================
   CARD HOVER — Premium lift
   ======================================== */
.card {
    transition:
        transform 280ms var(--ease-out-expo),
        box-shadow 280ms var(--ease-out-expo);
    will-change: transform;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 20px 48px rgba(46, 125, 50, 0.12);
}

/* Card icon bounce */
.card:hover .card-icon,
.card:hover .material-symbols-outlined.card-icon {
    transform: scale(1.15) rotate(-5deg);
    transition: transform 300ms var(--ease-out-back);
    color: #2E7D32;
}

.card .card-icon,
.card .material-symbols-outlined.card-icon {
    transition: transform 300ms var(--ease-out-back), color 200ms ease;
}

/* ========================================
   ARROW LINK MICRO-INTERACTION
   ======================================== */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 200ms var(--ease-out-expo), color 200ms ease;
}

.text-link:hover {
    gap: 8px;
    color: var(--color-brand-green);
}

.text-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 200ms var(--ease-out-expo);
}

.text-link:hover .material-symbols-outlined {
    transform: translateX(3px);
}

/* ========================================
   SCROLL-LINKED HERO PARALLAX LAYERS
   ======================================== */
.hero-slideshow {
    will-change: transform;
}

/* ========================================
   FLOATING PARTICLE CSS ANIMATIONS
   (the CSS particles in dark sections)
   ======================================== */
.particle {
    animation: particle-float var(--duration, 7s) var(--ease-in-out-soft) infinite alternate;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }

    100% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.35;
    }
}

/* Each particle different timing */
.particle:nth-child(odd) {
    animation-duration: 6s;
}

.particle:nth-child(even) {
    animation-duration: 9s;
    animation-delay: -3s;
}

.particle:nth-child(3n) {
    animation-duration: 11s;
    animation-delay: -6s;
}

/* ========================================
   NAVBAR ENTRANCE
   ======================================== */
.navbar {
    animation: navbar-slide-in 600ms var(--ease-out-expo) both;
}

@keyframes navbar-slide-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   HERO CONTENT STAGGERED ENTRANCE
   ======================================== */
.hero-content .chip {
    animation: hero-item-in 700ms var(--ease-out-expo) 200ms both;
}

.hero-content .hero-title {
    animation: hero-item-in 700ms var(--ease-out-expo) 350ms both;
}

.hero-content .hero-subtitle {
    animation: hero-item-in 700ms var(--ease-out-expo) 500ms both;
}

.hero-content .hero-buttons {
    animation: hero-item-in 700ms var(--ease-out-expo) 650ms both;
}

@keyframes hero-item-in {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   COUNTER SECTION REVEAL
   ======================================== */
.stat-item {
    transition:
        opacity var(--duration-enter) var(--ease-out-expo),
        transform var(--duration-enter) var(--ease-out-expo);
}

/* ========================================
   PAGE FADE-IN ON LOAD
   ======================================== */
body {
    animation: page-fade-in 400ms var(--ease-out-expo) both;
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   DROPDOWN MENU ANIMATION
   ======================================== */
.dropdown-menu {
    transform-origin: top center;
    transform: scaleY(0.85) translateY(-8px);
    opacity: 0;
    transition:
        transform 220ms var(--ease-out-expo),
        opacity 220ms ease;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   DROPDOWN ITEM STAGGER
   ======================================== */
.nav-dropdown:hover .dropdown-menu a,
.nav-dropdown:focus-within .dropdown-menu a {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu a {
    opacity: 0;
    transform: translateX(-8px);
    transition:
        opacity 200ms ease,
        transform 200ms var(--ease-out-expo),
        background 150ms ease,
        color 150ms ease;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(1) {
    transition-delay: 0ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(2) {
    transition-delay: 30ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(3) {
    transition-delay: 60ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(4) {
    transition-delay: 90ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(5) {
    transition-delay: 120ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(6) {
    transition-delay: 150ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(7) {
    transition-delay: 180ms;
}

.nav-dropdown:hover .dropdown-menu a:nth-child(8) {
    transition-delay: 210ms;
}

/* ========================================
   TEAM CARD HOVER — subtle border glow
   ======================================== */
.team-card {
    transition:
        transform 280ms var(--ease-out-expo),
        box-shadow 280ms var(--ease-out-expo),
        border-color 280ms ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.10),
        0 0 0 1px rgba(46, 125, 50, 0.15);
}

/* ========================================
   SERVICE PAGE HERO BADGE ANIMATION
   ======================================== */
.service-icon-badge {
    animation: badge-breathe 3s var(--ease-in-out-soft) infinite;
}

@keyframes badge-breathe {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(76, 175, 80, 0),
            0 8px 32px rgba(46, 125, 50, 0.2);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(76, 175, 80, 0.12),
            0 8px 32px rgba(46, 125, 50, 0.35);
    }
}

/* ========================================
   CONTACT PAGE RADAR PULSE
   ======================================== */
.radar-ring {
    animation: radar-pulse 2.5s var(--ease-in-out-soft) infinite;
}

.radar-ring:nth-child(2) {
    animation-delay: 0.6s;
}

.radar-ring:nth-child(3) {
    animation-delay: 1.2s;
}

.radar-ring:nth-child(4) {
    animation-delay: 1.8s;
}

@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ========================================
   CTA BANNER — aurora shimmer
   ======================================== */
.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(76, 175, 80, 0.08) 60deg,
            transparent 120deg,
            rgba(76, 175, 80, 0.05) 180deg,
            transparent 240deg,
            rgba(76, 175, 80, 0.08) 300deg,
            transparent 360deg);
    animation: aurora-spin 20s linear infinite;
    pointer-events: none;
}

@keyframes aurora-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   SECTION DIVIDER — animated gradient
   ======================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(46, 125, 50, 0.4) 30%,
            rgba(102, 187, 106, 0.6) 50%,
            rgba(46, 125, 50, 0.4) 70%,
            transparent 100%);
    background-size: 200% 100%;
    animation: divider-shimmer 4s var(--ease-in-out-soft) infinite;
    border: none;
}

@keyframes divider-shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* ========================================
   FOOTER LINK HOVER
   ======================================== */
.footer-col a {
    position: relative;
    display: inline-block;
    transition: color 200ms ease, transform 150ms ease;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-brand-green);
    transition: width 250ms var(--ease-out-expo);
}

.footer-col a:hover {
    color: var(--color-brand-green);
    transform: translateX(3px);
}

.footer-col a:hover::after {
    width: 100%;
}

/* ========================================
   TECH LOGO HOVER FLOAT
   ======================================== */
.tech-logo {
    transition:
        transform 300ms var(--ease-out-back),
        box-shadow 300ms ease,
        background 200ms ease;
}

.tech-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ========================================
   ANIMATED BORDER GRADIENT on capability cards
   ======================================== */
.capability {
    position: relative;
    transition:
        transform 250ms var(--ease-out-expo),
        background 250ms ease;
}

.capability::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(46, 125, 50, 0.3), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 300ms ease;
}

.capability:hover::before {
    opacity: 1;
}

.capability:hover {
    transform: translateY(-4px);
    background: white;
}

/* ========================================
   MOBILE MENU SLIDE
   ======================================== */
.mobile-menu {
    transition:
        transform 350ms var(--ease-out-expo),
        opacity 350ms ease;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Mobile menu items stagger */
.mobile-menu.open a {
    animation: mobile-item-in 350ms var(--ease-out-expo) both;
}

.mobile-menu.open a:nth-child(1) {
    animation-delay: 50ms;
}

.mobile-menu.open a:nth-child(2) {
    animation-delay: 100ms;
}

.mobile-menu.open a:nth-child(3) {
    animation-delay: 130ms;
}

.mobile-menu.open a:nth-child(4) {
    animation-delay: 160ms;
}

.mobile-menu.open a:nth-child(5) {
    animation-delay: 190ms;
}

@keyframes mobile-item-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   EYEBROW LABEL
   ======================================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--color-brand-green);
    border-radius: 50%;
    animation: dot-breathe 2s var(--ease-in-out-soft) infinite;
    flex-shrink: 0;
}

@keyframes dot-breathe {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.7);
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0);
    }
}

/* ========================================
   SCROLL INDICATOR ARROW (hero bottom)
   ======================================== */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s var(--ease-in-out-soft) infinite;
    cursor: pointer;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}