/* ═══════════════════════════════════════════════════════════
   BUZZ BRIDGE — Premium SaaS Design System
   Inspired by Stripe, Linear, Vercel, Notion
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    /* Core palette */
    --indigo: #6366F1;
    --indigo-dark: #4F46E5;
    --indigo-light: #818CF8;
    --violet: #8B5CF6;
    --violet-light: #A78BFA;
    --cyan: #06B6D4;
    --cyan-light: #22D3EE;

    /* Aliases */
    --primary: var(--indigo);
    --primary-dark: var(--indigo-dark);
    --primary-light: var(--indigo-light);
    --secondary: var(--violet);
    --accent: var(--cyan);
    --accent-light: var(--cyan-light);

    /* Surfaces */
    --bg: #F8FAFC;
    --bg-alt: #F1F5F9;
    --bg-subtle: #F8FAFC;
    --surface: #FFFFFF;
    --surface-raised: #FFFFFF;

    /* Hero */
    --hero-bg: linear-gradient(160deg, #0A0E1A 0%, #0F1629 40%, #1A1040 75%, #0D1829 100%);

    /* Text */
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-subtle: #CBD5E1;

    /* Border */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --border-focus: var(--indigo);

    /* Gradients */
    --grad: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --grad-warm: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
    --grad-subtle: linear-gradient(135deg, rgba(99, 102, 241, .06) 0%, rgba(139, 92, 246, .06) 100%);
    --grad-hero: linear-gradient(160deg, #0A0E1A 0%, #0F1629 40%, #1A1040 75%, #0D1829 100%);

    /* Shadows — lighter, more refined */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, .06), 0 2px 4px -2px rgba(15, 23, 42, .04);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, .07), 0 4px 6px -4px rgba(15, 23, 42, .04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, .08), 0 8px 10px -6px rgba(15, 23, 42, .04);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, .15);
    --shadow-glow: 0 0 0 3px rgba(99, 102, 241, .12), 0 8px 30px rgba(99, 102, 241, .2);
    --shadow-card-hover: 0 20px 40px -8px rgba(15, 23, 42, .12), 0 0 0 1px rgba(99, 102, 241, .08);

    /* Radius */
    --r-sm: 8px;
    --r: 12px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-xl: 24px;
    --r-2xl: 32px;

    /* Radius aliases */
    --radius: var(--r);
    --radius-lg: var(--r-lg);
    --radius-xl: var(--r-xl);

    /* Layout */
    --max-w: 1120px;

    /* Transitions */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --transition: all .2s var(--ease);
    --transition-slow: all .4s var(--ease);
}

/* ─── BASE ──────────────────────────────────────────────── */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 112px 0;
}

.section-sm {
    padding: 64px 0;
}

.text-center {
    text-align: center;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.008em;
}

h5 {
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.4;
}

p {
    line-height: 1.7;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 580px;
}

.subtitle.ctr {
    margin: 0 auto;
}

.text-gradient {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--primary);
    background: rgba(99, 102, 241, .07);
    border: 1px solid rgba(99, 102, 241, .14);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.section-header {
    margin-bottom: 72px;
}

.section-header h2 {
    margin-bottom: 18px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--r);
    font-family: inherit;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: -.01em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 14px rgba(99, 102, 241, .3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity .2s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 28px rgba(99, 102, 241, .42);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 16px 34px;
    font-size: .97rem;
    border-radius: var(--r-md);
}

.btn-sm {
    padding: 9px 18px;
    font-size: .83rem;
    border-radius: var(--r-sm);
}

.btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: background .3s var(--ease), border-color .3s, box-shadow .3s;
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav.scrolled {
    background: rgba(248, 250, 252, .92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, .7);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.025em;
    text-decoration: none;
    transition: color .3s;
}

.nav.scrolled .nav-logo {
    color: var(--text);
}

.nav-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--grad);
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: .88rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, .35);
}

.nav-logo span {
    color: var(--primary);
}

.nav.scrolled .nav-logo span {
    color: var(--primary);
}

.nav-logo,
.nav-logo span {
    text-decoration: none !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: color .2s;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav.scrolled .nav-links a:hover {
    background: rgba(99, 102, 241, .06);
    color: var(--primary);
}

.nav.scrolled .nav-links a.active {
    color: var(--primary);
    background: rgba(99, 102, 241, .06);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav.scrolled .nav-links a.active::after {
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta .btn {
    padding: 9px 20px;
    font-size: .84rem;
}

.nav-cta .btn-secondary {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
    box-shadow: none;
}

.nav.scrolled .nav-cta .btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    box-shadow: var(--shadow-xs);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--r-sm);
    transition: background .2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, .08);
}

.nav.scrolled .hamburger:hover {
    background: var(--bg-alt);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: .3s;
}

