/* ═══════════════════════════════════════════════════════════════
   KicklyKick — AI-Era Digital Marketing · Kick. Click. Convert.
   Dual Theme (System-Based) · AI-First Theme · Unique Layouts
   ═══════════════════════════════════════════════════════════════ */

/* ── THEME: DARK (Default) ── */
:root {
    --bg-0: #06060b;
    --bg-1: #0c0c14;
    --bg-2: #13131e;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-h: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.06);
    --border-h: rgba(255, 255, 255, 0.12);
    --tx-0: #f2f2f8;
    --tx-1: #b0b0c4;
    --tx-2: #6e6e88;
    --accent-1: #7c5cfc;
    --accent-2: #a855f7;
    --accent-3: #f25ca2;
    --glow: rgba(124, 92, 252, 0.15);
    --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --grad-s: linear-gradient(135deg, rgba(124, 92, 252, 0.12), rgba(242, 92, 162, 0.12));
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --img-brightness: 0.85;
    color-scheme: dark;
}

/* ── THEME: LIGHT ── */
@media (prefers-color-scheme: light) {
    :root {
        --bg-0: #f8f7f4;
        --bg-1: #ffffff;
        --bg-2: #f0eeea;
        --bg-card: rgba(0, 0, 0, 0.025);
        --bg-card-h: rgba(0, 0, 0, 0.05);
        --bg-glass: rgba(255, 255, 255, 0.7);
        --border: rgba(0, 0, 0, 0.07);
        --border-h: rgba(0, 0, 0, 0.14);
        --tx-0: #1a1a2e;
        --tx-1: #4a4a6a;
        --tx-2: #8a8aa0;
        --accent-1: #6c4de6;
        --accent-2: #9333ea;
        --accent-3: #e14590;
        --glow: rgba(108, 77, 230, 0.1);
        --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
        --grad-s: linear-gradient(135deg, rgba(108, 77, 230, 0.08), rgba(225, 69, 144, 0.08));
        --shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        --img-brightness: 1;
        color-scheme: light;
    }
}

/* ── Manual Theme Override ── */
[data-theme="dark"] {
    --bg-0: #06060b;
    --bg-1: #0c0c14;
    --bg-2: #13131e;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-h: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.06);
    --border-h: rgba(255, 255, 255, 0.12);
    --tx-0: #f2f2f8;
    --tx-1: #b0b0c4;
    --tx-2: #6e6e88;
    --accent-1: #7c5cfc;
    --accent-2: #a855f7;
    --accent-3: #f25ca2;
    --glow: rgba(124, 92, 252, 0.15);
    --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --grad-s: linear-gradient(135deg, rgba(124, 92, 252, 0.12), rgba(242, 92, 162, 0.12));
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --img-brightness: 0.85;
    color-scheme: dark;
}

[data-theme="light"] {
    --bg-0: #f8f7f4;
    --bg-1: #ffffff;
    --bg-2: #f0eeea;
    --bg-card: rgba(0, 0, 0, 0.025);
    --bg-card-h: rgba(0, 0, 0, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.07);
    --border-h: rgba(0, 0, 0, 0.14);
    --tx-0: #1a1a2e;
    --tx-1: #4a4a6a;
    --tx-2: #8a8aa0;
    --accent-1: #6c4de6;
    --accent-2: #9333ea;
    --accent-3: #e14590;
    --glow: rgba(108, 77, 230, 0.1);
    --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --grad-s: linear-gradient(135deg, rgba(108, 77, 230, 0.08), rgba(225, 69, 144, 0.08));
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    --img-brightness: 1;
    color-scheme: light;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-0);
    color: var(--tx-0);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background .4s, color .4s
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block;
    filter: brightness(var(--img-brightness))
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 110px 0;
    position: relative
}

/* ── Typography ── */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 14px;
}

.big-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.big-title em {
    font-style: italic;
    font-weight: 800
}

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.accent {
    color: var(--accent-1)
}

