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

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #0A0A0A;
    --bg-2: #111111;
    --bg-3: #161616;
    --surface: #1A1A1A;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --white: #FFFFFF;
    --off: #E8E8E8;
    --muted: #888888;
    --faint: #444444;
    --orange: #F97316;
    --orange-dim: rgba(249, 115, 22, 0.12);
    --purple: #7C3AED;
    --purple-dim: rgba(124, 58, 237, 0.1);
    --font: 'Sora', sans-serif;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p,
li {
    font-family: 'Inter', sans-serif;
}
.brand{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.logo {
    width: 40px;
    height: 40px;
}

.logotitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
}

.caption {
    font-family: 'Anton', sans-serif;
    font-size: 9px;
    font-weight: 100;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.nav-btn {
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 9px 22px;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.2s;
    border: 2px solid var(--orange)
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-btn:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.nav-btn:hover::before {
    transform: translateX(0);
}

nav.scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-pip {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--purple);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 64px 48px 0 48px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

#hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.glow {
    width: 100vw;
    height: 100vw;
    position: absolute;
    background: radial-gradient(#093a4a66, transparent);
    filter: blur(30px);
    display: none;
}

.hero-left {
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 36px;
}

.hero-label::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-h1 {
    font-family: var(--font);
    /* Lowered minimum size to 2.5rem for better mobile scaling */
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: var(--white);
}

.hero-h1 .line-accent {
    color: var(--orange);
}

.hero-h1 .line-dim {
    color: var(--purple);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 52px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-fill {
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 13px 30px;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.1);
}

.btn-fill:hover {
    transform: translateY(-3px);
    background: #ff8533;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 13px 30px;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hstat-num {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
}

.hstat-num sup {
    font-size: 1rem;
    color: var(--orange);
}

.hstat-label {
    font-size: 0.52rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

/* ─── SCENE WRAPPER ─────────────────────────────── */
.hero-right {
    position: relative;
    width: 560px;
    height: 580px;
    flex-shrink: 0;
}

/* ─── AMBIENT BLOBS ─────────────────────────────── */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.12);
    top: 10%;
    left: 20%;
    animation: blobDrift 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: rgba(124, 58, 237, 0.10);
    bottom: 10%;
    right: 15%;
    animation: blobDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(30px, 20px) scale(1.15)
    }
}

/* ─── GRID LINES (subtle) ───────────────────────── */
.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

/* ─── PHONE MOCKUP (centre) ─────────────────────── */
.phone-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    width: 148px;
    z-index: 10;
    animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translate(-50%, -52%) translateY(0px)
    }

    50% {
        transform: translate(-50%, -52%) translateY(-12px)
    }
}

.phone {
    width: 148px;
    height: 298px;
    background: #141414;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), 0 0 0 0.5px rgba(255, 255, 255, 0.06);
}

.phone-notch {
    width: 50px;
    height: 10px;
    background: #0A0A0A;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    padding: 6px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ph-profile {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ph-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--purple));
    flex-shrink: 0;
}

.ph-name {
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--white)
}

.ph-handle {
    font-size: 7.5px;
    color: var(--muted)
}

.ph-img {
    width: 100%;
    height: 110px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #181818 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-img-inner {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(160deg, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        linear-gradient(220deg, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            transparent, transparent 8px,
            rgba(255, 255, 255, 0.015) 8px, rgba(255, 255, 255, 0.015) 9px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-play::after {
    content: '';
    border: 0 solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    margin-left: 2px;
}

.ph-stats {
    display: flex;
    gap: 10px;
}

.ph-stat {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    color: var(--muted);
}

.ph-stat-num {
    color: var(--white);
    font-weight: 600;
    font-size: 8.5px
}

.ph-caption {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.ph-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap
}

.ph-tag {
    font-size: 6.5px;
    color: var(--orange);
    font-weight: 600
}

.ph-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 4px;
    overflow: hidden;
}

