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

:root {
    --black-950: #050508;
    --black-900: #0a0a15;
    --black-800: #121225;
    --black-700: #1a1a35;
    --black-600: #252545;
    --black-500: #2a2a5a;
    --platinum: #f8fafc;
    --titanium: #94a3b8;
    --titanium-dim: #64748b;
    --magma: #ec4899;
    --magma-soft: #f472b6;
    --gold: #a855f7;
    --gold-dim: #9333ea;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(168, 85, 247, 0.3);
    --glow: rgba(168, 85, 247, 0.05);
    --purple-main: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.4);
    --purple-glow-strong: rgba(168, 85, 247, 0.6);
    --purple-border: rgba(168, 85, 247, 0.2);
    --glow-magenta: rgba(236, 72, 153, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black-950);
    color: var(--titanium);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mono {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--purple-main);
}

.section-label-center {
    justify-content: center;
}

.section-label-center::before {
    display: none;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--titanium);
    max-width: 640px;
    line-height: 1.7;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(5, 5, 8, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--platinum);
    letter-spacing: -1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mark {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--titanium);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active-nav {
    color: var(--platinum);
}

.nav-links a.active-nav::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--purple-main);
    box-shadow: 0 0 12px var(--purple-glow-strong);
    border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--purple-main);
    color: #fff;
    box-shadow: 0 0 20px var(--purple-glow);
}

.btn-primary:hover {
    background: #b566ff;
    box-shadow: 0 0 30px var(--purple-glow-strong), 0 0 60px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--platinum);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-purple {
    background: var(--purple-main);
    color: #fff;
    border: none;
    font-weight: 800;
    box-shadow: 0 0 25px var(--purple-glow);
}

.btn-purple:hover {
    background: #b566ff;
    box-shadow: 0 0 30px var(--purple-glow-strong), 0 0 60px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.btn-dashboard {
    background: linear-gradient(135deg, var(--purple-main) 0%, var(--magma) 100%);
    color: #fff;
    border: none;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.btn-dashboard:hover {
    background: linear-gradient(135deg, #b566ff 0%, #f472b6 100%);
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 80% 20%, var(--magma-accent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.parallax-bg {
    position: absolute;
    inset: -10%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat;
    opacity: 0.35;
    will-change: transform;
    pointer-events: none;
    filter: saturate(0.3) brightness(1.1) contrast(1.1);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 90%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content { max-width: 600px; }

/* Staggered fade-in */
.hero-fade { opacity: 0; transform: translateY(30px); animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-fade:nth-child(1) { animation-delay: 0.1s; }
.hero-fade:nth-child(2) { animation-delay: 0.2s; }
.hero-fade:nth-child(3) { animation-delay: 0.3s; }
.hero-fade:nth-child(4) { animation-delay: 0.4s; }
.hero-fade:nth-child(5) { animation-delay: 0.5s; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(255, 59, 84, 0.05);
    border: 1px solid rgba(255, 59, 84, 0.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--magma);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 59, 84, 0.4);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(255, 59, 84, 0.4);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 2px rgba(255, 59, 84, 0.2);
    }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    color: var(--titanium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.hero-metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--platinum);
    margin-bottom: 2px;
}

.hero-metric-label {
    font-size: 12px;
    color: var(--titanium-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Hero Phone Visual ── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 520px;
    perspective: 1200px;
}

/* Ambient glow behind phones */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 59, 84, 0.1) 0%, rgba(255, 59, 84, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Light streak behind phones */
.hero-glow-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(-55deg);
    background: linear-gradient(90deg, transparent, rgba(255, 59, 84, 0.25), rgba(255, 59, 84, 0.15), transparent);
    filter: blur(6px);
    pointer-events: none;
}

/* Phone base */
.phone {
    position: absolute;
    width: 220px;
    height: 440px;
    border-radius: 36px;
    background: var(--black-900);
    box-shadow:
        0 0 0 2px var(--black-700),
        0 0 0 4px var(--black-800),
        0 30px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: phone-float 5s ease-in-out infinite;
}

/* Metallic frame edge highlight */
.phone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 5;
}

/* Glass reflection */
.phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    border-radius: 36px 36px 0 0;
    pointer-events: none;
    z-index: 5;
}

/* Front phone */
.phone-front {
    z-index: 3;
    transform: rotateY(-12deg) rotateX(4deg);
    animation-delay: 0s;
}

@keyframes phone-float {

    0%,
    100% {
        transform: rotateY(-12deg) rotateX(4deg) translateY(0);
    }

    50% {
        transform: rotateY(-12deg) rotateX(4deg) translateY(-12px);
    }
}

/* Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: var(--black-900);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #1a2654;
    border-radius: 2px;
}

/* Screen */
.phone-screen {
    position: absolute;
    inset: 3px;
    border-radius: 33px;
    background: var(--black-950);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Status bar */
.phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--titanium);
    z-index: 11;
}

.phone-statusbar-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

/* Screen content */
.phone-body {
    flex: 1;
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: column;
}

.phone-greeting {
    font-size: 10px;
    color: var(--titanium-dim);
    margin-bottom: 2px;
}

.phone-user {
    font-size: 15px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 16px;
}

/* Balance card */
.phone-balance-card {
    background: linear-gradient(135deg, var(--black-700) 0%, var(--black-800) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.phone-balance-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 59, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.phone-balance-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--titanium-dim);
    margin-bottom: 4px;
}

.phone-balance-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--platinum);
    letter-spacing: -0.5px;
}