.strike {
    text-decoration: line-through;
    opacity: .5
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .35s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 30px var(--glow);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--glow)
}

.btn-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: transform .3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(3px)
}

.btn-ghost {
    border: 1.5px solid var(--border-h);
    color: var(--tx-0)
}

.btn-ghost:hover {
    border-color: var(--accent-1);
    background: var(--glow)
}

.btn-block {
    width: 100%;
    justify-content: center
}

/* ══════ LOADER ══════ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-kick {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    display: flex;
    gap: 2px;
}

.loader-kick span {
    display: inline-block;
    opacity: 0;
    animation: letterPop .5s forwards;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-kick span:nth-child(1) {
    animation-delay: .05s
}

.loader-kick span:nth-child(2) {
    animation-delay: .1s
}

.loader-kick span:nth-child(3) {
    animation-delay: .15s
}

.loader-kick span:nth-child(4) {
    animation-delay: .2s
}

.loader-kick span:nth-child(5) {
    animation-delay: .25s
}

.loader-kick span:nth-child(6) {
    animation-delay: .35s
}

.loader-kick span:nth-child(7) {
    animation-delay: .4s
}

.loader-kick span:nth-child(8) {
    animation-delay: .45s
}

.loader-kick span:nth-child(9) {
    animation-delay: .5s
}

.loader-kick span:nth-child(10) {
    animation-delay: .55s
}

.loader-kick span:nth-child(11) {
    animation-delay: .6s
}

.loader-kick span:nth-child(12) {
    animation-delay: .7s
}

.loader-kick span:nth-child(13) {
    animation-delay: .75s
}

.loader-kick span:nth-child(14) {
    animation-delay: .8s
}

.loader-kick span:nth-child(15) {
    animation-delay: .85s
}

.loader-kick span:nth-child(16) {
    animation-delay: .9s
}

.loader-kick span:nth-child(17) {
    animation-delay: .95s
}

.loader-kick span:nth-child(18) {
    animation-delay: 1s
}

.loader-kick span:nth-child(19) {
    animation-delay: 1.05s
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(.7)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

/* ══════ NAVBAR ══════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .35s ease;
}

#navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--tx-1);
    transition: all .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--tx-0)
}

.nav-link.active {
    background: var(--bg-card-h)
}

.cta-nav {
    background: var(--grad) !important;
    color: #fff !important;
    font-weight: 600 !important
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-1);
    font-size: .9rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--accent-1);
    color: var(--accent-1)
}

.theme-toggle .fa-moon {
    display: none
}

.theme-toggle .fa-sun {
    display: block
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: block
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: none
}

/* For system dark mode without data-theme override */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .fa-moon {
        display: block
    }

    :root:not([data-theme="light"]) .theme-toggle .fa-sun {
        display: none
    }
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .theme-toggle .fa-moon {
        display: none
    }

    :root:not([data-theme="dark"]) .theme-toggle .fa-sun {
        display: block
    }
}

.hamburger {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--tx-0);
    border-radius: 2px;
    transition: all .3s
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

/* ══════ HERO ══════ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .3
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -15%;
    right: -8%
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: var(--accent-3);
    bottom: 5%;
    left: -12%
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: var(--accent-2);
    top: 45%;
    left: 35%
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .3;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--accent-1)
}

.hero-eyebrow span {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tx-2)
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 24px
}

.hero-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.hero-line-gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--tx-1);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 32px
}

.hero-desc strong {
    color: var(--tx-0)
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* Hero Visual */
.hero-visual {
    position: relative
}

.hero-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.hero-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg-0));
    opacity: .6;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    animation: floatCard 3s ease-in-out infinite alternate;
}

.hero-float-card i {
    font-size: 1.2rem;
    color: var(--accent-1)
}

.hero-float-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800
}

.hero-float-card span {
    font-size: .72rem;
    color: var(--tx-2)
}

.hfc-1 {
    top: -15px;
    left: -20px;
    animation-delay: 0s
}