.ph-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    animation: barScroll 3s ease-in-out infinite alternate;
    border-radius: 2px;
}

@keyframes barScroll {
    from {
        width: 35%
    }

    to {
        width: 75%
    }
}

/* ─── FLOATING CARDS ────────────────────────────── */
.fcard {
    position: absolute;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 8;
    opacity: 0;
    animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── CARD 1 – Followers Growth (top-left) ── */
.card-followers {
    top: 6%;
    left: 0%;
    width: 160px;
    animation-delay: 0.3s;
    --float-dur: 6s;
    --float-tx: 0px;
    --float-ty: -10px;
}

.card-followers::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* ── CARD 2 – ROAS (top-right) ── */
.card-roas {
    top: 5%;
    right: 3%;
    width: 140px;
    animation-delay: 0.5s;
    --float-dur: 7s;
    --float-tx: 8px;
    --float-ty: -8px;
}

/* ── CARD 3 – Content (mid-left) ── */
.card-content {
    top: 38%;
    left: -2%;
    width: 150px;
    animation-delay: 0.7s;
    --float-dur: 8s;
    --float-tx: -6px;
    --float-ty: -12px;
}

/* ── CARD 4 – Active Campaign (mid-right) ── */
.card-campaign {
    top: 36%;
    right: 0%;
    width: 155px;
    animation-delay: 0.9s;
    --float-dur: 6.5s;
    --float-tx: 6px;
    --float-ty: -8px;
}

/* ── CARD 5 – Brand Score (bottom-left) ── */
.card-score {
    bottom: 8%;
    left: 4%;
    width: 152px;
    animation-delay: 1.1s;
    --float-dur: 9s;
    --float-tx: -4px;
    --float-ty: -10px;
}

/* ── CARD 6 – Clients (bottom-right) ── */
.card-clients {
    bottom: 6%;
    right: 2%;
    width: 148px;
    animation-delay: 1.3s;
    --float-dur: 7.5s;
    --float-tx: 5px;
    --float-ty: -9px;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95)
    }

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

.fcard.floating {
    animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        floatCard var(--float-dur, 6s) ease-in-out var(--float-dur, 0s) infinite;
}

.fcard:not(.card-followers) {
    animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes floatCard {

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

    50% {
        transform: translate(var(--float-tx, 0px), var(--float-ty, -10px))
    }
}

/* CARD INTERNALS */
.crd-label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.crd-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.crd-val {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.crd-sub {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.4
}

.crd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 100px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 600;
    color: var(--orange);
    margin-top: 6px;
}

.crd-badge.purple {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
    color: #a78bfa;
}

.crd-badge::before {
    content: '▲';
    font-size: 7px
}

.crd-badge.down::before {
    content: '▼'
}

/* Mini sparkline */
.sparkline {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
    margin-top: 8px;
}

.spark-bar {
    flex: 1;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    transition: height 0.4s;
}

/* Avatar row */
.avatar-row {
    display: flex;
    margin-top: 8px
}

.av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--bg);
    margin-left: -6px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.av:first-child {
    margin-left: 0
}

.av-1 {
    background: rgba(249, 115, 22, 0.3);
    color: var(--orange)
}

.av-2 {
    background: rgba(124, 58, 237, 0.3);
    color: #a78bfa
}

.av-3 {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white)
}

.av-more {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted)
}

/* Progress ring */
.ring-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px
}

.ring-svg {
    flex-shrink: 0
}

.ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.07);
    stroke-width: 4
}

.ring-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ring-fill.purple {
    stroke: var(--purple)
}

.ring-label-wrap {
    display: flex;
    flex-direction: column
}

.ring-pct {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--white)
}

.ring-desc {
    font-size: 9px;
    color: var(--muted);
    margin-top: 1px;
    line-height: 1.4
}

/* Platforms row */
.platforms {
    display: flex;
    gap: 6px;
    margin-top: 8px
}

