/* =============================================================
   SOCIAL MEDIA AGENCY — Hybrid Design System
   Dark hero/CTA/footer + light content · Electric Violet accent
   Inspired by Nexro + Adstik aesthetics
   ============================================================= */

:root {
    /* --- Light base (body + content sections) --- */
    --bg: #ffffff;
    --bg-soft: #f5f4fb;
    --bg-mute: #efedf8;
    --surface: #ffffff;
    --border: rgba(18, 14, 40, 0.09);
    --border-strong: rgba(124, 92, 255, 0.28);
    --text: #14101f;
    --text-dim: #5d5872;
    --text-faint: #8c879e;

    /* --- Dark base (hero, CTA, footer) --- */
    --dark: #0c0a18;
    --dark-2: #15112b;
    --dark-soft: rgba(255, 255, 255, 0.05);
    --dark-soft-2: rgba(255, 255, 255, 0.08);
    --dark-border: rgba(255, 255, 255, 0.1);
    --dark-border-bright: rgba(157, 124, 255, 0.34);
    --on-dark: #f4f2fb;
    --on-dark-dim: #a8a2c8;
    --on-dark-faint: #726c92;

    /* --- Electric violet accent --- */
    --accent: #7c5cff;
    --accent-soft: #9d7cff;
    --accent-deep: #5b3fd6;
    --accent-2: #c084fc;     /* lilac */
    --accent-3: #22d3ee;     /* cyan support */
    --accent-gold: #ffb020;  /* stars / highlight */
    --accent-tint: rgba(124, 92, 255, 0.10);

    --grad-primary: linear-gradient(120deg, #9d7cff 0%, #7c5cff 50%, #6d4aff 100%);
    --grad-soft: linear-gradient(120deg, #b69bff 0%, #7c5cff 100%);
    --grad-vivid: linear-gradient(120deg, #c084fc 0%, #7c5cff 55%, #22d3ee 130%);
    --grad-dark: linear-gradient(160deg, #15112b 0%, #0c0a18 100%);

    --glow-violet: 0 0 44px rgba(124, 92, 255, 0.45);
    --shadow-sm: 0 2px 8px rgba(18, 14, 40, 0.06);
    --shadow-card: 0 12px 36px rgba(18, 14, 40, 0.08);
    --shadow-card-hover: 0 28px 70px rgba(91, 63, 214, 0.18);
    --shadow-dark: 0 24px 64px rgba(0, 0, 0, 0.5);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-display: 'Sora', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --container: 1240px;
    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* The old fixed dark backdrops are not used in the hybrid theme */
.bg-mesh, .bg-grid { display: none !important; }

/* === Layout === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 110px 0;
    position: relative;
}
@media (max-width: 700px) { .section { padding: 76px 0; } }

/* Dark band utility — applied to sections that should invert */
.band-dark {
    background: var(--dark);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
}
.band-dark::before {
    content: '';
    position: absolute;
    width: 760px; height: 760px;
    top: -340px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 92, 255, 0.28) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}
.band-dark > .container { position: relative; z-index: 1; }
.band-soft { background: var(--bg-soft); }

/* === Section heading === */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--accent-tint);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--accent-deep);
    margin-bottom: 22px;
    text-transform: uppercase;
}
.band-dark .section-eyebrow {
    background: rgba(124, 92, 255, 0.14);
    border-color: var(--dark-border-bright);
    color: var(--accent-soft);
}
.section-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
}
.section-title .grad {
    background: var(--grad-vivid);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.section-subtitle {
    color: var(--text-dim);
    font-size: 1.075rem;
    max-width: 620px;
}
.band-dark .section-subtitle { color: var(--on-dark-dim); }
.section-head {
    text-align: center;
    margin-bottom: 58px;
    display: flex; flex-direction: column; align-items: center;
}

/* === Navigation === */
.agency-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s var(--transition);
}
/* Default = sitting over the dark hero */
.agency-nav .nav-links a { color: rgba(255, 255, 255, 0.78); }
.agency-nav .nav-logo { color: #fff; }
.agency-nav.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}
.agency-nav.scrolled .nav-logo { color: var(--text); }
.agency-nav.scrolled .nav-links a { color: var(--text-dim); }
/* Inner pages (no dark hero) get the solid nav immediately */
body.page-light .agency-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
body.page-light .agency-nav .nav-logo { color: var(--text); }
body.page-light .agency-nav .nav-links a { color: var(--text-dim); }

.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo {
    display: flex; align-items: center; gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}
.nav-logo-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--grad-primary);
    display: grid; place-items: center;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--glow-violet);
    transition: transform 0.4s var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg) scale(1.05); }