.phone-balance-amount .cents {
    font-size: 14px;
    color: var(--titanium-dim);
}

.phone-balance-change {
    font-size: 10px;
    font-weight: 600;
    color: #3ecf72;
    margin-top: 4px;
}

/* Quick actions */
.phone-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 6px;
}

.phone-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    background: var(--black-800);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.phone-action-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-700);
    border-radius: 8px;
    color: var(--gold);
}

.phone-action-label {
    font-size: 8px;
    font-weight: 600;
    color: var(--titanium-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Transaction list */
.phone-tx-header {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--titanium-dim);
    margin-bottom: 8px;
}

.phone-tx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.phone-tx-item:last-child {
    border-bottom: none;
}

.phone-tx-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-tx-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.phone-tx-dot.green {
    background: #3ecf72;
}

.phone-tx-dot.red {
    background: var(--magma);
}

.phone-tx-dot.gold {
    background: var(--gold);
}

.phone-tx-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--platinum);
}

.phone-tx-sub {
    font-size: 8px;
    color: var(--titanium-dim);
}

.phone-tx-amount {
    font-size: 11px;
    font-weight: 700;
    text-align: right;
}

.phone-tx-amount.positive {
    color: #3ecf72;
}

.phone-tx-amount.negative {
    color: var(--titanium);
}

/* Floating notification cards */
.phone-float-card {
    position: absolute;
    z-index: 10;
    background: var(--black-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: float-card 5s ease-in-out infinite;
    white-space: nowrap;
}

.phone-float-card-1 {
    top: 60px;
    right: -30px;
    z-index: 10;
}

.phone-float-card-2 {
    bottom: 80px;
    left: -40px;
    z-index: 10;
    animation-delay: -2s;
}

.float-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon.green {
    background: rgba(62, 207, 114, 0.12);
    color: #3ecf72;
}

.float-icon.gold {
    background: rgba(255, 59, 84, 0.1);
    color: var(--gold);
}

.float-text-label {
    font-size: 9px;
    color: var(--titanium-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-text-value {
    font-size: 14px;
    font-weight: 700;
}

.float-text-value.green {
    color: #3ecf72;
}

.float-text-value.gold {
    color: var(--gold);
}

@keyframes float-card {

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

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

/* ── Divider ── */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

/* ── What We Do ── */
.what-we-do-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Capabilities ── */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.capability-card {
    padding: 40px;
    background: rgba(10, 10, 21, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Shimmer hover effect */
.capability-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.05), transparent);
    transition: none;
    pointer-events: none;
}

.capability-card:hover::after {
    left: 150%;
    transition: left 0.8s ease;
}

.capability-card:hover {
    border-color: var(--purple-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.1);
    transform: translateY(-5px);
}

.capability-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    margin-bottom: 24px;
    color: var(--purple-main);
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--purple-main);
    color: #fff;
    box-shadow: 0 0 20px var(--purple-glow);
}

.capability-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.capability-desc {
    font-size: 15px;
    color: var(--titanium);
    line-height: 1.6;
    opacity: 0.8;
}

/* ── Animated Counter Stats ── */
.stats-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-value {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, var(--purple-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--titanium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-bar {
    width: 40px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--purple-main), var(--magma));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar.animate {
    transform: scaleX(1);
}

/* ── Who It's For ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.audience-card {
    padding: 28px 20px;
    background: var(--black-900);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 24px var(--glow);
}

.audience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: var(--black-700);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--gold);
}

.audience-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--platinum);
    line-height: 1.4;
}

/* ── How We Work ── */
.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.how-text h3 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.2;
    margin-bottom: 20px;
}

.how-text p {
    font-size: 15px;
    color: var(--titanium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.how-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Vertical connector line */
.how-visual::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-main), var(--magma), transparent);
    opacity: 0.2;
    z-index: 0;
    border-radius: 1px;
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(10, 10, 21, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.how-step:last-child {
    margin-bottom: 0;
}

.how-step:hover {
    border-color: var(--purple-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
}

.how-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--purple-main);
}

.how-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: 4px;
}