.plat {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.plat-icon {
    font-size: 11px
}

.plat-num {
    font-size: 9px;
    font-weight: 700;
    color: var(--white)
}

.plat-lbl {
    font-size: 7px;
    color: var(--muted)
}

/* Live dot */
.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4)
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0)
    }
}

/* ─── CONNECTING DASHES ─────────────────────────── */
.connectors {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

/* ─── ORBIT RING ───────────────────────────────── */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -54%);
    border-radius: 50%;
    border: 1px dashed rgba(249, 115, 22, 0.12);
    animation: orbitSpin 20s linear infinite;
    pointer-events: none;
    z-index: 6;
}

.orbit-ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(124, 58, 237, 0.08);
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    top: -3px;
    left: 50%;
    margin-left: -3px;
}

.orbit-dot-2 {
    background: var(--purple);
    top: auto;
    bottom: -3px;
    left: 30%;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -54%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -54%) rotate(360deg)
    }
}

/* ─── TAG PILLS (floating) ──────────────────────── */
.tag-pill {
    position: absolute;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    z-index: 7;
    opacity: 0;
    animation: tagIn 0.5s ease forwards;
}

.tag-pill span {
    color: var(--orange);
    font-weight: 700
}

.tp-1 {
    top: 2%;
    left: 32%;
    animation-delay: 1.5s;
    animation-name: tagIn, tagFloat1
}

.tp-2 {
    bottom: 2%;
    left: 28%;
    animation-delay: 1.8s;
    animation-name: tagIn, tagFloat2
}

.tp-3 {
    top: 50%;
    left: 38%;
    transform: translateY(-50%);
    animation-delay: 2s;
    display: none
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

@keyframes tagFloat1 {

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

    50% {
        transform: translateY(-6px)
    }
}

@keyframes tagFloat2 {

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

    50% {
        transform: translateY(5px)
    }
}

/* ── TICKER ── */
.ticker {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--bg-2);
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 24s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: yellowgreen;
    white-space: nowrap;
}

.ticker-sep {
    width: 3px;
    height: 3px;
    background: var(--orange);
    border-radius: 50%;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

/* ── SHARED SECTION STYLES ── */
section {
    position: relative;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.sec-pad {
    padding: 120px 0;
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.sec-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--white);
}

.sec-h2 .oa {
    color: var(--orange);
}

.sec-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 460px;
    margin-top: 16px;
}

.rule {
    height: 1px;
    background: var(--border);
}

/* ── ABOUT ── */
#about {
    background-color: var(--bg-2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    z-index: -2;
    pointer-events: none;
}

#about::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, rgba(124, 58, 237, 0.03) 40%, transparent 70%);
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-left .sec-sub {
    max-width: 100%;
    margin-bottom: 48px;
}

.about-tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.25s;
}

.tag:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.number-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.number-cell {
    background: var(--bg-2);
    padding: 40px 32px;
    transition: background 0.3s;
}

.number-cell:hover {
    background: var(--bg-3);
}

.num-big {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
}

.num-big span {
    color: var(--orange);
    font-size: 2rem;
}

.num-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
}

.num-desc {
    font-size: 0.82rem;
    color: var(--faint);
    margin-top: 6px;
    line-height: 1.5;
}


/* ── SERVICES ── */
#services {
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#services::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(249, 115, 22, 0.035) 45%,
            rgba(124, 58, 237, 0.035) 55%,
            transparent 80%);
    z-index: -2;
    pointer-events: none;
}

#services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.svc-card {
    background: var(--bg);
    padding: 15px 40px;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover {
    background: var(--bg-3);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-card.purple-card::after {
    background: var(--purple);
}

.svc-num {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--faint);
    margin-bottom: 28px;
}

.svc-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--white);
}

.svc-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 40px;
}

.svc-items li {
    font-size: 0.83rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.svc-items li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--faint);
    flex-shrink: 0;
    transition: width 0.3s, background 0.3s;
}

.svc-card:hover .svc-items li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.svc-cta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.svc-cta span {
    display: inline-block;
    transition: transform 0.25s;
}