.hfc-2 {
    bottom: 30px;
    right: -25px;
    animation-delay: 1.5s
}

.hfc-3 {
    top: 50%;
    left: -30px;
    animation-delay: 0.8s
}

@keyframes floatCard {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-12px)
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-1);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .3
    }

    50% {
        transform: translateY(16px);
        opacity: 1
    }
}

/* ══════ MARQUEE ══════ */
.marquee-strip {
    padding: 18px 0;
    overflow: hidden;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--tx-2);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mq-dot {
    color: var(--accent-1);
    font-size: .6rem
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

/* ══════ AI EDGE ══════ */
#ai-edge {
    background: var(--bg-1);
    position: relative;
}

#ai-edge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--grad);
    opacity: .03;
    filter: blur(120px);
    pointer-events: none;
}

/* ══════ BENEFITS ══════ */
#benefits {
    background: var(--bg-2)
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap
}

.split-desc {
    max-width: 420px;
    color: var(--tx-1);
    font-size: 1rem;
    line-height: 1.7
}

.benefits-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.benefit-card {
    padding: 32px 28px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px)
}

.bc-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}

.bc-large .bc-content {
    padding: 8px 0
}

.bc-img {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 220px
}

.bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--grad-s);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-1);
    margin-bottom: 16px;
}

.bc-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .15;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.bc-large .bc-number {
    position: relative;
    top: auto;
    right: auto;
    opacity: .15;
    margin-bottom: 8px
}

.benefit-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px
}

.benefit-card p {
    font-size: .9rem;
    color: var(--tx-1);
    line-height: 1.7
}

.benefit-card p strong {
    color: var(--tx-0)
}

.bc-accent {
    background: var(--grad-s);
    border-color: rgba(124, 92, 252, .15)
}

/* ══════ STATEMENT ══════ */
#statement {
    padding: 80px 0;
    background: var(--bg-0)
}

.statement-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.statement-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.statement-sub {
    margin-top: 16px;
    font-size: .9rem;
    color: var(--tx-2);
    font-weight: 500
}

/* ══════ SERVICES ACCORDION ══════ */
#services {
    background: var(--bg-1)
}

.section-head {
    margin-bottom: 56px
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto
}

.srv-item {
    border-bottom: 1px solid var(--border);
    transition: all .3s ease;
}

.srv-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    transition: all .2s;
}

.srv-header:hover {
    opacity: .8
}

.srv-num {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent-1);
    min-width: 28px;
}

.srv-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.srv-icon-inline {
    color: var(--accent-1);
    font-size: 1rem;
    opacity: .7;
}

.srv-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--tx-2);
    transition: all .3s;
}

.srv-item.open .srv-toggle {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    transform: rotate(45deg)
}

.srv-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.25, .46, .45, .94), padding .3s;
}

.srv-item.open .srv-body {
    max-height: 400px;
    padding-bottom: 24px
}

.srv-body {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.srv-body-inner {
    flex: 1
}

.srv-body p {
    font-size: .92rem;
    color: var(--tx-1);
    line-height: 1.7;
    margin-bottom: 14px
}

.srv-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.srv-tags span {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    background: var(--bg-card-h);
    color: var(--tx-2);
    letter-spacing: .5px;
}

.srv-img {
    width: 180px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    display: none;
}

.srv-item.open .srv-img {
    display: block
}

.srv-img img {
    width: 100%;
    height: 130px;
    object-fit: cover
}

/* ══════ IMPACT ══════ */
#impact {
    background: var(--bg-0)
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px
}

.impact-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .35s;
}

.impact-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px)
}

.ring-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 16px
}

.ring-wrap svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.rng-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 5
}

.rng-fill {
    fill: none;
    stroke: var(--accent-1);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 326.726;
    stroke-dashoffset: 326.726;
    transition: stroke-dashoffset 2s cubic-bezier(.25, .46, .45, .94);
}

.ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.impact-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px
}

.impact-card p {
    font-size: .78rem;
    color: var(--tx-2)
}