.how-step-desc {
    font-size: 13px;
    color: var(--titanium);
    line-height: 1.5;
}

/* ── World Map ── */
.map-section {
    padding: 120px 0;
    text-align: center;
}

.map-container {
    max-width: 900px;
    margin: 48px auto 0;
    position: relative;
    background: radial-gradient(ellipse 60% 50% at 60% 50%, rgba(255, 255, 255, 0.02), transparent);
    border-radius: 24px;
    padding: 24px;
}

.map-container svg {
    width: 100%;
    height: auto;
}

.map-container svg circle.map-grid-dot {
    r: 2;
}

.map-grid-dot circle {
    r: 2.5;
}

.map-dot {
    fill: var(--magma);
    filter: drop-shadow(0 0 8px rgba(255, 59, 84, 0.8)) drop-shadow(0 0 20px rgba(255, 59, 84, 0.4));
}

.map-dot-pulse {
    fill: var(--magma);
    opacity: 0.6;
    animation: mapPulse 2s ease-in-out infinite;
}

.map-dot-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.map-dot-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes mapPulse {

    0%,
    100% {
        r: 8;
        opacity: 0.6;
    }

    50% {
        r: 16;
        opacity: 0;
    }
}

.map-arc {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    opacity: 0.7;
    animation: arcFlow 2s linear infinite;
}

@keyframes arcFlow {
    to {
        stroke-dashoffset: -20;
    }
}

.map-grid-dot {
    fill: var(--titanium);
    opacity: 0.45;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--titanium);
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--magma);
    box-shadow: 0 0 6px rgba(255, 59, 84, 0.4);
}

.map-legend-line {
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    opacity: 0.5;
}

/* ── Trust ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.trust-card {
    padding: 40px;
    background: rgba(10, 10, 21, 0.4);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
    border-color: var(--purple-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    color: var(--purple-main);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: var(--purple-main);
    color: #fff;
    box-shadow: 0 0 20px var(--purple-glow);
}

.trust-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 8px;
}

.trust-desc {
    font-size: 14px;
    color: var(--titanium);
    line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(10, 10, 21, 0.4);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-quote-icon {
    color: var(--purple-main);
    opacity: 0.6;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--titanium);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--platinum);
}

.testimonial-role {
    font-size: 12px;
    color: var(--titanium-dim);
}

/* ── Partner Logo Marquee ── */
.marquee-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--black-950), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--black-950), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-logos {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 32px;
}

.marquee-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--titanium-dim);
    white-space: nowrap;
    opacity: 0.5;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    filter: grayscale(1);
}

.marquee-section:hover .marquee-logo {
    opacity: 0.7;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* ── FAQ Accordion ── */
.faq-section {
    padding: 120px 0;
}

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

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: var(--platinum);
    padding-right: 16px;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--titanium-dim);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--titanium);
    line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--black-950) 0%, transparent 30%, transparent 70%, var(--black-950) 100%);
    pointer-events: none;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 59, 84, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--platinum);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 16px;
    color: var(--titanium);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ── Back to Top ── */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--black-700);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--titanium-dim);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