.svc-card:hover .svc-num {
    color: var(--purple);
}

.svc-card:hover .svc-cta {
    color: var(--orange);
}

.svc-card:hover .svc-cta span {
    transform: translateX(4px);
}

/* ── PROCESS ── */
#process {
    background-color: var(--bg-2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#process::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 800px;
    height: 800px;
    transform: translateY(-50%) rotate(-12deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Crect x='15' y='32' width='70' height='50' rx='8'/%3E%3Ccircle cx='50' cy='57' r='16'/%3E%3Ccircle cx='50' cy='57' r='6'/%3E%3Ccircle cx='75' cy='44' r='2.5'/%3E%3Cpath d='M 35 32 L 41 22 L 59 22 L 65 32 Z'/%3E%3Crect x='22' y='27' width='8' height='5' rx='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

#process::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0%;
    width: 700px;
    height: 700px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, rgba(124, 58, 237, 0.02) 40%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.process-left .sec-sub {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.pstep {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    cursor: default;
    transition: background 0.2s;
}

.pstep:first-child {
    border-top: 1px solid var(--border);
}

.pstep:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pstep-num {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--bg-3);
    line-height: 1;
    padding-top: 4px;
    transition: color 0.3s;
}

.pstep:hover .pstep-num {
    color: var(--purple);
}

.pstep-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--white);
}

.pstep-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── WHY US ── */
#why {
    background: linear-gradient(105deg,
            var(--bg-2) 0%,
            var(--bg-2) 55%,
            var(--purple) 55%,
            var(--purple) calc(55% + 1px),
            rgba(124, 58, 237, 0.08) calc(55% + 1px),
            var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

#why .wrap {
    position: relative;
    z-index: 2;
}

#why::before {
    content: 'IMPACT \A RESULTS \A GROWTH';
    white-space: pre;
    position: absolute;
    top: -5%;
    right: 1%;
    font-size: 18vw;
    font-weight: 800;
    line-height: 0.85;
    font-family: var(--font);
    text-transform: uppercase;
    text-align: right;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.reasons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reason {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.reason:first-child {
    border-top: 1px solid var(--border);
}

.reason:hover {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.reason-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.reason:hover .reason-icon {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-dim);
}

.reason-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.reason-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
}

.why-quote-block {
    margin-top: 0;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}

.wq-mark {
    font-size: 4rem;
    line-height: 0.8;
    color: var(--orange);
    font-family: Georgia, serif;
    margin-bottom: 24px;
    display: block;
}

.wq-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 32px;
}

.wq-text em {
    font-style: normal;
    color: var(--orange);
}

.wq-tag-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wq-tag {
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wq-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── METRICS ── */
#metrics {
    background: var(--bg-2);
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.metric-cell {
    background: var(--bg-2);
    padding: 52px 36px;
    transition: background 0.3s;
}

.metric-cell:hover {
    background: var(--bg-3);
}

.metric-val {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--white);
}

.metric-cell:nth-child(odd) .metric-val {
    color: var(--orange);
}

.metric-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--bg);
    overflow: hidden;
}

.testi-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.testi-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testi-card {
    position: absolute;
    width: 100%;
    max-width: 460px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 36px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.testi-card.active {
    transform: translateX(0) scale(1);
    z-index: 3;
    opacity: 1;
    filter: blur(0);
}

.testi-card.next {
    transform: translateX(65%) scale(0.85);
    z-index: 2;
    opacity: 0.4;
    filter: blur(6px);
    pointer-events: none;
}

.testi-card.prev {
    transform: translateX(-65%) scale(0.85);
    z-index: 2;
    opacity: 0.4;
    filter: blur(6px);
    pointer-events: none;
}

.tcard-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 28px;
}

.star {
    width: 12px;
    height: 12px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.tcard-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--off);
    margin-bottom: 36px;
    font-style: italic;
}