/* Big Counters */
.big-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 48px 40px;
    border-radius: 22px;
    background: var(--grad-s);
    border: 1px solid var(--border);
    margin-bottom: 56px;
}

.big-counter {
    text-align: center
}

.bc-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-lbl {
    font-size: .88rem;
    color: var(--tx-1);
    margin-top: 4px
}

/* Growth Process */
.process-section {
    max-width: 900px;
    margin: 0 auto
}

.process-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.pstep {
    padding: 24px 20px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .35s;
    text-align: center;
}

.pstep:hover {
    border-color: var(--border-h);
    transform: translateY(-4px)
}

.pstep-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.pstep h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.pstep p {
    font-size: .82rem;
    color: var(--tx-1);
    line-height: 1.6;
    margin-bottom: 14px
}

.pstep img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px
}

/* ══════ CASE STUDIES ══════ */
#case-studies {
    background: var(--bg-1)
}

.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.case-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .35s;
}

.case-card:hover {
    border-color: var(--border-h);
    transform: translateY(-5px)
}

.case-img {
    position: relative;
    height: 200px;
    overflow: hidden
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.case-card:hover .case-img img {
    transform: scale(1.05)
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

.case-cat {
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase
}

.case-body {
    padding: 24px
}

.case-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3
}

.case-body>p {
    font-size: .85rem;
    color: var(--tx-1);
    line-height: 1.6;
    margin-bottom: 16px
}

.case-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px
}

.case-stats div {
    text-align: center;
    flex: 1
}

.case-stats strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-stats span {
    font-size: .68rem;
    color: var(--tx-2);
    text-transform: uppercase;
    letter-spacing: .5px
}

.case-bars {
    display: grid;
    gap: 8px
}

.cb {
    display: flex;
    align-items: center;
    gap: 10px
}

.cb-label {
    font-size: .72rem;
    color: var(--tx-2);
    width: 44px
}

.cb-track {
    flex: 1;
    height: 6px;
    border-radius: 10px;
    background: var(--bg-card-h);
    overflow: hidden
}

.cb-fill {
    height: 100%;
    border-radius: 10px;
    background: var(--border-h);
    width: 0;
    transition: width 1.5s ease
}

.cb-fill-accent {
    background: var(--grad)
}

.cb-fill.animated {
    width: var(--tw)
}

/* ══════ TESTIMONIALS ══════ */
#testimonials {
    background: var(--bg-0)
}

.review-slider {
    overflow: hidden
}

.review-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94)
}

.review-card {
    min-width: calc(50% - 12px);
    flex-shrink: 0;
    padding: 32px 28px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all .35s;
}

.review-card:hover {
    border-color: var(--border-h)
}

.review-stars {
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: .88rem;
    display: flex;
    gap: 3px
}

.review-card blockquote {
    font-size: 1rem;
    color: var(--tx-1);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.ra-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: #fff;
}

.review-author strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif
}

.review-author span {
    font-size: .78rem;
    color: var(--tx-2)
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 32px
}

.rv-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--tx-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.rv-btn:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

.rv-dots {
    display: flex;
    gap: 6px
}

.rv-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-h);
    transition: all .3s;
    cursor: pointer
}

.rv-dot.active {
    background: var(--accent-1);
    width: 22px;
    border-radius: 10px
}

/* ══════ CONTACT (DM-FOCUSED) ══════ */
#contact {
    background: var(--bg-1)
}

.contact-dm-layout {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-dm-desc {
    color: var(--tx-1);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-dm-desc strong {
    color: var(--tx-0);
}

.dm-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.dm-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 32px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all .35s ease;
    text-align: left;
    min-width: 260px;
}

.dm-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--glow);
}

.dm-btn>i:first-child {
    font-size: 2rem;
    flex-shrink: 0;
}

.dm-btn strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.dm-btn span {
    font-size: .85rem;
    color: var(--tx-2);
}

.dm-arrow {
    margin-left: auto;
    color: var(--tx-2);
    transition: transform .3s;
}

