*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ink: #1a1208;
    --navy: #f9f7f4;
    --navy2: #f2ede6;
    --navy3: #ede5d8;
    --card: #ffffff;
    --layout-max-width: 1320px;
    --layout-side-padding: clamp(16px, 3.8vw, 44px);

    --cyan: #f47c20;
    --cyan2: #f9a050;
    --violet: #e86c10;
    --violet2: #fbb96a;
    --pink: #f59240;
    --amber: #f47c20;
    --green: #f5a623;
    --coral: #e8580a;

    --white: #1a1208;
    --gray: #7a6650;
    --muted: rgba(60, 40, 15, .65);
    --border: rgba(244, 124, 32, .15);

    --g-cyan-violet: linear-gradient(135deg, #f47c20, #e86c10);
    --g-violet-pink: linear-gradient(135deg, #e86c10, #f59240);
    --g-cyan-green: linear-gradient(135deg, #f47c20, #f5a623);
    --g-amber-coral: linear-gradient(135deg, #f5a623, #e8580a);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #f9f7f4;
    color: #1a1208;
    overflow-x: hidden;
    line-height: 1.6;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .18;
}

/* GRID BG */
.grid-bg {
    position: relative;
    background-image:
        linear-gradient(rgba(244, 124, 32, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 124, 32, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 26s linear infinite;
}

@keyframes gridDrift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 64px, 64px 0;
    }
}

/* ══════════ NAV ══════════ */
nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 75px;
    background: rgba(249, 247, 244, 0);
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
}

nav.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom-color: rgba(244, 124, 32, .12);
    box-shadow: 0 1px 32px rgba(0, 0, 0, .08);
}

.nav-logo {
    margin-top: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #1a1208;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.15;
    animation: fadeDown .7s .1s both;
    transition: transform .25s ease, filter .25s ease;
    height: 10px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(244, 124, 32, 0.2));
    cursor: pointer;
}

#navbar a {
    display: flex;
    align-items: center;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--layout-max-width), calc(100% - (var(--layout-side-padding) * 2)));
    margin-inline: auto;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    gap: 1rem;
}

.nav-logo span {
    display: block;
    font-size: .54rem;
    font-weight: 300;
    letter-spacing: 5px;
    color: #f47c20;
    opacity: .9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeDown .7s .2s both;
}

.nav-links a {
    color: #3a2810;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    letter-spacing: .3px;
    transition: color .22s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--g-cyan-violet);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s;
}

.nav-links a:hover {
    color: #f47c20;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-drop {
    color: #7a6650;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: color .22s;
    position: relative;
}

.nav-drop:hover {
    color: #f47c20;
}

.nav-drop::after {
    content: ' ▾';
    font-size: .62rem;
}

.btn-cta {
    background: linear-gradient(135deg, #f47c20, #e86c10);
    color: #ffffff !important;
    padding: .48rem 1.3rem;
    border-radius: 5px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .28s;
    box-shadow: 0 4px 18px rgba(244, 124, 32, .3);
}

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

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

.btn-cta:hover {
    box-shadow: 0 8px 28px rgba(244, 124, 32, .45);
    transform: translateY(-1px);
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-title {
    color: #3a2810;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(244, 124, 32, .15);
    border-radius: 8px;
    padding: 10px 0;
    width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #3a2810;
    text-decoration: none;
    transition: all .18s;
}

.dropdown-menu a:hover {
    background: rgba(244, 124, 32, .07);
    color: #f47c20;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ══════════ HERO ══════════ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: unset;
    padding-top: clamp(60px, 7vh, 120px);
    padding-bottom: clamp(30px, 5vh, 80px);
    padding-left: 24px;
    padding-right: 24px;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 65% 55% at 50% 42%, rgba(244, 124, 32, .12) 0%, transparent 60%),
        radial-gradient(ellipse 38% 36% at 15% 75%, rgba(232, 108, 16, .08) 0%, transparent 60%),
        radial-gradient(ellipse 35% 32% at 85% 70%, rgba(245, 166, 35, .07) 0%, transparent 55%),
        radial-gradient(ellipse 28% 28% at 70% 20%, rgba(244, 124, 32, .05) 0%, transparent 55%);
    animation: heroPulse 7s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        opacity: .9
    }

    50% {
        opacity: 1
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: .42rem 1.1rem;
    border-radius: 30px;
    background: rgba(244, 124, 32, .08);
    border: 1px solid rgba(244, 124, 32, .25);
    color: #e86c10;
    margin-bottom: clamp(.6rem, 1.5vh, 1.6rem);
    animation: fadeUp .7s .35s both;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f47c20;
    animation: blinkDot 1.4s ease-in-out infinite;
}

@keyframes blinkDot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(244, 124, 32, .5)
    }

    50% {
        opacity: .4;
        box-shadow: 0 0 0 5px rgba(244, 124, 32, 0)
    }
}