.tcard-rule {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.tcard-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.av1 {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.av2 {
    background: rgba(124, 58, 237, 0.15);
    color: #A78BFA;
}

.av3 {
    background: rgba(255, 255, 255, 0.06);
    color: var(--off);
}

.tcard-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.tcard-role {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ── CTA ── */
#cta {
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.0;
    color: var(--white);
}

.cta-h2 em {
    font-style: normal;
    color: var(--orange);
}

.cta-tagline {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.25s;
    text-decoration: none;
}

.contact-item:hover {
    color: var(--white);
}

.contact-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.25s;
}

.contact-item:hover .contact-icon {
    border-color: var(--orange);
    color: var(--orange);
}

.contact-form {
    background: rgba(26, 26, 30, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 0.8rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--faint);
}

.form-group select {
    color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select:focus {
    color: var(--white);
}

.form-group select option {
    background: var(--surface);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    background: rgba(245, 22, 249, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.social-mini {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    max-width: 420px;
}

.social-label {
    font-size: 0.75rem;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.social-icon {
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    color: var(--purple);
    border-color: var(--purple);
    background: rgba(203, 22, 249, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(249, 22, 222, 0.2);
}

/* ── MODAL POPUP ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(26, 26, 30, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--orange);
}

.modal-input {
    width: 100%;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    outline: none;
    transition: all 0.3s ease;
}

.modal-input::placeholder {
    color: var(--faint);
}

.modal-input:focus {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 10px 48px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--faint);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--faint);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

/* ========================================================= */
/* ── RESPONSIVE OVERRIDES (TABLET, MOBILE, SMALL MOBILE) ── */
/* ========================================================= */

@media (max-width: 1024px) {
    .wrap {
        padding: 0 32px;
    }

    .sec-pad {
        padding: 80px 0;
    }

    nav {
        padding: 0 32px;
    }

    /* === HERO FIX FOR IPAD === */
    #hero {
        padding: 160px 32px 80px 48px;
        min-height: 50vh;
        align-items: start;
    }

    .btn-fill {
        padding: 13px 20px;
    }

    .pstep-num {
        color: var(--purple);
    }

    .hero-right {
        max-height: 630px;
    }

    /* Make the hero font slightly smaller so it fits beautifully in the narrower iPad column */
    .hero-h1 {
        font-size: clamp(2.8rem, 4.5vw, 3.5rem);
    }

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

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

    .about-layout,
    .why-layout,
    .cta-inner,
    .process-layout {
        gap: 40px;
    }
}
/* =========================================
   1. DARK BACKGROUND & GLOWING LIGHTS
========================================= */
#faq {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #050507; 
    background-image: 
    radial-gradient(circle at 90% 80%, rgba(236, 136, 65, 0.12) 0%, transparent 500px),
        radial-gradient(circle at 10% 20%, rgba(148, 92, 243, 0.12) 0%, transparent 500px);
}

#faq .wrap {
    position: relative;
    z-index: 2;
}

/* =========================================
   2. BACKGROUND VISUALS (Q-MARK & BUBBLES)
========================================= */

/* VISUAL 1: The Massive Question Mark */
#faq::before {
    content: '?';
    position: absolute;
    top: -5%;
    right: 5%;
    font-size: 32vw; 
    font-family: var(--font, -apple-system, BlinkMacSystemFont, sans-serif);
    font-weight: 800;
    line-height: 1;
    color: transparent; 
    /* Bright orange neon outline */
    -webkit-text-stroke: 2px rgba(249, 115, 22, 0.25);
    transform: rotate(15deg);
    z-index: 0; /* Sits behind the glass cards */
    pointer-events: none;
    user-select: none;
}

/* VISUAL 2: The Purple Answer Bubble */
#faq::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -2%;
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 60px 60px 60px 10px; /* Tail pointing left */
    transform: rotate(-10deg);
    z-index: 0;
    pointer-events: none;
}

/* VISUAL 3: The Orange Question Bubble */
#faq .faq-grid::before {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 250px;
    height: 150px;
    background: linear-gradient(135deg, transparent 0%, rgba(242, 137, 62, 0.05) 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 40px 40px 10px 40px; /* Tail pointing right */
    transform: rotate(5deg);
    z-index: -1;
    pointer-events: none;
}


.faq-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2; 
}