.nav-links {
    display: flex; align-items: center; gap: 6px;
    list-style: none;
}
.nav-links a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9px;
    transition: all 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent) !important; }
.agency-nav:not(.scrolled) .nav-links a:hover,
.agency-nav:not(.scrolled) .nav-links a.active { color: #fff !important; }
.nav-cta {
    padding: 11px 22px !important;
    background: var(--grad-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.4);
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.nav-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(124, 92, 255, 0.55);
}
.nav-burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    place-items: center;
}
.agency-nav.scrolled .nav-burger,
body.page-light .nav-burger {
    background: var(--bg-soft);
    border-color: var(--border);
    color: var(--text);
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: grid; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 16px; right: 16px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 16px;
        margin-top: 12px;
        align-items: stretch;
        box-shadow: var(--shadow-card);
    }
    .nav-links.open a { text-align: center; color: var(--text-dim) !important; }
    .nav-links.open .nav-cta { margin-top: 6px; }
}

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(124, 92, 255, 0.55);
}
/* Ghost button — adapts to surface */
.btn-ghost {
    background: var(--bg-soft);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}
.band-dark .btn-ghost {
    background: var(--dark-soft);
    color: var(--on-dark);
    border-color: var(--dark-border);
    backdrop-filter: blur(10px);
}
.band-dark .btn-ghost:hover { border-color: var(--accent-soft); color: #fff; }
.btn-arrow { transition: transform 0.3s var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* === HERO (dark) === */
.hero {
    position: relative;
    padding: 170px 0 90px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    color: var(--on-dark);
}
.hero::before {
    content: '';
    position: absolute;
    width: 900px; height: 900px;
    top: -360px; right: -180px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.30) 0%, transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 620px; height: 620px;
    bottom: -320px; left: -160px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, transparent 62%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--dark-soft);
    border: 1px solid var(--dark-border-bright);
    border-radius: 100px;
    font-size: 13px;
    color: var(--on-dark-dim);
    margin-bottom: 26px;
    backdrop-filter: blur(10px);
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: #22e09a;
    border-radius: 50%;
    box-shadow: 0 0 16px #22e09a;
    animation: pulse 1.5s ease-in-out infinite;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: #fff;
}
.hero h1 .grad {
    background: var(--grad-vivid);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero p.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--on-dark-dim);
    max-width: 540px;
    margin-bottom: 38px;
}
@media (max-width: 980px) { .hero p.lead { margin-left: auto; margin-right: auto; } }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 980px) { .hero-cta { justify-content: center; } }

.hero-stats {
    display: flex; gap: 44px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
}
@media (max-width: 980px) { .hero-stats { justify-content: center; gap: 28px; } }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.1rem; font-weight: 700;
    background: var(--grad-soft);
    background-clip: text; -webkit-background-clip: text;
    color: transparent;
}
.hero-stat-label { font-size: 13px; color: var(--on-dark-faint); margin-top: 2px; }

