/* =====================================================
   HOMEPAGE ANIMATIONS & VISUAL ENHANCEMENTS v2.0
   hjLabs.in AIML Homepage — Enhanced Colors & Motion
   ===================================================== */

/* ─── COLOUR TOKENS (homepage-level overrides) ─── */
:root {
    --hp-primary: #6C63FF;
    /* vibrant violet-blue   */
    --hp-secondary: #00D4AA;
    /* neon teal/emerald     */
    --hp-accent: #FF6B9D;
    /* hot pink accent       */
    --hp-amber: #FFBA08;
    /* warm amber highlight  */
    --hp-dark: #080C14;
    /* near-black            */
    --hp-glow-blue: rgba(108, 99, 255, 0.55);
    --hp-glow-teal: rgba(0, 212, 170, 0.5);
    --hp-glow-pink: rgba(255, 107, 157, 0.45);
}

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--hp-primary) 0%,
            var(--hp-secondary) 50%,
            var(--hp-accent) 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px var(--hp-glow-blue), 0 0 20px var(--hp-glow-teal);
}

/* ─── BACK TO TOP BUTTON ─── */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    box-shadow: 0 4px 18px var(--hp-glow-blue);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#back-to-top:hover {
    box-shadow: 0 8px 32px var(--hp-glow-blue), 0 0 24px var(--hp-glow-teal);
    transform: translateY(-5px) scale(1.1);
}


/* ─── HERO AURORA BACKGROUND ─── */
.fullscreen-container {
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(108, 99, 255, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 212, 170, 0.2) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 50% 90%, rgba(255, 107, 157, 0.15) 0%, transparent 60%),
        linear-gradient(160deg, #080C14 0%, #0f1525 40%, #141030 70%, #0b1820 100%);
    position: relative;
    overflow: hidden;
}

/* Animated aurora sweep */
.fullscreen-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%,
            rgba(108, 99, 255, 0.12) 0deg,
            rgba(0, 212, 170, 0.1) 90deg,
            rgba(255, 107, 157, 0.08) 180deg,
            rgba(108, 99, 255, 0.06) 270deg,
            rgba(0, 212, 170, 0.1) 360deg);
    animation: aurora-rotate 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes aurora-rotate {
    from {
        transform: rotate(0deg) scale(1.4);
    }

    to {
        transform: rotate(360deg) scale(1.4);
    }
}

/* Ensure hero content sits above the aurora */
.fullscreen-container>* {
    position: relative;
    z-index: 1;
}


/* ─── H1 GRADIENT + TYPING CURSOR ─── */
.fullscreen-container h1 {
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 40%, var(--hp-secondary) 80%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 4s linear infinite;
}

.fullscreen-container h1::after {
    content: '|';
    display: inline-block;
    margin-left: 4px;
    animation: blink-cursor 1s step-end infinite;
    font-weight: 300;
    opacity: 0.7;
    /* must be same colour family as gradient end */
    -webkit-text-fill-color: rgba(0, 212, 170, 0.8);
}

@keyframes text-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0;
    }
}


/* ─── TRUST BADGE GLOW ─── */
.trust-badge-item {
    background: rgba(0, 212, 170, 0.12) !important;
    border-color: rgba(0, 212, 170, 0.35) !important;
    animation: badge-glow 3.5s ease-in-out infinite alternate;
    transition: transform 0.25s ease;
}

.trust-badge-item:hover {
    transform: translateY(-3px) scale(1.04);
}

.trust-badge-item i {
    color: var(--hp-secondary) !important;
}

.trust-badge-item:nth-child(2) {
    animation-delay: 1.2s;
}

.trust-badge-item:nth-child(3) {
    animation-delay: 2.4s;
}

@keyframes badge-glow {
    from {
        box-shadow: 0 0 0px rgba(0, 212, 170, 0);
    }

    to {
        box-shadow: 0 0 18px rgba(0, 212, 170, 0.65), 0 0 36px rgba(0, 212, 170, 0.2);
    }
}