.hero h1 {
    font-size: clamp(1.9rem, 4.8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.07;
    max-width: 820px;
    margin-bottom: clamp(.5rem, 1.5vh, 1.5rem);
    letter-spacing: -.6px;
    color: #1a1208;
    animation: fadeUp .75s .55s both;
}

.hero h1 .hl {
    background: var(--g-cyan-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 .hl::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--g-cyan-violet);
    border-radius: 2px;
    animation: lineGrow 1.1s 1.4s both;
    transform-origin: left;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.hero p {
    color: var(--muted);
    font-size: .97rem;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.82;
    margin-bottom: clamp(.8rem, 2vh, 2.4rem);
    animation: fadeUp .75s .75s both;
}

.btn-wrap {
    position: relative;
    display: inline-block;
    animation: fadeUp .75s .95s both;
}

.btn-primary {
    background: linear-gradient(135deg, #f47c20, #e86c10);
    color: #fff;
    padding: .88rem 2.4rem;
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

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

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(244, 124, 32, .4), 0 8px 20px rgba(232, 108, 16, .3);
}

.btn-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 12px;
    border: 1.5px solid rgba(244, 124, 32, .5);
    animation: ripplePulse 2.5s ease-out infinite 2s;
    pointer-events: none;
}

@keyframes ripplePulse {
    0% {
        transform: scale(1);
        opacity: .6
    }

    100% {
        transform: scale(1.75);
        opacity: 0
    }
}

.grid-floor {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 210%;
    height: 420px;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(244, 124, 32, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 124, 32, .1) 1px, transparent 1px);
    background-size: 66px 66px;
    transform: translateX(-50%) perspective(560px) rotateX(62deg);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, .15) 0%, transparent 88%);
    animation: floorMove 4s linear infinite;
}

@keyframes floorMove {
    from {
        background-position: 0 0, 0 0
    }

    to {
        background-position: 0 66px, 0 0
    }
}

/* ══════════ TRUSTED ══════════ */
.trusted {
    padding-top: clamp(20px, 3vh, 55px);
    padding-bottom: clamp(20px, 3vh, 55px);
    padding-left: 5%;
    padding-right: 5%;
    background: linear-gradient(180deg, #f2ede6 0%, #f9f7f4 100%);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.trusted-label {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #1a1208;
    margin-bottom: 2.8rem;
    margin-top: 0;
    font-weight: 500;
}

.logos-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: logoSpin 22s linear infinite;
    width: max-content;
}

.logo-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(60, 40, 15, .5);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .3s, text-shadow .3s;
}

.logo-item:hover {
    color: #f47c20;
    text-shadow: 0 0 22px rgba(244, 124, 32, .3);
}

@keyframes logoSpin {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
    padding: 64px 5%;
    background: #ede5d8;
    border-top: 1px solid rgba(244, 124, 32, .1);
    border-bottom: 1px solid rgba(244, 124, 32, .1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 80% at 20% 50%, rgba(244, 124, 32, .06), transparent),
        radial-gradient(ellipse 55% 80% at 80% 50%, rgba(232, 108, 16, .06), transparent);
}