/* === Hero visual — social analytics mock === */
.hero-visual { position: relative; }
.hero-panel {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid var(--dark-border-bright);
    border-radius: var(--radius-xl);
    padding: 26px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-dark);
}
.hero-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
}
.hero-panel-head .hp-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.hero-panel-head .hp-pill {
    font-size: 11px; padding: 4px 10px; border-radius: 100px;
    background: rgba(34, 224, 154, 0.16); color: #22e09a; font-weight: 600;
}
.hero-bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; margin-bottom: 22px; }
.hero-bar {
    flex: 1; border-radius: 7px 7px 4px 4px;
    background: var(--grad-soft);
    opacity: 0.92;
    transform-origin: bottom;
    animation: bar-rise 1.1s var(--transition) backwards;
}
.hero-bar:nth-child(1){ height: 38%; animation-delay: .05s; }
.hero-bar:nth-child(2){ height: 58%; animation-delay: .12s; }
.hero-bar:nth-child(3){ height: 46%; animation-delay: .19s; }
.hero-bar:nth-child(4){ height: 78%; animation-delay: .26s; }
.hero-bar:nth-child(5){ height: 64%; animation-delay: .33s; }
.hero-bar:nth-child(6){ height: 92%; background: var(--grad-vivid); animation-delay: .40s; }
.hero-bar:nth-child(7){ height: 70%; animation-delay: .47s; }
@keyframes bar-rise { from { transform: scaleY(0); opacity: 0; } }
.hero-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-platform {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center; font-size: 18px; color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--dark-border);
    transition: transform 0.3s var(--transition);
}
.hero-platform:hover { transform: translateY(-4px); border-color: var(--accent-soft); }
/* floating mini cards */
.hero-chip {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(20, 16, 40, 0.86);
    border: 1px solid var(--dark-border-bright);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-dark);
    z-index: 3;
}
.hero-chip .hc-ico {
    width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
    background: var(--grad-primary); color: #fff; font-size: 15px; flex-shrink: 0;
}
.hero-chip .hc-num { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; line-height: 1.1; }
.hero-chip .hc-label { font-size: 11px; color: var(--on-dark-faint); }
.hero-chip.hc-1 { top: -22px; left: -26px; animation: float-y 6s ease-in-out infinite; }
.hero-chip.hc-2 { bottom: -24px; right: -18px; animation: float-y 7s ease-in-out infinite -2s; }
.hero-chip.hc-2 .hc-ico { background: var(--grad-vivid); }
@media (max-width: 980px) {
    .hero-visual { max-width: 460px; margin: 12px auto 0; }
    .hero-chip.hc-1 { left: -6px; }
    .hero-chip.hc-2 { right: -6px; }
}
@media (max-width: 460px) { .hero-chip { display: none; } }
@keyframes float-y { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

/* === Marquee / Ticker === */
.marquee {
    overflow: hidden;
    padding: 26px 0;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
    display: flex; align-items: center; gap: 56px;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee-item {
    color: var(--text-faint);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    white-space: nowrap;
    transition: color 0.3s var(--transition);
    display: inline-flex; align-items: center; gap: 12px;
}
.marquee-item:hover { color: var(--accent); }
.band-dark .marquee-item { color: var(--on-dark-faint); }
.band-dark .marquee-item:hover { color: #fff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Hero strip (trusted-by ticker on dark) */
.hero-strip {
    border-top: 1px solid var(--dark-border);
    margin-top: 56px;
}
.hero-strip .marquee { padding: 22px 0 0; }

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.service-card {
    position: relative;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition);
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    background: var(--grad-primary);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s var(--transition);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-title,
.service-card:hover .service-link { color: #fff; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.88); }
.service-card:hover .service-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: none;
}

.service-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: var(--accent-tint);
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 26px;
    transition: all 0.4s var(--transition);
}
.service-title {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--transition);
}
.service-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.62;
    margin-bottom: 22px;
    transition: color 0.3s var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s var(--transition), color 0.3s var(--transition);
}
.service-card:hover .service-link { gap: 12px; }

/* === About === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 16px; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.stat-box {
    padding: 26px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--transition);
}
.stat-box:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--grad-vivid);
    background-clip: text; -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
}
.stat-label { color: var(--text-dim); font-size: 14px; margin-top: 8px; }

/* About visual — stacked content cards */
.about-visual { position: relative; }
.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.show-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-card);
    transition: transform 0.4s var(--transition);
}
.show-card:hover { transform: translateY(-6px); }
.show-card .sc-ico {
    width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center; font-size: 20px;
    background: var(--accent-tint); color: var(--accent);
    margin-bottom: 16px;
}
.show-card .sc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.show-card .sc-label { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.show-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center;
    background: var(--grad-dark); color: var(--on-dark); border: none; }
.show-card.tall .sc-ico { background: rgba(255,255,255,0.12); color: #fff; }
.show-card.tall .sc-label { color: var(--on-dark-dim); }
.show-card.offset { margin-top: 28px; }
@media (max-width: 460px) { .show-card.offset { margin-top: 0; } }

/* === Feature / Why-choose grid === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.feature-card {
    padding: 30px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.feature-num {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.14rem; font-weight: 700;
    margin-bottom: 10px;
}
.feature-desc { color: var(--text-dim); font-size: 0.95rem; }

/* === Process === */
.process-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    position: relative;
}
.process-step {
    padding: 30px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--transition);
    position: relative;
}
.process-step:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.process-step-num {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: var(--grad-primary);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700; font-size: 15px;
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(124, 92, 255, 0.35);
}
.process-step h4 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 0.92rem; }

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}
.testimonial-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.4s var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}
.band-dark .testimonial-card {
    background: var(--dark-soft);
    border-color: var(--dark-border);
    box-shadow: none;
    backdrop-filter: blur(10px);
}
.testimonial-stars { color: var(--accent-gold); margin-bottom: 16px; font-size: 15px; letter-spacing: 3px; }
.testimonial-quote {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.band-dark .testimonial-quote { color: var(--on-dark); }
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.band-dark .testimonial-author { border-color: var(--dark-border); }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: grid; place-items: center;
    font-weight: 700; color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14.5px; }
.testimonial-role { font-size: 12px; color: var(--text-faint); }
.band-dark .testimonial-role { color: var(--on-dark-faint); }