.back-to-top:hover {
    color: var(--platinum);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── Footer ── */
.footer { padding: 120px 0 60px; background: #040406; border-top: 1px solid var(--border); position: relative; }
.footer-top { display: flex; justify-content: space-between; gap: 80px; margin-bottom: 80px; align-items: flex-start; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--titanium-dim); font-size: 14px; margin-top: 24px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; flex: 1; }
.footer-col h4 { text-align: left; color: var(--platinum); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; text-align: left; }
.footer-col a { color: var(--titanium-dim); text-decoration: none; transition: 0.3s; font-size: 15px; }
.footer-col a:hover { color: #a855f7; padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; color: var(--titanium-dim); font-size: 14px; gap: 24px; }
.footer-bottom-right { display: flex; align-items: center; gap: 32px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--titanium-dim); text-decoration: none; transition: 0.3s; font-size: 13px; font-weight: 500; }
.footer-legal a:hover { color: var(--purple-main); }
.copyright { font-size: 14px; color: var(--titanium-dim); }
.back-to-top { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: #fff; padding: 10px 20px; border-radius: 30px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.back-to-top:hover { border-color: #a855f7; background: rgba(168, 85, 247, 0.05); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(168, 85, 247, 0.1); }

@media (max-width: 768px) {
    .footer { padding: 80px 0 40px; }
    .footer-top { gap: 40px; margin-bottom: 40px; }
    .footer-brand { max-width: 100%; }
    .footer-links { grid-template-columns: 1fr; gap: 32px; }
    .footer-col h4 { margin-bottom: 16px; font-size: 12px; }
    .footer-col ul { gap: 12px; }
    .footer-col a { font-size: 14px; }
    .footer-bottom { padding-top: 24px; gap: 16px; font-size: 13px; }
    .footer-bottom-right { gap: 16px; }
    .footer-legal { gap: 12px; }
    .back-to-top { padding: 8px 16px; font-size: 12px; gap: 6px; }
    .nav-inner {padding: 0 !important}
}

@media (max-width: 480px) {
    .footer { padding: 60px 0 32px; }
    .footer-top { gap: 24px; margin-bottom: 24px; }
    .footer-links { grid-template-columns: 1fr; gap: 20px; }
    .footer-col h4 { margin-bottom: 12px; font-size: 11px; letter-spacing: 1px; }
    .footer-col ul { gap: 10px; }
    .footer-col a { font-size: 13px; }
    .copyright { font-size: 12px; }
    .footer-bottom { padding-top: 16px; gap: 12px; font-size: 12px; flex-wrap: wrap; }
    .footer-legal { gap: 8px; font-size: 12px; }
    .back-to-top { padding: 8px 12px; font-size: 11px; }
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

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

    .parallax-bg {
        display: none;
    }

    .hero-fade {
        opacity: 1;
        transform: none;
        animation: none;
    }

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

    .stat-bar {
        transform: scaleX(1);
        transition: none;
    }
}

/* ── Mobile ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--platinum);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease-in-out;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--titanium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--purple-main);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none !important;
    border: 2px solid var(--platinum) !important;
    color: var(--platinum) !important;
    cursor: pointer !important;
    padding: 12px !important;
    z-index: 10000 !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
}

.mobile-menu-close svg {
    pointer-events: none;
    width: 24px;
    height: 24px;
}

.mobile-menu-close:hover {
    color: var(--purple-main) !important;
    border-color: var(--purple-main) !important;
    box-shadow: 0 0 15px var(--purple-glow) !important;
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu .btn {
    margin-top: 16px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .md-show {
        display: none;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 20px;
        min-height: 480px;
    }

    .phone-float-card-1 {
        right: 0;
    }

    .phone-float-card-2 {
        left: 0;
    }

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

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

    .how-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .what-we-do-text {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-metrics {
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {

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

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

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

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

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: left; 
        align-items: flex-start;
    }

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

    .phone-float-card {
        display: none;
    }

    .phone-front {
        position: relative;
        transform: rotateY(-8deg) rotateX(3deg);
    }

    @keyframes phone-float {

        0%,
        100% {
            transform: rotateY(-8deg) rotateX(3deg) translateY(0);
        }

        50% {
            transform: rotateY(-8deg) rotateX(3deg) translateY(-10px);
        }
    }

    .hero-visual {
        min-height: 460px;
    }

    .parallax-bg {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .map-legend {
        flex-wrap: wrap;
        gap: 16px;
    }
}

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Content Rows (Photo + Text) ── */
.content-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-row-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.content-row-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.content-row-image:hover img {
    transform: scale(1.05);
}

.content-row-text {
    flex: 1;
}

.content-row-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--platinum);
    margin-bottom: 24px;
}

.content-row-text p {
    font-size: 18px;
    color: var(--titanium);
    line-height: 1.8;
}

/* ── Photo Grid ── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.photo-grid-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    aspect-ratio: 16/10;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--platinum);
    font-weight: 600;
}

/* ── Inner Hero (Premium Version) ── */
.inner-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--black-950);
    overflow: hidden;
    text-align: center;
}

.inner-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.inner-hero .hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 84, 0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.inner-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 10%, transparent 80%);
}