.stat {
    flex: 1;
    min-width: 170px;
    text-align: center;
    padding: 1rem 2.4rem;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s, transform .55s;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(244, 124, 32, .2), transparent);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .38rem;
    letter-spacing: -2px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat:nth-child(1) .stat-num {
    background: linear-gradient(135deg, #f47c20, #fbb96a);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat:nth-child(2) .stat-num {
    background: linear-gradient(135deg, #f5a623, #f47c20);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat:nth-child(3) .stat-num {
    background: linear-gradient(135deg, #e86c10, #f59240);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat:nth-child(4) .stat-num {
    background: linear-gradient(135deg, #f47c20, #e8580a);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-label {
    font-size: .72rem;
    color: #7a6650;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ══════════ SECTION BASE ══════════ */
.section {
    padding: 116px 5%;
}

.section-label {
    font-size: .66rem;
    letter-spacing: 4.5px;
    font-weight: 700;
    color: #e86c10;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e86c10);
}

.section-label::after {
    transform: rotate(180deg);
}

.section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.14;
    margin-bottom: 1rem;
    letter-spacing: -.3px;
    color: #1a1208;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s .1s, transform .65s .1s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.grad {
    background: linear-gradient(135deg, #f47c20, #e86c10);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
    line-height: 1.85;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s .2s, transform .65s .2s;
}

.section-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════ FEATURE CARDS ══════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1020px;
    margin: 0 auto;
}

.feature {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .55s, transform .55s, border-color .3s, box-shadow .3s;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(244, 124, 32, .04), transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    border-radius: 18px;
}

.feature:hover::before {
    opacity: 1;
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
}

.feature:nth-child(1) {
    border-top: 2px solid #f47c20
}

.feature:nth-child(1):hover {
    box-shadow: 0 18px 50px rgba(244, 124, 32, .15)
}

.feature:nth-child(2) {
    border-top: 2px solid #e86c10
}

.feature:nth-child(2):hover {
    box-shadow: 0 18px 50px rgba(232, 108, 16, .15)
}

.feature:nth-child(3) {
    border-top: 2px solid #f59240
}

.feature:nth-child(3):hover {
    box-shadow: 0 18px 50px rgba(245, 146, 64, .15)
}

.feature:nth-child(4) {
    border-top: 2px solid #f47c20
}

.feature:nth-child(4):hover {
    box-shadow: 0 18px 50px rgba(244, 124, 32, .15)
}

.feature:nth-child(5) {
    border-top: 2px solid #f5a623
}

.feature:nth-child(5):hover {
    box-shadow: 0 18px 50px rgba(245, 166, 35, .15)
}

.feature:nth-child(6) {
    border-top: 2px solid #fbb96a
}

.feature:nth-child(6):hover {
    box-shadow: 0 18px 50px rgba(251, 185, 106, .15)
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-size: 1.7rem;
    transition: transform .32s;
}

.feature:nth-child(1) .feature-icon {
    background: rgba(244, 124, 32, .1);
    border: 1px solid rgba(244, 124, 32, .22);
    box-shadow: 0 4px 20px rgba(244, 124, 32, .18)
}

.feature:nth-child(2) .feature-icon {
    background: rgba(232, 108, 16, .1);
    border: 1px solid rgba(232, 108, 16, .22);
    box-shadow: 0 4px 20px rgba(232, 108, 16, .18)
}

.feature:nth-child(3) .feature-icon {
    background: rgba(245, 146, 64, .1);
    border: 1px solid rgba(245, 146, 64, .22);
    box-shadow: 0 4px 20px rgba(245, 146, 64, .15)
}

.feature:nth-child(4) .feature-icon {
    background: rgba(244, 124, 32, .1);
    border: 1px solid rgba(244, 124, 32, .22);
    box-shadow: 0 4px 20px rgba(244, 124, 32, .15)
}

.feature:nth-child(5) .feature-icon {
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .22);
    box-shadow: 0 4px 20px rgba(245, 166, 35, .15)
}

.feature:nth-child(6) .feature-icon {
    background: rgba(251, 185, 106, .1);
    border: 1px solid rgba(251, 185, 106, .22);
    box-shadow: 0 4px 20px rgba(251, 185, 106, .15)
}

.feature:hover .feature-icon {
    transform: translateY(-8px) rotate(-7deg) scale(1.14);
}

.feature h4 {
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: .45rem;
    letter-spacing: .15px;
    color: #1a1208;
}

.feature p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.72;
}

/* ══════════ SOLUTIONS ══════════ */
.solutions {
    background: #f2ede6;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 32, .05), transparent 65%);
    pointer-events: none;
}

.solutions::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 108, 16, .04), transparent 65%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 1060px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-left: 3px solid transparent;
    border-radius: 14px;
    padding: 1.8rem 1.8rem 1.8rem 1.6rem;
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .5s, transform .4s, border-color .3s, box-shadow .3s;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .1);
}

.service-card .card-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    opacity: .05;
    line-height: 1;
    pointer-events: none;
    color: #1a1208;
    transition: opacity .3s;
}

.service-card:hover .card-num {
    opacity: .1;
}

.shine {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 124, 32, .06), transparent);
    transform: skewX(-22deg);
    transition: left .65s;
    pointer-events: none;
}

.service-card:hover .shine {
    left: 140%;
}

.service-card:nth-child(1) {
    border-left-color: #f47c20
}

.service-card:nth-child(1):hover {
    box-shadow: 0 12px 44px rgba(244, 124, 32, .15)
}

.service-card:nth-child(2) {
    border-left-color: #e86c10
}

.service-card:nth-child(2):hover {
    box-shadow: 0 12px 44px rgba(232, 108, 16, .15)
}

.service-card:nth-child(3) {
    border-left-color: #f5a623
}