/* === FAQ Accordion === */
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s var(--transition), box-shadow 0.3s var(--transition);
}
.faq-item.open { border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 24px 26px;
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 600;
    text-align: left;
    color: var(--text);
}
.faq-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 9px;
    background: var(--accent-tint);
    color: var(--accent);
    display: grid; place-items: center;
    transition: transform 0.35s var(--transition), background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition);
}
.faq-a-inner { padding: 0 26px 24px; color: var(--text-dim); font-size: 0.98rem; line-height: 1.65; }

/* === CTA (dark) === */
.cta-section { padding: 0; position: relative; }
.cta-section .container { padding-top: 30px; padding-bottom: 30px; }
.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 68px 48px;
    text-align: center;
    background: var(--grad-dark);
    border: 1px solid var(--dark-border-bright);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    color: var(--on-dark);
}
.cta-card::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -300px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 92, 255, 0.45), transparent 62%);
    pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .section-eyebrow {
    background: rgba(124, 92, 255, 0.16);
    border-color: var(--dark-border-bright);
    color: var(--accent-soft);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: var(--on-dark-dim); margin: 16px auto 32px; max-width: 540px; }

/* === Contact form === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 52px;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.info-card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    display: flex; gap: 16px; align-items: flex-start;
    transition: all 0.3s var(--transition);
}
.info-card:hover { border-color: var(--border-strong); transform: translateX(4px); }
.info-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--accent-tint);
    color: var(--accent);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 18px;
}
.info-label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; }
.info-value { font-weight: 600; font-size: 1.05rem; margin-top: 4px; word-break: break-word; }

.contact-form {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s var(--transition);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); }
.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.16);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.flash-msg {
    padding: 14px 16px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.30);
    color: #16a34a;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}
.flash-err {
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #dc2626;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* === Page Header (inner pages) === */
.page-head {
    padding: 150px 0 70px;
    text-align: center;
    background: var(--dark);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
}
.page-head::before {
    content: '';
    position: absolute;
    width: 760px; height: 760px;
    top: -380px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 92, 255, 0.28), transparent 62%);
    pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #fff;
}
.page-head h1 .grad {
    background: var(--grad-vivid);
    background-clip: text; -webkit-background-clip: text;
    color: transparent;
}
.page-head p { color: var(--on-dark-dim); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }
.crumbs {
    display: inline-flex; gap: 8px; align-items: center;
    font-size: 13px; color: var(--on-dark-faint);
    margin-bottom: 20px;
}
.crumbs a:hover { color: var(--accent-soft); }

/* === Portfolio === */
.portfolio-filter {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 48px;
}
.portfolio-filter button {
    padding: 10px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-dim);
    transition: all 0.3s var(--transition);
}
.portfolio-filter button.active,
.portfolio-filter button:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.35);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition);
    position: relative;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}
.portfolio-cover {
    aspect-ratio: 16 / 10;
    background: var(--grad-primary);
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 46px;
    position: relative;
    overflow: hidden;
}
.portfolio-cover::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.22), transparent 50%);
}
.portfolio-card:nth-child(3n+2) .portfolio-cover { background: var(--grad-vivid); }
.portfolio-card:nth-child(3n+3) .portfolio-cover { background: linear-gradient(135deg, #ffb020 0%, #7c5cff 100%); }
.portfolio-body { padding: 24px 26px; }
.portfolio-title { font-family: var(--font-display); font-size: 1.14rem; font-weight: 700; margin-bottom: 12px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-tag {
    padding: 4px 11px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    color: var(--text-dim);
}

/* === Footer (dark) === */
.agency-footer {
    background: var(--dark);
    color: var(--on-dark);
    padding: 78px 0 30px;
    position: relative;
    overflow: hidden;
}
.agency-footer::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    bottom: -420px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 62%);
    pointer-events: none;
}
.agency-footer .container { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 44px;
    margin-bottom: 46px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: #fff; }
.footer-brand p { color: var(--on-dark-dim); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--on-dark-dim); font-size: 14px; transition: color 0.3s var(--transition); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: var(--dark-soft);
    border: 1px solid var(--dark-border);
    display: grid; place-items: center;
    color: var(--on-dark-dim);
    transition: all 0.3s var(--transition);
}
.footer-socials a:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--glow-violet);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    color: var(--on-dark-faint);
    flex-wrap: wrap; gap: 12px;
}

/* === Reveal on scroll === */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"].in { transition-delay: 0.1s; }
[data-reveal-delay="200"].in { transition-delay: 0.2s; }
[data-reveal-delay="300"].in { transition-delay: 0.3s; }
[data-reveal-delay="400"].in { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* WhatsApp floating button */
.wa-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: grid; place-items: center;
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: transform 0.3s var(--transition);
}
.wa-fab:hover { transform: scale(1.1) rotate(8deg); }
.wa-fab::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0.4;
    animation: ping 2s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