.faq-item {
    background: rgba(255, 255, 255, 0.03); /* Faint white tint */
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-item.is-open[data-type="orange"] {
    border-color: rgba(249, 115, 22, 0.4);
}

.faq-item.is-open[data-type="purple"] {
    border-color: rgba(124, 58, 237, 0.4);
}

/* =========================================
   4. TYPOGRAPHY & INTERACTION ELEMENTS
========================================= */
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.faq-q-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.faq-tag-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange, #f97316);
}

.faq-tag-purple {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff; /* White text for contrast */
    line-height: 1.55;
    transition: color 0.2s;
    font-family: var(--font);
}

.faq-item.is-open[data-type="orange"] .faq-q {
    color: var(--orange, #f97316);
}

.faq-item.is-open[data-type="purple"] .faq-q {
    color: #a78bfa;
}

/* Glass Icons */
.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.is-open[data-type="orange"] .faq-icon {
    background: rgba(249, 115, 22, 0.2);
}

.faq-item.is-open[data-type="purple"] .faq-icon {
    background: rgba(124, 58, 237, 0.2);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.2s;
}

.faq-item.is-open[data-type="orange"] .faq-icon svg {
    stroke: var(--orange, #f97316);
}

.faq-item.is-open[data-type="purple"] .faq-icon svg {
    stroke: #a78bfa;
}

/* Answer Expansion */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body.is-open {
    max-height: 400px;
}

.faq-ans {
    padding: 0 24px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* Subdued greyish-white */
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle glass separator */
    padding-top: 16px;
    margin-top: -8px;
}

.faq-ans strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .faq-head p {
        text-align: left !important;
        max-width: 100% !important;
    }
}

/* 2. MOBILE PHONES (Under 768px) */

@media (max-width: 767px) {

    /* Navbar */
    nav {
        padding: 0 10px;
    }

    nav .nav-links,
    nav .nav-btn {
        display: none;
    }

    .wrap {
        padding: 0 24px;
    }

    .sec-pad {
        padding: 60px 0;
    }

    #hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px 24px;
    }

    .hero-left {
        position: relative;
        z-index: 2;
    }

    /* Pulls Canvas Over the Background on Mobile */
    .hero-right {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        -webkit-mask-image: none;
        mask-image: none;
        opacity: 0;
        pointer-events: none;
    }

    /* Grid Layouts Stack Vertically (1 Column) */
    .about-layout,
    .why-layout,
    .cta-inner,
    .process-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Components Layout Updates */
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .number-stack {
        grid-template-columns: 1fr;
    }

    .metric-cell {
        padding: 30px 20px;
    }

    /* Process Details */
    #process::before {
        width: 500px;
        height: 500px;
        right: -30%;
        top: 60%;
    }

    /* Testimonials Slider Overrides */
    .testi-slider {
        height: 450px;
    }

    .testi-card {
        max-width: 85%;
        padding: 32px 24px;
    }

    .testi-card.next {
        transform: translateX(45%) scale(0.85);
        opacity: 0.4;
        filter: blur(4px);
        pointer-events: none;
    }

    .testi-card.prev {
        transform: translateX(-45%) scale(0.85);
        opacity: 0.4;
        filter: blur(4px);
        pointer-events: none;
    }

    .tcard-text {
        font-size: 0.82rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* Forms */
    .contact-form {
        padding: 32px 24px;
    }

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

    /* Footer */
    footer {
        padding: 15px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        display: none;
    }
}