.service-card:nth-child(3):hover {
    box-shadow: 0 12px 44px rgba(245, 166, 35, .14)
}

.service-card:nth-child(4) {
    border-left-color: #f59240
}

.service-card:nth-child(4):hover {
    box-shadow: 0 12px 44px rgba(245, 146, 64, .14)
}

.service-card:nth-child(5) {
    border-left-color: #f47c20
}

.service-card:nth-child(5):hover {
    box-shadow: 0 12px 44px rgba(244, 124, 32, .14)
}

.service-card:nth-child(6) {
    border-left-color: #fbb96a
}

.service-card:nth-child(6):hover {
    box-shadow: 0 12px 44px rgba(251, 185, 106, .14)
}

.service-card:nth-child(7) {
    border-left-color: #e8580a
}

.service-card:nth-child(7):hover {
    box-shadow: 0 12px 44px rgba(232, 88, 10, .14)
}

.service-card:nth-child(8) {
    border-left-color: #f9a050
}

.service-card:nth-child(8):hover {
    box-shadow: 0 12px 44px rgba(249, 160, 80, .14)
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform .3s, box-shadow .3s;
}

.service-card:nth-child(1) .service-icon {
    background: rgba(244, 124, 32, .12);
    border: 1px solid rgba(244, 124, 32, .25);
    box-shadow: 0 4px 14px rgba(244, 124, 32, .2)
}

.service-card:nth-child(2) .service-icon {
    background: rgba(232, 108, 16, .12);
    border: 1px solid rgba(232, 108, 16, .25);
    box-shadow: 0 4px 14px rgba(232, 108, 16, .2)
}

.service-card:nth-child(3) .service-icon {
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .25);
    box-shadow: 0 4px 14px rgba(245, 166, 35, .18)
}

.service-card:nth-child(4) .service-icon {
    background: rgba(245, 146, 64, .1);
    border: 1px solid rgba(245, 146, 64, .25);
    box-shadow: 0 4px 14px rgba(245, 146, 64, .16)
}

.service-card:nth-child(5) .service-icon {
    background: rgba(244, 124, 32, .1);
    border: 1px solid rgba(244, 124, 32, .25);
    box-shadow: 0 4px 14px rgba(244, 124, 32, .16)
}

.service-card:nth-child(6) .service-icon {
    background: rgba(251, 185, 106, .1);
    border: 1px solid rgba(251, 185, 106, .25);
    box-shadow: 0 4px 14px rgba(251, 185, 106, .16)
}

.service-card:nth-child(7) .service-icon {
    background: rgba(232, 88, 10, .1);
    border: 1px solid rgba(232, 88, 10, .25);
    box-shadow: 0 4px 14px rgba(232, 88, 10, .16)
}

.service-card:nth-child(8) .service-icon {
    background: rgba(249, 160, 80, .1);
    border: 1px solid rgba(249, 160, 80, .25);
    box-shadow: 0 4px 14px rgba(249, 160, 80, .16)
}

.service-card:hover .service-icon {
    transform: scale(1.18) rotate(-7deg);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .38rem;
    letter-spacing: .1px;
    color: #1a1208;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.service-info h4::after {
    content: '→';
    font-size: .8rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .2s, transform .2s;
}

.service-card:hover .service-info h4::after {
    opacity: .5;
    transform: translateX(0);
}

.service-info p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65;
}

.solutions-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ══════════ TESTIMONIALS ══════════ */
.testimonials {
    padding: 116px 5%;
    overflow: hidden;
    position: relative;
    background: #f9f7f4;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 62% 55% at 55% 50%, rgba(244, 124, 32, .06), transparent 72%);
}

.testi-layout {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 360px) 1fr;
    gap: 2.6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.testi-header {
    margin-bottom: 1.8rem;
}