/* ─── HERO IMPACT BADGES ─── */
.hero-impact-badge {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(108, 99, 255, 0.4) !important;
    animation: slide-up-fade 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-impact-badge:hover {
    background: rgba(108, 99, 255, 0.2) !important;
    border-color: var(--hp-primary) !important;
    box-shadow: 0 0 24px var(--hp-glow-blue) !important;
    transform: translateY(-6px) scale(1.04) !important;
}

.hero-impact-badge i {
    color: var(--hp-secondary) !important;
}

.hero-impact-badge:nth-child(1) {
    animation-delay: 0.25s;
}

.hero-impact-badge:nth-child(2) {
    animation-delay: 0.45s;
}

.hero-impact-badge:nth-child(3) {
    animation-delay: 0.65s;
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ─── SOCIAL PROOF ─── */
.social-proof-text {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(108, 99, 255, 0.35) !important;
    animation: proof-pulse 5s ease-in-out infinite;
}

@keyframes proof-pulse {

    0%,
    100% {
        box-shadow: 0 0 0px rgba(108, 99, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.4);
    }
}


/* ─── CTA BUTTONS ─── */
/* Primary CTA - ripple + living glow */
.hero-cta-primary {
    background: linear-gradient(135deg, var(--hp-primary), #4f46e5) !important;
    border: none !important;
    box-shadow: 0 6px 28px var(--hp-glow-blue) !important;
    position: relative;
    overflow: hidden;
    animation: cta-breathe 3s ease-in-out infinite;
}

.hero-cta-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: btn-sheen 2.5s ease-in-out infinite;
}

@keyframes btn-sheen {
    0% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes cta-breathe {

    0%,
    100% {
        box-shadow: 0 6px 28px var(--hp-glow-blue);
    }

    50% {
        box-shadow: 0 8px 40px rgba(108, 99, 255, 0.7), 0 0 60px rgba(0, 212, 170, 0.15);
    }
}

.hero-cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 44px var(--hp-glow-blue), 0 0 32px var(--hp-glow-teal) !important;
}

/* Secondary CTA */
.hero-cta-secondary {
    border-color: rgba(0, 212, 170, 0.6) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(0, 212, 170, 0.15) !important;
    border-color: var(--hp-secondary) !important;
    box-shadow: 0 0 24px var(--hp-glow-teal) !important;
    transform: translateY(-3px) !important;
}


/* ─── URGENCY INDICATOR ─── */
.urgency-indicator {
    background: rgba(255, 107, 157, 0.12) !important;
    border-color: rgba(255, 107, 157, 0.35) !important;
    animation: heartbeat 2.2s ease-in-out infinite;
}

.urgency-indicator i {
    color: var(--hp-accent) !important;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.05);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.05);
    }

    56% {
        transform: scale(1);
    }
}


/* ─── FLOATING PARTICLES ─── */
.particles::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%,
            rgba(108, 99, 255, 0.25) 0%,
            rgba(0, 212, 170, 0.08) 40%,
            transparent 70%);
    pointer-events: none;
    animation: shimmer-pulse 7s ease-in-out infinite;
}

.particle {
    background: rgba(108, 99, 255, 0.25) !important;
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.4);
}

.particle:nth-child(even) {
    background: rgba(0, 212, 170, 0.2) !important;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.35);
}

@keyframes shimmer-pulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}


/* ─── SCROLL REVEAL ─── */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in-section.is-visible [class*="col-"]:nth-child(1) {
    transition-delay: 0.05s;
}

.fade-in-section.is-visible [class*="col-"]:nth-child(2) {
    transition-delay: 0.15s;
}

.fade-in-section.is-visible [class*="col-"]:nth-child(3) {
    transition-delay: 0.25s;
}

.fade-in-section.is-visible [class*="col-"]:nth-child(4) {
    transition-delay: 0.35s;
}

.fade-in-section.is-visible [class*="col-"]:nth-child(5) {
    transition-delay: 0.45s;
}

.fade-in-section.is-visible [class*="col-"]:nth-child(6) {
    transition-delay: 0.55s;
}