/* 3. VERY SMALL PHONES (Under 600px) */
@media (max-width: 600px) {
    .metrics-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn-fill,
    .btn-outline {
        width: 100%;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logotitle {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin: 0;
    }

    .caption {
        font-family: 'Anton', sans-serif;
        font-size: 9px;
        font-weight: 100;
    }

    /* RESTORE 3D SLIDER FOR TINY SCREENS */
    .testi-card {
        max-width: 72%;
        padding: 28px 20px;
    }

    .testi-card.next {
        transform: translateX(38%) scale(0.85);
        opacity: 0.5;
        filter: blur(3px);
    }

    .testi-card.prev {
        transform: translateX(-38%) scale(0.85);
        opacity: 0.5;
        filter: blur(3px);
    }

    .tcard-text {
        font-size: 0.78rem;
        margin-bottom: 20px;
    }

    .glow {
        display: block;
    }
}

/* loader */

#mm-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

#mm-loader.ldr-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* subtle grid lines */
.ldr-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

/* ambient colour blobs */
.ldr-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: ldrBlobDrift 8s ease-in-out infinite alternate;
}

.ldr-blob-a {
    width: 420px;
    height: 420px;
    background: rgba(249, 115, 22, 0.10);
    top: -10%;
    left: 10%;
}

.ldr-blob-b {
    width: 360px;
    height: 360px;
    background: rgba(124, 58, 237, 0.09);
    bottom: -10%;
    right: 8%;
    animation-direction: alternate-reverse;
    animation-duration: 10s;
}

@keyframes ldrBlobDrift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.12);
    }
}

/* ── centre stage ── */
.ldr-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 2;
}

/* orbit rings */
.ldr-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px dashed rgba(249, 115, 22, 0.22);
    transform: translate(-50%, -50%);
    animation: ldrOrbitSpin 3s linear infinite;
}

.ldr-orbit-2 {
    width: 196px;
    height: 196px;
    border-color: rgba(124, 58, 237, 0.18);
    animation-duration: 5s;
    animation-direction: reverse;
}

@keyframes ldrOrbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ldr-orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.8), 0 0 20px rgba(249, 115, 22, 0.35);
}

.ldr-orbit-dot-2 {
    background: #7C3AED;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.8), 0 0 20px rgba(124, 58, 237, 0.35);
    top: auto;
    bottom: -4px;
    left: 30%;
}

/* ── logo mark ── */
.ldr-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.ldr-pip {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F97316;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
    animation: ldrPipPulse 2s ease-in-out infinite;
}

@keyframes ldrPipPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 24px rgba(249, 115, 22, 0.9);
    }
}

.ldr-wordmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 1px;
}

.ldr-wm-top {
    font-family: 'Google Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.30em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.ldr-wm-mid {
    font-family: 'Google Sans', -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ldr-wm-bot {
    font-family: 'Google Sans', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.40em;
    color: #F97316;
    text-transform: uppercase;
}

/* ── tagline ── */
.ldr-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ldr-word {
    font-family: 'Google Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(8px);
    animation: ldrWordIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms) forwards;
}

.ldr-sep {
    font-size: 11px;
    color: #F97316;
    opacity: 0.6;
}

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

/* ── progress bar ── */
.ldr-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.ldr-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, #F97316, #7C3AED);
    transition: width 0.08s linear;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* ── percentage counter ── */
.ldr-pct {
    font-family: 'Google Sans', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    color: rgba(255, 255, 255, 0.3);
}

/* ── corner brackets ── */
.ldr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0.35;
}

.ldr-corner-tl {
    top: 24px;
    left: 24px;
    border-top: 1px solid #F97316;
    border-left: 1px solid #F97316;
}

.ldr-corner-tr {
    top: 24px;
    right: 24px;
    border-top: 1px solid #F97316;
    border-right: 1px solid #F97316;
}

.ldr-corner-bl {
    bottom: 24px;
    left: 24px;
    border-bottom: 1px solid #7C3AED;
    border-left: 1px solid #7C3AED;
}

.ldr-corner-br {
    bottom: 24px;
    right: 24px;
    border-bottom: 1px solid #7C3AED;
    border-right: 1px solid #7C3AED;
}