.nav.scrolled .hamburger span {
    background: var(--text);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: var(--surface);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--hero-bg);
    overflow: hidden;
    padding: 128px 28px 96px;
}

/* Layered noise texture for depth */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .5;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(99, 102, 241, .35) 0%, transparent 70%);
    top: -15%;
    right: -10%;
}

.hero-glow-2 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(6, 182, 212, .22) 0%, transparent 70%);
    bottom: -15%;
    left: -8%;
}

.hero-glow-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(139, 92, 246, .2) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.hero-text {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    letter-spacing: .01em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, .5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(6, 182, 212, 0);
    }
}

.hero h1 {
    margin-bottom: 28px;
    color: #fff;
}

.hero h1 .accent {
    background: linear-gradient(135deg, #22D3EE, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
    max-width: 490px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    box-shadow: 0 4px 16px rgba(6, 182, 212, .38);
    color: #0A0E1A;
    font-weight: 700;
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 8px 28px rgba(6, 182, 212, .5);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .85);
    box-shadow: none;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.hero-stats>div {
    flex: 1;
    padding: 0 24px 0 0;
}

.hero-stats>div+div {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, .07);
}

.hero-stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .42);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 7px;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .03);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-card-logo {
    width: 44px;
    height: 44px;
    background: var(--grad);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, .4);
}

.hero-card-title {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

.hero-card-subtitle {
    font-size: .75rem;
    color: rgba(255, 255, 255, .42);
    margin-top: 2px;
}

.hero-card-badge {
    margin-left: auto;
    background: rgba(6, 182, 212, .12);
    border: 1px solid rgba(6, 182, 212, .2);
    color: var(--cyan-light);
    border-radius: 100px;
    padding: 3px 11px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-card-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    transition: var(--transition);
    cursor: default;
}

.hero-card-item:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(99, 102, 241, .25);
    color: rgba(255, 255, 255, .9);
}

.hero-card-item svg {
    width: 17px;
    height: 17px;
    stroke: var(--cyan-light);
    flex-shrink: 0;
}

.hero-card-reach {
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .18);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-reach-val {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cyan-light);
}

.hero-card-reach-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .42);
    margin-top: 2px;
}

/* Floating chips */
.hero-floating {
    position: absolute;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 9px 15px;
    font-size: .76rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    animation: floatChip 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-f1 {
    top: -18px;
    right: -16px;
    color: var(--cyan-light);
    animation-delay: 0s;
}

.hero-f2 {
    bottom: 10px;
    left: -28px;
    color: #4ade80;
    animation-delay: 2.5s;
}

@keyframes floatChip {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

/* ─── TRUSTED BY ─────────────────────────────────────────── */
.trusted {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    font-size: .73rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 32px;
}

.ticker-wrap {
    overflow: hidden;
    position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 1;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.ticker-row {
    display: flex;
    gap: 12px;
    align-items: center;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-row.reverse {
    animation-direction: reverse;
    margin-top: 10px;
    animation-duration: 32s;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 9px 20px;
    font-weight: 600;
    font-size: .82rem;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
}

.ticker-chip:hover {
    border-color: rgba(99, 102, 241, .3);
    color: var(--primary);
    background: rgba(99, 102, 241, .03);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-founder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.about-founder:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.about-founder-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, .35);
}

.about-founder-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.about-founder-role {
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 4px;
}

.about-founder-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: .875rem;
    line-height: 1.8;
    border-left: 2px solid var(--primary);
    padding-left: 16px;
    text-align: left;
    background: var(--bg-alt);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 14px 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.about-stat {
    background: var(--bg-alt);
    border-radius: var(--r);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-stat:hover {
    border-color: rgba(99, 102, 241, .25);
}

.about-stat-val {
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-lbl {
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--surface);
    border-radius: var(--r);
    padding: 16px 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-pillar:hover {
    border-color: rgba(99, 102, 241, .2);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.about-pillar-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(99, 102, 241, .07);
    display: grid;
    place-items: center;
}

.about-pillar-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--primary);
}

.about-pillar h5 {
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text);
}

.about-pillar p {
    font-size: .8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Top accent line on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
    border-radius: 3px 3px 0 0;
}

/* Subtle bg shimmer */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-subtle);
    opacity: 0;
    transition: opacity .35s;
    border-radius: inherit;
}