.inner-hero h1 {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.inner-hero h1 span {
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-hero p {
    font-size: 19px;
    color: var(--titanium);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ── Content Rows Refinement ── */
.content-row-image {
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 24px;
}

.content-row-image img {
    border-radius: 23px;
    background: var(--black-900);
}


/* ── Forms ── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--platinum);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-control {
    background: var(--black-900);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--platinum);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-dim);
    background: var(--black-800);
    box-shadow: 0 0 16px rgba(255, 59, 84, 0.05);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ── Map ── */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--black-900);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.1);
}

/* ── Additional Layout ── */
.value-card {
    text-align: center;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gold);
}

/* ── Global Utility for Horizontal Overflow ── */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* ── Trust & Awards Section ── */
.trust-awards-box {
    padding: 100px 0;
    background: var(--black-950);
}

.trust-awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-awards-header h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--platinum);
    letter-spacing: -0.5px;
    opacity: 0.9;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.award-box {
    padding: 40px;
    background: var(--black-900);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 48px var(--glow);
    transform: translateY(-4px);
}

.award-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================================================
   FINAL RESPONSIVE OVERRIDES (MOBILE FIRST PASS)
   ================================================== */

.wwd-image-container {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.wwd-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}
.wwd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,10,0.3) 0%, transparent 40%, transparent 60%, rgba(5,5,10,0.3) 100%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero h1 { font-size: 56px; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 64px 0 !important; }
    .container { padding: 0 24px !important; }

    /* Layout stacking */
    .content-row, 
    .content-row:nth-child(even),
    .what-we-do-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 48px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .capabilities-grid,
    .awards-grid,
    .photo-grid,
    .testimonials-grid,
    .stats-grid,
    .audience-grid,
    .trust-grid,
    .faq-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Typography scaling */
    h1, .hero h1 { font-size: 42px !important; line-height: 1.1 !important; letter-spacing: -1.5px !important; }
    h2, .section-title { font-size: 32px !important; line-height: 1.2 !important; }
    .section-subtitle { font-size: 17px !important; }

    /* Component adjustments */
    .hero-visual { min-height: auto !important; margin-top: 40px; }
    .hero-metrics { flex-direction: column !important; gap: 32px !important; margin-top: 48px !important; text-align: center !important; }
    
    /* Buttons */
    .hero-actions { flex-direction: column !important; width: 100% !important; gap: 16px !important; }
    .btn { width: 100% !important; justify-content: center !important; padding: 18px !important; min-height: 52px !important; }

    /* Images */
    .content-row-image, 
    .wwd-image-container {
        width: 100% !important;
        height: auto !important;
    }
    .wwd-image { height: auto !important; }
}

@media (max-width: 480px) {
    .section { padding: 56px 0 !important; }
    h1, .hero h1 { font-size: 34px !important; }
    h2, .section-title { font-size: 28px !important; }

    .hero-metric-value { font-size: 24px !important; }
    .nav-inner { padding: 0 16px; }

    .section-title, .section-title ~ p{
        text-align: left;
    }
}

/* ── Theme Toggle Button ── */
.theme-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: #fff;
    padding: 10px 12px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--purple-main);
    background: rgba(168, 85, 247, 0.05);
    transform: rotate(20deg);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.1);
}

.theme-toggle svg {
    position: absolute;
    width: 16px;
    height: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

.theme-toggle.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.theme-toggle.dark-mode .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* ── Light Mode Colors ── */
body.light-mode {
    background-color: #fcfdff;
    color: #1e293b;
    --black-950: #ffffff;
    --black-900: rgba(248, 250, 252, 0.8);
    --black-800: #f1f5f9;
    --black-700: #e2e8f0;
    --black-600: #cbd5e1;
    --platinum: #0f172a;
    --titanium: #475569;
    --titanium-dim: #64748b;
    --magma: #db2777;
    --magma-soft: #f472b6;
    --purple-main: #7c3aed;
    --gold: #7c3aed;
    --gold-dim: #6d28d9;
    --glow-magenta: rgba(219, 39, 119, 0.1);
    --purple-glow: rgba(124, 58, 237, 0.2);
    --purple-glow-strong: rgba(124, 58, 237, 0.4);
    --purple-border: rgba(124, 58, 237, 0.1);
    --border: rgba(124, 58, 237, 0.1);
    --border-hover: rgba(124, 58, 237, 0.2);
    --glow: rgba(124, 58, 237, 0.05);
}

body.light-mode::before {
    background: radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(219, 39, 119, 0.06) 0%, transparent 40%),
                #fcfdff !important;
}

/* Light mode nav */
body.light-mode .nav.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

body.light-mode .mobile-menu-btn {
    color: #0f172a !important;
}