/* ─── QUICK WIN CARDS ─── */
.quick-win-card {
    position: relative;
    overflow: hidden;
    background: #ffffff !important;
    border: 1.5px solid transparent;
    background-clip: padding-box;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.quick-win-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.quick-win-card:hover::before {
    opacity: 1;
}

.quick-win-card i {
    color: var(--hp-primary) !important;
    transition: all 0.35s ease;
}

.quick-win-card:hover {
    background: linear-gradient(135deg, var(--hp-primary) 0%, #4f46e5 60%, var(--hp-secondary) 100%) !important;
    transform: translateY(-6px) scale(1.03) !important;
    box-shadow: 0 16px 40px var(--hp-glow-blue), 0 0 24px var(--hp-glow-teal) !important;
}

.quick-win-card:hover i {
    color: white !important;
}


/* ─── METRICS SHOWCASE ─── */
.metrics-showcase {
    background: linear-gradient(145deg, #0c1221 0%, #0f1c35 40%, #0d1628 70%, #0e1a2e 100%) !important;
    position: relative;
    overflow: hidden;
}

.metrics-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 90deg at 40% 40%,
            rgba(108, 99, 255, 0.07) 0deg,
            rgba(0, 212, 170, 0.05) 120deg,
            transparent 180deg,
            rgba(255, 107, 157, 0.04) 270deg,
            transparent 360deg);
    animation: metrics-swirl 20s linear infinite;
    pointer-events: none;
}

@keyframes metrics-swirl {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.metric-value {
    background: linear-gradient(135deg, #fff 0%, var(--hp-secondary) 60%, var(--hp-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.5));
    animation: metric-glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes metric-glow-pulse {
    from {
        filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.35));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.7));
    }
}

.metric-item {
    position: relative;
}

.metric-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-secondary));
    border-radius: 2px;
    opacity: 0.75;
}


/* ─── CLIENT PROOF CARDS ─── */
.proof-card {
    background: #ffffff !important;
    border: 1.5px solid #e8ecf2 !important;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    overflow: hidden;
}

.proof-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-secondary));
    transition: width 0.4s ease;
}

.proof-card:hover::after {
    width: 100%;
}

.proof-card:hover {
    border-color: rgba(108, 99, 255, 0.3) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(108, 99, 255, 0.12), 0 0 0 1px rgba(108, 99, 255, 0.12) !important;
}

.proof-icon {
    color: var(--hp-primary) !important;
    transition: all 0.35s ease;
}

.proof-card:hover .proof-icon {
    color: var(--hp-secondary) !important;
    transform: scale(1.15);
}


/* ─── SERVICE CARDS ─── */
.service-card-modern {
    border-color: #e8ecf4 !important;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-modern:hover {
    border-color: rgba(108, 99, 255, 0.35) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 48px rgba(108, 99, 255, 0.13), 0 0 0 1px rgba(108, 99, 255, 0.12) !important;
}

.service-result {
    background: linear-gradient(135deg, #f0f4ff, #eefbf7) !important;
    border-left-color: var(--hp-secondary) !important;
}

/* Service icon big emojis — gentle bob */
.service-icon-large {
    display: inline-block;
    animation: icon-bob 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(108, 99, 255, 0.15));
}

.service-card-modern:nth-child(2) .service-icon-large {
    animation-delay: 0.4s;
}

.service-card-modern:nth-child(3) .service-icon-large {
    animation-delay: 0.8s;
}

.service-card-modern:nth-child(4) .service-icon-large {
    animation-delay: 1.2s;
}

@keyframes icon-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* ─── TESTIMONIAL CARDS ─── */
.testimonial-card-modern {
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.04) 0%, rgba(0, 212, 170, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.testimonial-card-modern:hover::after {
    opacity: 1;
}

.testimonial-card-modern:hover {
    border-color: rgba(108, 99, 255, 0.35) !important;
    box-shadow: 0 24px 48px rgba(108, 99, 255, 0.12), 0 0 0 1px rgba(108, 99, 255, 0.1) !important;
}

.testimonial-result-highlight {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.testimonial-quote-mark {
    color: var(--hp-primary) !important;
    opacity: 0.15 !important;
}


/* ─── TECH BADGES ─── */
.tech-badge-modern {
    border-color: #e8ecf4 !important;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    overflow: hidden;
}

.tech-badge-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.06), rgba(0, 212, 170, 0.06));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-badge-modern:hover::before {
    opacity: 1;
}