.testi-header h2 {
    max-width: 420px;
    font-size: clamp(2.5rem, 4.3vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .7rem;
    color: #1a1208;
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .65s, transform .65s;
}

.testi-header h2.visible {
    opacity: 1;
    transform: translateX(0);
}

.testi-header p {
    color: rgba(60, 40, 15, .75);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    max-width: 330px;
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

.testi-btn {
    width: 42px;
    height: 42px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #3a2810;
    cursor: pointer;
    font-size: 2.2rem;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color .2s;
}

#testiNext {
    border: none;
}

.testi-btn:hover {
    color: #f47c20;
}

.testi-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.testi-dots {
    display: none;
}

.testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(60, 40, 15, .2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.testi-dot.active {
    transform: scale(1.35);
    background: #f47c20;
}

.testi-counter {
    display: none;
}

.testi-counter span {
    color: #f47c20;
}

.testi-viewport {
    overflow: hidden;
    width: 100%;
}

.testi-track {
    display: flex;
    gap: 1.4rem;
    transition: transform .55s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.testi-card {
    flex: 0 0 clamp(380px, 31vw, 450px);
    background: #ffffff;
    border-radius: 9px;
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    padding: 1.4rem 1.25rem;
    min-height: 356px;
    color: #1a1208;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s, transform .45s, box-shadow .25s;
}

.testi-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.review-head {
    font-size: clamp(1.25rem, 1.7vw, 1.85rem);
    line-height: 1.25;
    font-weight: 500;
    color: #1a1208;
    margin-bottom: .65rem;
}

.quote {
    font-size: 1.03rem;
    line-height: 1.55;
    color: #3a2810;
    margin-bottom: 1.8rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.rv-stars {
    color: #f47c20;
    display: flex;
    gap: 2px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.author-name {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1a1208;
}

.author-loc {
    font-size: .92rem;
    color: rgba(60, 40, 15, .6);
    margin-top: .1rem;
}

/* ══════════ STORIES ══════════ */
.stories {
    background: #ede5d8;
    padding: 116px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stories::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(244, 124, 32, .05), transparent 60%), radial-gradient(ellipse 50% 60% at 90% 50%, rgba(232, 108, 16, .04), transparent 60%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.metric-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 18px;
    padding: 2.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: default;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s, transform .5s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.metric-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
}

.metric-card:nth-child(1) {
    border-top: 2px solid #f47c20
}

.metric-card:nth-child(2) {
    border-top: 2px solid #e86c10
}

.metric-card:nth-child(3) {
    border-top: 2px solid #f5a623
}

.metric-card:nth-child(4) {
    border-top: 2px solid #f47c20
}

.metric-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    pointer-events: none;
}

.metric-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(244, 124, 32, .07), transparent)
}

.metric-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(232, 108, 16, .07), transparent)
}

.metric-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(245, 166, 35, .06), transparent)
}

.metric-card:nth-child(4)::before {
    background: radial-gradient(circle, rgba(244, 124, 32, .06), transparent)
}

.metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: transform .3s;
}

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

.metric-card:nth-child(1) .metric-icon {
    background: rgba(244, 124, 32, .12);
    border: 1px solid rgba(244, 124, 32, .25)
}

.metric-card:nth-child(2) .metric-icon {
    background: rgba(232, 108, 16, .12);
    border: 1px solid rgba(232, 108, 16, .25)
}

.metric-card:nth-child(3) .metric-icon {
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .25)
}

.metric-card:nth-child(4) .metric-icon {
    background: rgba(244, 124, 32, .1);
    border: 1px solid rgba(244, 124, 32, .25)
}

.metric-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .35rem;
    letter-spacing: -1px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-card:nth-child(1) .metric-num {
    background: linear-gradient(135deg, #f47c20, #fbb96a)
}

.metric-card:nth-child(2) .metric-num {
    background: linear-gradient(135deg, #e86c10, #f59240)
}

.metric-card:nth-child(3) .metric-num {
    background: linear-gradient(135deg, #f5a623, #f47c20)
}

.metric-card:nth-child(4) .metric-num {
    background: linear-gradient(135deg, #f47c20, #e8580a)
}

.metric-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .4rem;
}

.metric-sub {
    font-size: .72rem;
    color: rgba(60, 40, 15, .35);
}

.story-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: 1.3rem;
    position: relative;
    z-index: 1;
}

.story-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 200px;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .55s, transform .55s, box-shadow .3s;
}

.story-card.visible {
    opacity: 1;
    transform: scale(1);
}

.story-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .2);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 8, .7) 0%, rgba(26, 18, 8, .15) 60%, transparent 100%);
}

.story-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all .28s;
    backdrop-filter: blur(4px);
    animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 32, .35)
    }

    50% {
        box-shadow: 0 0 0 18px rgba(244, 124, 32, 0)
    }
}

.story-card:hover .play-circle {
    background: rgba(244, 124, 32, .45);
    border-color: #f47c20;
    transform: scale(1.18);
    box-shadow: 0 0 30px rgba(244, 124, 32, .55);
}

.story-label {
    position: absolute;
    bottom: 16px;
    left: 18px;
    z-index: 3;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.story-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .22rem .6rem;
    border-radius: 20px;
    background: rgba(244, 124, 32, .18);
    border: 1px solid rgba(244, 124, 32, .3);
    color: #f47c20;
}