.service-card:hover {
    border-color: rgba(99, 102, 241, .2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(99, 102, 241, .07);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(99, 102, 241, .12);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.service-card h3 {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: .875rem;
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.service-tag {
    border-radius: 100px;
    padding: 3px 11px;
    font-size: .71rem;
    font-weight: 500;
    background: var(--bg-alt);
    color: var(--text-muted);
}

.service-tag:nth-child(1) {
    color: var(--primary);
    background: rgba(99, 102, 241, .06);
}

.service-tag:nth-child(2) {
    color: #059669;
    background: rgba(5, 150, 105, .06);
}

.service-tag:nth-child(3) {
    color: var(--violet);
    background: rgba(139, 92, 246, .06);
}

/* ─── PROCESS ────────────────────────────────────────────── */
.process {
    background: var(--bg-alt);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 29px;
    left: 58px;
    right: 58px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 6px;
}

.process-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    letter-spacing: -0.02em;
}

.process-step:hover .process-num {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 0 6px rgba(99, 102, 241, .1), 0 4px 14px rgba(99, 102, 241, .3);
    transform: scale(1.06);
}

.process-step h3 {
    font-size: .925rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: .8rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ─── WHY US ─────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: var(--transition);
    cursor: default;
}

.why-item:hover {
    border-color: rgba(99, 102, 241, .2);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.why-item-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.why-item:nth-child(1) .why-item-icon {
    background: rgba(99, 102, 241, .08);
}

.why-item:nth-child(2) .why-item-icon {
    background: rgba(6, 182, 212, .08);
}

.why-item:nth-child(3) .why-item-icon {
    background: rgba(139, 92, 246, .08);
}

.why-item:nth-child(4) .why-item-icon {
    background: rgba(16, 185, 129, .08);
}

.why-item:hover .why-item-icon {
    transform: scale(1.08);
}

.why-item-icon svg {
    width: 21px;
    height: 21px;
}

.why-item:nth-child(1) .why-item-icon svg {
    stroke: var(--primary);
}

.why-item:nth-child(2) .why-item-icon svg {
    stroke: var(--accent);
}

.why-item:nth-child(3) .why-item-icon svg {
    stroke: var(--secondary);
}

.why-item:nth-child(4) .why-item-icon svg {
    stroke: #10B981;
}

.why-item h4 {
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 5px;
}

.why-item p {
    font-size: .83rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.why-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.why-visual:hover {
    box-shadow: var(--shadow-lg);
}

.why-visual-title {
    font-weight: 700;
    font-size: .975rem;
    margin-bottom: 4px;
}

.why-visual-sub {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.why-stat {
    background: var(--bg-alt);
    border-radius: var(--r);
    padding: 14px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-stat:hover {
    border-color: rgba(99, 102, 241, .2);
}

.why-stat-val {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1;
}

.why-stat-lbl {
    font-size: .69rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
}

.why-bars {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.why-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-bar-name {
    font-weight: 600;
    font-size: .78rem;
    min-width: 88px;
    color: var(--text-secondary);
}

.why-bar-track {
    flex: 1;
    height: 7px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.why-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--grad);
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
}

.why-bar-pct {
    font-size: .73rem;
    color: var(--text-muted);
    min-width: 30px;
    text-align: right;
    font-weight: 600;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Subtle gradient overlay on hover */
.testi-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, .03), transparent);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, .15);
}

.testi-card:hover::after {
    opacity: 1;
}

.testi-card:first-child {
    border-top: 3px solid var(--primary);
}

.testi-stars {
    color: #F59E0B;
    font-size: .82rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .875rem;
    color: var(--text);
}

.testi-role {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 40%, rgba(99, 102, 241, .18), transparent),
        radial-gradient(ellipse 40% 40% at 30% 70%, rgba(6, 182, 212, .1), transparent);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    color: #fff;
    margin-bottom: 18px;
}

.cta-inner p {
    color: rgba(255, 255, 255, .56);
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-xl);
    padding: 32px;
    text-align: left;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cta-form label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    color: #fff;
    font-family: inherit;
    font-size: .875rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, .25);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, .12);
}

.cta-form select option {
    background: #1E293B;
}

.cta-contact-info {
    margin-top: 24px;
    font-size: .84rem;
    color: rgba(255, 255, 255, .38);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
    background: #0A0E1A;
    color: rgba(255, 255, 255, .6);
    padding: 72px 28px 40px;
}

.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 250px;
    color: rgba(255, 255, 255, .38);
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, .45);
}

.footer-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, .4);
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-col h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: var(--cyan-light);
}

/* ─── TOAST ─────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 88px;
    right: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    min-width: 268px;
    transform: translateY(90px);
    opacity: 0;
    transition: all .4s var(--ease-out);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.toast-title {
    font-weight: 700;
    font-size: .875rem;
    color: var(--text);
}

.toast-msg {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── SCROLL TOP ─────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: var(--grad);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 900;
    box-shadow: 0 4px 14px rgba(99, 102, 241, .35);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(99, 102, 241, .45);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta .btn-secondary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stats>div {
        padding-right: 16px;
    }

    .hero-stats>div+div {
        padding-left: 16px;
    }

    .services-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .cta-form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stats>div+div {
        border-left: none;
        padding-left: 0;
    }

    .why-grid {
        gap: 36px;
    }

    .about-grid {
        gap: 40px;
    }
}