.dm-btn:hover .dm-arrow {
    transform: translateX(4px);
}

/* Instagram gradient button */
.dm-insta {
    border-color: rgba(225, 48, 108, .2);
}

.dm-insta>i:first-child {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dm-insta:hover {
    border-color: rgba(225, 48, 108, .4);
    background: rgba(225, 48, 108, .06);
}

/* X / Twitter button */
.dm-x {
    border-color: rgba(29, 161, 242, .2);
}

.dm-x>i:first-child {
    color: #1da1f2;
}

.dm-x:hover {
    border-color: rgba(29, 161, 242, .4);
    background: rgba(29, 161, 242, .06);
}

.contact-alt {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-alt-label {
    font-size: .85rem;
    color: var(--tx-2);
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ci-item {
    display: flex;
    gap: 14px;
    align-items: center
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-s);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: .95rem;
    flex-shrink: 0;
}

.ci-item strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif
}

.ci-item span {
    font-size: .85rem;
    color: var(--tx-1)
}

/* ══════ CTA BANNER ══════ */
#cta-banner {
    padding: 60px 0;
    background: var(--bg-0)
}

.cta-block {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
    border-radius: 22px;
    background: var(--grad-s);
    border: 1px solid var(--border);
    overflow: hidden;
    flex-wrap: wrap;
}

.cta-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0
}

.cta-text {
    flex: 1
}

.cta-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px
}

.cta-text p {
    color: var(--tx-1);
    margin-bottom: 20px
}

/* ══════ FOOTER ══════ */
#footer {
    padding: 72px 0 28px;
    background: var(--bg-1);
    border-top: 1px solid var(--border)
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand .logo {
    margin-bottom: 12px
}

.footer-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-brand>p {
    font-size: .85rem;
    color: var(--tx-1);
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-socials {
    display: flex;
    gap: 8px
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-2);
    font-size: .8rem;
    transition: all .3s;
}

.footer-socials a:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 14px
}

.footer-col li {
    margin-bottom: 8px
}

.footer-col a {
    font-size: .85rem;
    color: var(--tx-1);
    transition: color .2s
}

.footer-col a:hover {
    color: var(--accent-1)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--tx-2);
}

.footer-bottom i {
    color: var(--accent-3)
}

/* ══════ REVEAL ══════ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

/* ══════ RESPONSIVE ══════ */
@media(max-width:1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-visual {
        max-width: 500px
    }

    .benefits-mosaic {
        grid-template-columns: 1fr 1fr
    }

    .bc-large {
        grid-column: span 2
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .big-counters {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .cases {
        grid-template-columns: 1fr 1fr
    }

    .dm-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .cta-block {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:768px) {
    section {
        padding: 80px 0
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-0);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
        transform: translateX(100%);
        transition: transform .4s;
        z-index: 2000;
        padding-top: 20px;
    }

    .nav-links.open {
        transform: translateX(0)
    }

    .nav-link {
        font-size: 1.1rem
    }

    .hamburger {
        display: flex;
        z-index: 2001;
    }

    .hero-line {
        font-size: clamp(2.4rem, 9vw, 4rem)
    }

    .benefits-mosaic {
        grid-template-columns: 1fr
    }

    .bc-large {
        grid-column: span 1;
        grid-template-columns: 1fr
    }

    .bc-large .bc-img {
        min-height: 180px
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr
    }

    .big-counters {
        grid-template-columns: 1fr 1fr;
        padding: 32px 20px
    }

    .process-steps {
        grid-template-columns: 1fr 1fr
    }

    .cases {
        grid-template-columns: 1fr
    }

    .review-card {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 24px 20px;
        height: auto;
        overflow: visible;
    }

    .review-card blockquote {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .cf-row {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }

    .srv-img {
        display: none !important
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .impact-grid {
        grid-template-columns: 1fr
    }

    .big-counters {
        grid-template-columns: 1fr
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .split-header {
        flex-direction: column;
        align-items: flex-start
    }
}