.story-placeholder {
    border-radius: 16px;
    height: 200px;
    background: rgba(255, 255, 255, .7);
    border: 1.5px dashed rgba(244, 124, 32, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    color: #7a6650;
    cursor: pointer;
    transition: border-color .3s, background .3s, transform .3s;
}

.story-placeholder:hover {
    border-color: rgba(244, 124, 32, .4);
    background: rgba(244, 124, 32, .04);
    transform: scale(1.03);
    color: #1a1208;
}

.story-placeholder .ph-icon {
    font-size: 2rem;
    transition: transform .3s;
}

.story-placeholder:hover .ph-icon {
    transform: scale(1.2);
}

.story-placeholder .ph-text {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.story-placeholder .ph-sub {
    font-size: .7rem;
    color: var(--muted);
}

.dots {
    display: flex;
    gap: .6rem;
    justify-content: center;
    margin-top: 2.2rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(60, 40, 15, .18);
    transition: all .3s;
}

.dot.active {
    background: #f47c20;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(244, 124, 32, .5);
}

/* ══════════ CTA ══════════ */
.cta-section {
    padding: 96px 5%;
    background: #f9f7f4;
}

.cta-outer {
    max-width: 940px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f47c20, #e86c10, #f59240, #f5a623);
    animation: ctaBorderPulse 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .75s, transform .75s;
}

.cta-outer.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ctaBorderPulse {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.25) drop-shadow(0 0 20px rgba(244, 124, 32, .3))
    }
}

.cta-box {
    background: linear-gradient(145deg, #ffffff, #fdf8f3);
    border-radius: 22px;
    padding: 5.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 32, .06), transparent 65%);
    pointer-events: none;
    animation: ctaOrb1 8s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 108, 16, .06), transparent 65%);
    pointer-events: none;
    animation: ctaOrb2 8s ease-in-out infinite;
}

@keyframes ctaOrb1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 20px)
    }
}

@keyframes ctaOrb2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-30px, -20px)
    }
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e86c10;
    padding: .36rem 1rem;
    border-radius: 30px;
    background: rgba(244, 124, 32, .08);
    border: 1px solid rgba(244, 124, 32, .2);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #1a1208;
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
}