.tech-badge-modern:hover {
    border-color: var(--hp-primary) !important;
    transform: translateY(-6px) scale(1.05) !important;
    box-shadow: 0 12px 28px rgba(108, 99, 255, 0.18) !important;
}

.badge-outline {
    border-color: rgba(108, 99, 255, 0.4) !important;
    color: var(--hp-primary) !important;
    transition: all 0.25s ease !important;
}

.badge-outline:hover {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary)) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px var(--hp-glow-blue) !important;
}


/* ─── CTA FINAL SECTION ─── */
.cta-section-modern {
    background: linear-gradient(140deg,
            #0c1221 0%,
            #1a1060 35%,
            #0e2040 65%,
            #081820 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 70%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(108, 99, 255, 0.25) 0%, transparent 65%);
    animation: cta-orb-float 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.cta-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(0, 212, 170, 0.18) 0%, transparent 65%);
    animation: cta-orb-float 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes cta-orb-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(5%, 5%) scale(1.15);
    }
}

.cta-section-modern .btn-light {
    border: none !important;
    background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%) !important;
    color: var(--hp-primary) !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 24px rgba(108, 99, 255, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    z-index: 1;
}

.cta-section-modern .btn-light:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 40px rgba(108, 99, 255, 0.45), 0 0 24px rgba(0, 212, 170, 0.2) !important;
}

.cta-section-modern .btn-outline-light {
    border-color: rgba(0, 212, 170, 0.55) !important;
    color: var(--hp-secondary) !important;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 1;
}

.cta-section-modern .btn-outline-light:hover {
    background: rgba(0, 212, 170, 0.12) !important;
    border-color: var(--hp-secondary) !important;
    box-shadow: 0 0 24px var(--hp-glow-teal) !important;
    transform: translateY(-4px) !important;
}


/* ─── WAVE DIVIDERS ─── */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
}


/* ─── SERVICES SHOWCASE BACKGROUND ─── */
.services-showcase {
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%) !important;
}

.services-showcase .btn-outline-primary {
    border-color: var(--hp-primary) !important;
    color: var(--hp-primary) !important;
    transition: all 0.3s ease !important;
}

.services-showcase .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-secondary)) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 8px 24px var(--hp-glow-blue) !important;
    transform: translateY(-3px) !important;
}


/* ─── CLIENT PROOF SECTION ─── */
.client-proof-section {
    background: linear-gradient(180deg, #fafbff 0%, #f5f3ff 100%) !important;
}


/* ─── TECH STACK SECTION ─── */
.tech-stack-section {
    background: linear-gradient(180deg, #f0f4ff 0%, #f8f9fa 100%) !important;
}


/* ─── QUICK WIN SECTION ─── */
.quick-win-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%) !important;
    border-bottom: none !important;
}


/* ─── "WHY CHOOSE US" heading underline ─── */
.quick-win-section h2,
.services-showcase h2,
.client-proof-section h2,
.testimonials-section h2,
.tech-stack-section h2 {
    position: relative;
    display: inline-block;
}

.quick-win-section .col-12 h2::after,
.services-showcase .text-center h2::after,
.client-proof-section .text-center h2::after,
.testimonials-section .text-center h2::after,
.tech-stack-section .text-center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--hp-primary), var(--hp-secondary));
    border-radius: 2px;
}


/* ─── GENERAL PAGE LOADER ─── */
#page-loader .loader-ring {
    border-top-color: var(--hp-primary) !important;
    border-right-color: var(--hp-secondary) !important;
}


/* ──────────────────────────────────────────────────── */
/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 768px) {
    .fullscreen-container h1 {
        font-size: 1.9rem;
    }

    .metric-value {
        font-size: 2.4rem !important;
    }

    .trust-badge-item {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-impact-badge {
        padding: 10px 14px;
        gap: 8px;
    }

    .cta-section-modern::before,
    .cta-section-modern::after {
        display: none;
    }
}

/* ─── ACCESSIBILITY ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}