body.light-mode .nav-logo {
    color: #0f1025;
}

body.light-mode .nav-links a {
    color: #475569;
    font-weight: 600;
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active-nav {
    color: var(--purple-main);
}

body.light-mode .nav-links a.active-nav::after {
    background: var(--purple-main);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

body.light-mode .mobile-menu {
    background: rgba(252, 253, 255, 0.98);
}

body.light-mode .mobile-menu a {
    color: #475569;
}

body.light-mode .mobile-menu a:hover {
    color: var(--purple-main);
}

body.light-mode .mobile-menu-close {
    border-color: #0f172a !important;
    color: #0f172a !important;
}

body.light-mode .mobile-menu-close:hover {
    color: var(--purple-main) !important;
    border-color: var(--purple-main) !important;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2) !important;
}

/* Light mode buttons */
body.light-mode .btn-ghost {
    background: rgba(255, 255, 255, 0.5);
    color: #0f172a;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

body.light-mode .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--purple-main);
}

body.light-mode .btn-purple,
body.light-mode .btn-primary {
    background: var(--purple-main);
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

body.light-mode .btn-purple:hover,
body.light-mode .btn-primary:hover {
    background: #6d28d9;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

body.light-mode .btn-dashboard {
    background: linear-gradient(135deg, var(--purple-main) 0%, #db2777 100%);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
}

body.light-mode .btn-dashboard:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #c2185b 100%);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.3);
}

/* Light mode footer */
body.light-mode .footer {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    background: #fcfdff;
}

body.light-mode .footer-brand p {
    color: #64748b;
}

body.light-mode .footer-col h4 {
    color: #0f172a;
}

body.light-mode .footer-col a {
    color: #64748b;
}

body.light-mode .footer-col a:hover {
    color: var(--purple-main);
}

body.light-mode .footer-legal a {
    color: #64748b;
}

body.light-mode .footer-legal a:hover {
    color: var(--purple-main);
}

body.light-mode .back-to-top {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(124, 58, 237, 0.2);
    color: #0f172a;
}

body.light-mode .back-to-top:hover {
    border-color: var(--purple-main);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

body.light-mode .copyright {
    color: #64748b;
}

/* Light mode theme toggle */
body.light-mode .theme-toggle,
body.light-mode .back-to-top {
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.1);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}

body.light-mode .theme-toggle:hover,
body.light-mode .back-to-top:hover {
    background: #ffffff;
    border-color: var(--purple-main);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
    color: var(--purple-main);
}

/* Light mode trust page */
body.light-mode .inner-hero {
    background: #fcfdff;
}

body.light-mode .trust-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

body.light-mode .trust-card:hover {
    background: #ffffff;
    border-color: var(--purple-main);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

body.light-mode .trust-card:hover .trust-icon {
    background: var(--purple-main);
    color: #ffffff !important;
}

body.light-mode .trust-card:hover .trust-icon svg {
    stroke: #ffffff;
    color: #ffffff;
}

body.light-mode .trust-title {
    color: #0f172a;
}

body.light-mode .trust-desc {
    color: #64748b !important;
}

body.light-mode .content-row {
    color: #475569;
}

body.light-mode .content-row-text p {
    color: #475569;
}

/* ── Global Light Mode Component Overrides ── */
body.light-mode .capability-card,
body.light-mode .how-step,
body.light-mode .audience-card,
body.light-mode .trust-card,
body.light-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.1) !important;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05) !important;
}

body.light-mode .capability-card:hover,
body.light-mode .how-step:hover,
body.light-mode .audience-card:hover,
body.light-mode .trust-card:hover,
body.light-mode .testimonial-card:hover {
    background: #ffffff !important;
    border-color: var(--purple-main) !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1) !important;
}

body.light-mode .capability-title,
body.light-mode .how-step-title,
body.light-mode .audience-title,
body.light-mode .trust-title {
    color: #0f172a !important;
}

body.light-mode .capability-desc,
body.light-mode .how-step-desc,
body.light-mode .audience-desc,
body.light-mode .trust-desc {
    color: #475569 !important;
}

body.light-mode .form-label {
    color: #0f172a !important;
}

body.light-mode .form-control {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}

body.light-mode .form-control:focus {
    border-color: var(--purple-main) !important;
    background: #ffffff !important;
}

body.light-mode .how-visual::before {
    background: linear-gradient(180deg, var(--purple-main), var(--magma), transparent) !important;
    opacity: 0.1 !important;
}

body.light-mode .inner-hero {
    background: #f8fafc !important;
}