.cta-box p {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.6rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: linear-gradient(135deg, #f47c20, #e86c10);
    color: #fff;
    padding: .92rem 2.4rem;
    border-radius: 7px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

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

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

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(244, 124, 32, .4), 0 6px 18px rgba(232, 108, 16, .3);
}

.btn-ghost {
    background: transparent;
    color: rgba(60, 40, 15, .65);
    padding: .9rem 2rem;
    border-radius: 7px;
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(60, 40, 15, .2);
    transition: all .28s;
}

.btn-ghost:hover {
    border-color: #f47c20;
    color: #e86c10;
    background: rgba(244, 124, 32, .06);
    transform: translateY(-2px);
}

/* ══════════ FOOTER ══════════ */
footer {
    background: #1a1208;
    border-top: 1px solid rgba(244, 124, 32, .12);
    padding: 3rem 0 1.8rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2rem;
    width: min(var(--layout-max-width), calc(100% - (var(--layout-side-padding) * 2)));
    margin-inline: auto;
}

.footer-links {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.footer-links a,
.ft-links a {
    color: white !important;
    font-size: .8rem;
    text-decoration: none;
    position: relative;
    letter-spacing: .3px;
    transition: color .22s;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--g-cyan-violet);
    transition: width .28s;
}

.footer-links a:hover,
.ft-links a:hover {
    color: #f9a050 !important;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a.active,
.ft-links a.active {
    color: #f9a050 !important;
}

.footer-socials {
    display: flex;
    gap: .8rem;
    color: white !;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    color: white;
    cursor: pointer;
    transition: all .26s;
}

.social-icon:hover {
    border-color: #f47c20;
    color: #f47c20;
    transform: translateY(-3px) scale(1.12);
    box-shadow: 0 6px 20px rgba(244, 124, 32, .25);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    width: min(var(--layout-max-width), calc(100% - (var(--layout-side-padding) * 2)));
    margin-inline: auto;
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ffffff;
}

.footer-copy {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .3px;
}

/* ══════════ KEYFRAMES ══════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }

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

/* ══════════ RESPONSIVE ══════════ */
@media (max-width:1200px) {
    .testi-layout {
        grid-template-columns: minmax(220px, 300px) 1fr;
        gap: 1.8rem;
    }

    .testi-card {
        flex-basis: clamp(340px, 43vw, 420px);
        min-height: 325px;
    }
}

@media (max-width:992px) {
    .testimonials {
        padding: 92px 5%;
    }

    .testi-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .testi-header {
        margin-bottom: 1rem;
    }

    .testi-header h2 {
        max-width: 700px;
    }

    .testi-card {
        flex-basis: min(85vw, 500px);
        min-height: 280px;
    }

    #navbar {
        padding: 0 !important;
        z-index: 1000;
    }

    #navbar .menu-toggle {
        display: inline-flex;
    }

    #navbar #nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 998;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .2rem !important;
        padding: 1rem 5vw 1.3rem;
        background: rgba(255, 252, 248, .98);
        border-bottom: 1px solid rgba(244, 124, 32, .12);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .24s, visibility .24s, transform .24s;
    }

    #navbar #nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #navbar #nav-links>a,
    #navbar #nav-links .dropdown-title {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: .78rem .2rem;
        font-size: .95rem;
        color: #1a1208;
    }

    #navbar #nav-links a::after {
        display: none !important;
    }

    #navbar #nav-links .dropdown {
        width: 100%;
        display: block !important;
    }

    #navbar #nav-links .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
    }

    #navbar #nav-links .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 8px;
        border: 1px solid transparent;
        margin-top: .3rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height .3s ease, opacity .25s, visibility .25s, transform .25s, border-color .25s;
    }

    #navbar #nav-links .dropdown.open .dropdown-menu {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-color: rgba(244, 124, 32, .18);
        padding: .35rem 0;
    }

    #navbar #nav-links .dropdown-menu a {
        padding: .72rem .95rem;
        font-size: .88rem;
    }

    #navbar #nav-links .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: .5rem;
    }

    .hero-inner,
    .mission-inner,
    .service-inner,
    .split {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width:900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 80px 5%;
    }

    .stats-bar {
        padding: 44px 5%;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 3.5rem 1.8rem;
    }

    .testi-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .testi-header p {
        font-size: 1rem;
    }

    .testi-track {
        gap: 1rem;
    }

    .testi-card {
        flex-basis: 100%;
        min-height: auto;
    }

    .review-head {
        font-size: 1.5rem;
    }

    .quote {
        font-size: .95rem;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .author-loc {
        font-size: .88rem;
    }

    #navbar .nav-logo {
        height: 55px !important;
        margin-top: 8px;
    }

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

    .hero-left p,
    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .believe-grid,
    .features-grid,
    .services-grid,
    .mission-boxes,
    .cards-grid,
    .story-cards-row {
        grid-template-columns: 1fr !important;
    }

    .step {
        grid-template-columns: 1fr !important;
    }

    .cta-box {
        padding: 3.2rem 1.5rem !important;
    }

    .ft-top,
    .footer-top,
    .ft-bottom,
    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }
}

@media (max-width:520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

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

    .stat+.stat::before {
        display: none;
    }

    .story-cards-row {
        grid-template-columns: 1fr;
    }

    #navbar #nav-links {
        top: 68px;
        max-height: calc(100vh - 68px);
        padding: .95rem 1rem 1.2rem;
    }

    .btn-primary,
    .btn-dark,
    .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero h1,
    .hero-left h1 {
        font-size: clamp(1.85rem, 9vw, 2.6rem) !important;
    }
}

/* MENU TOGGLE */
body.menu-open {
    overflow: hidden;
}

#navbar .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 124, 32, .25);
    background: rgba(255, 252, 248, .95);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    z-index: 1002;
}

#navbar .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #1a1208;
    transition: transform .25s, opacity .25s;
}

#navbar .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#navbar .menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

#navbar .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE STABILITY OVERRIDES */
:root {
    --nav-offset: 72px;
}

@media (max-width:992px) {
    #navbar #nav-links {
        top: var(--nav-offset, 72px);
        max-height: calc(100dvh - var(--nav-offset, 72px));
        overscroll-behavior: contain;
    }
}

@media (max-width:768px) {
    .hero {
        padding-top: 44px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        width: min(100%, 34rem);
    }

    .hero-tag {
        font-size: .58rem;
        letter-spacing: 2.8px;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.9rem) !important;
        line-height: 1.08;
        max-width: 100%;
    }

    .hero p {
        font-size: .92rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .section,
    .testimonials,
    .cta-section,
    .trusted {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width:520px) {
    #navbar #nav-links {
        top: var(--nav-offset, 68px);
        max-height: calc(100dvh - var(--nav-offset, 68px));
        padding: .95rem 1rem 1.2rem;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-tag {
        letter-spacing: 2px;
    }
}

@media (max-width:992px) {
    #navbar {
        padding: 0 14px !important;
        z-index: 1000;
    }

    #navbar .menu-toggle {
        display: inline-flex;
    }

    #navbar #nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 998;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .2rem !important;
        padding: 1rem 5vw 1.3rem;
        background: rgba(255, 251, 246, .98);
        border-bottom: 1px solid rgba(244, 124, 32, .12);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .24s, visibility .24s, transform .24s;
    }

    #navbar #nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #navbar #nav-links>a,
    #navbar #nav-links .dropdown-title {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: .78rem .2rem;
        font-size: .95rem;
    }

    #navbar #nav-links a::after {
        display: none !important;
    }

    #navbar #nav-links .dropdown {
        width: 100%;
        display: block !important;
    }

    #navbar #nav-links .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
    }

    #navbar #nav-links .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 8px;
        border: 1px solid transparent;
        margin-top: .3rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height .3s ease, opacity .25s, visibility .25s, transform .25s, border-color .25s;
    }

    #navbar #nav-links .dropdown.open .dropdown-menu {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-color: rgba(244, 124, 32, .18);
        padding: .35rem 0;
    }

    #navbar #nav-links .dropdown-menu a {
        padding: .72rem .95rem;
        font-size: .88rem;
    }

    #navbar #nav-links .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: .5rem;
    }
}

@media (max-width:768px) {

    #navbar,
    footer {
        padding-inline: max(14px, var(--layout-side-padding)) !important;
    }

    #navbar .nav-logo {
        height: 58px !important;
        margin-top: 8px;
    }

    .ft-top,
    .ft-bottom {
        justify-content: center !important;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .main {
        padding: 96px 5% 60px;
    }
}

@media (max-width:520px) {
    #navbar #nav-links {
        top: 68px;
        max-height: calc(100vh - 68px);
        padding: .95rem 1rem 1.2rem;
    }
}

.footer-socials {
    display: flex;
    gap: .8rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .26s;
}

.social-icon:hover {
    border-color: #f47c20;
    color: #f47c20;
    transform: translateY(-3px) scale(1.12);
    box-shadow: 0 6px 20px rgba(244, 124, 32, .25);
}

/* ================================================================
   LOGO HOVER ANIMATION — Guaranteed working
   Paste at the bottom of any page CSS
   ================================================================ */

/* ── Wrap the logo tag with this structure in HTML:
   <a href="/" class="nav-logo logo-wrap">
       <img src="your-logo.png" class="logo-img" />
       <span class="logo-ring"></span>
       <span class="logo-shine"></span>
   </a>
   ──────────────────────────────────────────────── */

/* Wrapper */
.logo-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

/* The actual logo image */
.logo-wrap .logo-img,
.logo-wrap img {
    margin-top: 25px;
    height: 125px;
    display: block;
    position: relative;
    z-index: 2;
    transition:
        transform .38s cubic-bezier(.34, 1.56, .64, 1),
        filter .38s ease;
    transform-origin: center bottom;
}

/* Hover: lift + bounce + orange glow */
.logo-wrap:hover .logo-img,
.logo-wrap:hover img {
    transform: translateY(-4px) scale(1.07);
    filter:
        drop-shadow(0 0 10px rgba(238, 106, 5, 0.348)) drop-shadow(0 0 24px rgba(239, 107, 6, 0.3));
}

/* Click press */
.logo-wrap:active .logo-img,
.logo-wrap:active img {
    transform: scale(.95) translateY(0px);
    filter: drop-shadow(0 0 5px rgba(244, 124, 32, .4));
    transition: transform .1s, filter .1s;
}


@keyframes logoRipple {
    0% {
        inset: 0px;
        border-color: rgba(244, 124, 32, .8);
        opacity: 1;
        transform: scale(1);
    }

    100% {
        inset: -14px;
        border-color: rgba(244, 124, 32, 0);
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes logoShimmer {
    0% {
        opacity: 0;
        transform: translateX(-100%) skewX(-10deg);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(200%) skewX(-10deg);
    }
}

/* ── Orange dot that pops in under logo ── */
.logo-dot {
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f47c20;
    pointer-events: none;
    z-index: 4;
    transform: translateX(-50%) scale(0);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 0 8px rgba(244, 124, 32, .6);
}

.logo-wrap:hover .logo-dot {
    transform: translateX(-50%) scale(1);
}

/* ── Page-load bounce-in (fires once) ── */
@keyframes logoBounceIn {
    0% {
        opacity: 0;
        transform: scale(.7) translateY(-8px);
    }

    65% {
        opacity: 1;
        transform: scale(1.08) translateY(0);
    }

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

.logo-wrap .logo-img,
.logo-wrap img {
    animation: logoBounceIn .7s .2s cubic-bezier(.34, 1.56, .64, 1) both;
}