/* ============================================
   Global WorX — Main Stylesheet
   Modern, startup-friendly B2B SaaS design
   ============================================ */

:root {
    --navy: #0b1533;
    --navy-2: #13214d;
    --ink: #0f172a;
    --ink-2: #1e293b;
    --muted: #475569;
    --muted-2: #64748b;
    --line: #e6e9f2;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-mid: #eef2f9;
    --accent: #00b27a;          /* growth green */
    --accent-2: #0ea5a1;        /* teal */
    --accent-blue: #2563eb;
    --accent-grad: linear-gradient(135deg, #00b27a 0%, #0ea5a1 60%, #2563eb 100%);
    --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
    --shadow: 0 10px 30px -12px rgba(15,23,42,.15);
    --shadow-lg: 0 25px 60px -20px rgba(15,23,42,.25);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 .5em;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--muted); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .55em;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn-sm { padding: .6rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(11,21,51,.45);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--navy); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; }
.brand-mark {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--accent-grad); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .95rem;
}
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; color: var(--navy); }
.brand-accent { color: var(--accent); }

.main-nav { display: flex; gap: 6px; }
.nav-link {
    padding: .5rem .9rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--ink-2);
    font-size: .95rem;
    transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--bg-soft); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
    position: relative; overflow: hidden;
    padding: 80px 0 0;
    background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glow {
    position: absolute; top: -120px; right: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(0,178,122,.25), transparent 70%);
    filter: blur(10px);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 75%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px;
    align-items: center;
    padding-bottom: 64px;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 600;
    color: var(--accent-2);
    background: rgba(14,165,161,.08);
    padding: .4rem .9rem; border-radius: 999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(14,165,161,.18);
}
.hero-title { margin-bottom: 20px; }
.text-gradient {
    background: var(--accent-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 1.125rem; color: var(--muted); max-width: 560px;
    margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
    max-width: 560px;
}
.hero-proof li {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .92rem; color: var(--ink-2); font-weight: 500;
}
.hero-proof i { color: var(--accent); }

/* Hero visual - candidate cards */
.hero-visual { position: relative; height: 520px; }
.candidate-card-stack { position: relative; height: 100%; }
.candidate-card {
    position: absolute;
    width: 340px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform .3s;
}
.candidate-card.c1 { top: 10px; left: 0; transform: rotate(-3deg); z-index: 1; }
.candidate-card.c2 { top: 110px; left: 90px; transform: rotate(2deg); z-index: 3; }
.candidate-card.c3 { top: 280px; left: 30px; transform: rotate(-1deg); z-index: 2; }
.candidate-card:hover { transform: translateY(-5px) rotate(0); z-index: 10; }

.candidate-card header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.candidate-card h3 { margin: 0; font-size: 1rem; }
.avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent-grad); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
    flex-shrink: 0;
}
.avatar.av2 { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.avatar.av3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.role-tag { font-size: .8rem; color: var(--muted); }
.status-pill {
    margin-left: auto;
    font-size: .7rem; font-weight: 600;
    color: var(--accent);
    background: rgba(0,178,122,.1);
    padding: 3px 8px; border-radius: 999px;
    display: inline-flex; gap: 4px; align-items: center;
}
.skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.skills span {
    font-size: .72rem; font-weight: 500;
    background: var(--bg-soft); color: var(--ink-2);
    padding: 3px 8px; border-radius: 6px;
}
.score-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    padding: 10px; background: var(--bg-soft); border-radius: 8px;
    margin-bottom: 12px;
}
.score-row > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.score-row span { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.score-row strong { font-size: .95rem; color: var(--navy); font-weight: 700; }
.candidate-card footer {
    display: flex; justify-content: space-between;
    padding-top: 10px; border-top: 1px dashed var(--line);
    font-size: .82rem;
}
.rate { color: var(--accent); font-weight: 700; }
.exp { color: var(--muted); }

/* Client strip */
.client-strip {
    background: #fff; border-top: 1px solid var(--line);
    padding: 32px 0;
}
.strip-label {
    text-align: center; color: var(--muted-2);
    font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
    margin: 0 0 16px;
}
.logo-row {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
    color: var(--muted-2); font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; letter-spacing: .03em;
    opacity: .7;
    font-size: 1.05rem;
}
.logo-row span:nth-child(2n) { font-style: italic; font-weight: 600; }

/* Sections */
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin: 0 auto 48px; text-align: center; }
.section-kicker {
    display: inline-block;
    font-size: .82rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-kicker.light { color: rgba(255,255,255,.8); }
.section-lede { font-size: 1.1rem; color: var(--muted); }

/* Problem Section */
.problem-section { background: var(--bg-soft); }
.problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.problem-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.problem-card:hover {
    transform: translateY(-3px); box-shadow: var(--shadow);
    border-color: transparent;
}
.problem-card.highlight {
    background: var(--navy); color: #fff;
    border-color: var(--navy);
}
.problem-card.highlight h3 { color: #fff; }
.problem-card.highlight p { color: rgba(255,255,255,.75); }
.pc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(0,178,122,.1); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.1rem;
}
.problem-card.highlight .pc-icon {
    background: rgba(255,255,255,.12); color: #fff;
}

/* Solution Section */
.solution-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-bottom: 64px;
}
.solution-feature {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
}
.solution-feature .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem; font-weight: 800;
    background: var(--accent-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: block; margin-bottom: 12px;
}
.solution-feature h3 { margin-bottom: 8px; }

.funnel-visual {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex-wrap: wrap;
    padding: 40px 24px;
    background: linear-gradient(135deg, #eef2f9, #f7f9fc);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.funnel-stage {
    background: #fff; border: 1px solid var(--line);
    padding: 20px 28px; border-radius: var(--radius);
    text-align: center; min-width: 160px;
    box-shadow: var(--shadow-sm);
}
.funnel-stage.fs-4 {
    background: var(--navy); border-color: var(--navy);
    box-shadow: 0 12px 30px -10px rgba(11,21,51,.4);
}
.fs-count {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem; font-weight: 800; color: var(--navy);
    display: block; line-height: 1;
}
.funnel-stage.fs-4 .fs-count { color: #fff; }
.fs-label { font-size: .85rem; color: var(--muted); margin-top: 6px; display: block; }
.funnel-stage.fs-4 .fs-label { color: rgba(255,255,255,.75); }
.funnel-arrow { color: var(--muted-2); }

/* How It Works */
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-bottom: 48px;
}
.step-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--navy); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
}
.step-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(0,178,122,.1); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}

.inline-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 28px 36px;
    background: linear-gradient(135deg, #0b1533, #13214d);
    border-radius: var(--radius-lg);
    color: #fff;
    flex-wrap: wrap;
}
.inline-cta h3 { color: #fff; margin-bottom: 4px; }
.inline-cta p { color: rgba(255,255,255,.75); margin: 0; }

/* Why Global */
.why-section { background: var(--bg-soft); }
.why-grid {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
}
.why-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list i {
    flex-shrink: 0;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .75rem;
}
.why-list strong { display: block; color: var(--navy); margin-bottom: 2px; font-weight: 700; }
.why-list span { color: var(--muted); font-size: .95rem; }

.globe-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow);
}
.globe {
    position: relative;
    width: 240px; height: 240px; margin: 0 auto 24px;
    background: radial-gradient(circle at 35% 35%, #0ea5a1, #0b1533);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.9); font-size: 7rem;
    box-shadow: 0 20px 50px -15px rgba(14,165,161,.5), inset 0 -20px 40px rgba(0,0,0,.25);
}
.pin {
    position: absolute; width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 4px rgba(0,178,122,.25);
    animation: pulse 2s infinite;
}
.pin1 { top: 25%; left: 70%; }
.pin2 { top: 50%; left: 20%; animation-delay: .5s; }
.pin3 { top: 65%; left: 60%; animation-delay: 1s; }
.pin4 { top: 35%; left: 40%; animation-delay: 1.5s; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0,178,122,.25); }
    50% { box-shadow: 0 0 0 10px rgba(0,178,122,0); }
}
.globe-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    text-align: center;
}
.globe-stats strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; color: var(--navy); font-weight: 800;
}
.globe-stats span { font-size: .78rem; color: var(--muted); }

/* Testing */
.testing-section { background: #fff; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .2s;
}
.test-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.tc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent-grad); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* Founder */
.founder-section { background: var(--bg-soft); }
.founder-grid {
    display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center;
}
.founder-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0b1533, #0ea5a1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.founder-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.badge-years {
    position: absolute; bottom: 20px; right: 20px;
    background: #fff; color: var(--navy);
    padding: 12px 16px; border-radius: 12px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: var(--shadow);
}
.badge-years strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; line-height: 1; color: var(--accent); }
.badge-years span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

.founder-credentials {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 10px;
}
.founder-credentials > div {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--ink-2);
    background: #fff;
    padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line);
}
.founder-credentials i { color: var(--accent); }
.founder-credentials span { color: var(--muted); }

.founder-lead { font-size: 1.1rem; color: var(--ink-2); }
blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    background: #fff;
    border-radius: 8px;
    font-style: italic;
    color: var(--ink-2);
}
blockquote cite {
    display: block; margin-top: 12px;
    font-style: normal; font-weight: 600; font-size: .9rem;
    color: var(--muted);
}

/* Proof */
.case-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-bottom: 40px;
}
.case-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    transition: transform .2s, box-shadow .2s;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.case-card header { margin-bottom: 16px; }
.case-role {
    display: block; font-weight: 700; font-size: 1.1rem; color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.case-industry { font-size: .85rem; color: var(--muted); }
.case-card p { color: var(--ink-2); font-style: italic; font-size: .95rem; }
.case-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    padding-top: 16px; border-top: 1px dashed var(--line);
    text-align: center;
}
.case-metrics strong {
    display: block; color: var(--accent);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
}
.case-metrics span { font-size: .72rem; color: var(--muted); }

.roles-placed {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px 28px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.rp-label { margin: 0; font-weight: 600; color: var(--navy); }
.rp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rp-tags span {
    background: var(--bg-soft);
    padding: 6px 12px; border-radius: 999px;
    font-size: .85rem; font-weight: 500; color: var(--ink-2);
}

/* Badges section */
.badges-section { background: var(--bg-soft); padding: 64px 0; }
.badges-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.badge-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    text-align: center;
}
.badge-card i {
    font-size: 2rem; color: var(--accent);
    margin-bottom: 12px; display: block;
}
.badge-card h3 { margin-bottom: 6px; }
.badge-card p { margin: 0; font-size: .95rem; }

/* Final CTA */
.final-cta { background: var(--bg); }
.cta-card {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
    background: linear-gradient(135deg, #0b1533 0%, #13214d 60%, #0ea5a1 140%);
    padding: 56px;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(0,178,122,.4), transparent 70%);
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.cta-perks { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.cta-perks li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); }
.cta-perks i { color: var(--accent); }

.cta-form {
    background: #fff;
    color: var(--ink);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}

/* Centered CTA card variant (no form, single button) */
.cta-card-centered {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 64px 56px;
}
.cta-card-centered .cta-copy { max-width: 720px; margin: 0 auto; }
.cta-perks-center {
    align-items: center;
    display: inline-flex; flex-direction: column;
    margin: 24px auto 32px !important;
}
.cta-final-btn { margin-top: 8px; }
.cta-meta {
    margin-top: 16px;
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    display: inline-flex; align-items: center; gap: 8px;
    justify-content: center;
}
.cta-meta i { color: var(--accent); }

/* Light CTA button variant — for use on dark gradient backgrounds */
.btn-cta-light {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
}
.btn-cta-light:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cta-card-centered { padding: 36px 22px; }
}
.cta-form h3 { margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row label {
    display: block;
    font-size: .85rem; font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: .95rem;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,178,122,.15);
}
.form-note, .form-success {
    text-align: center; font-size: .82rem; color: var(--muted);
    margin: 12px 0 0;
}
.form-success { color: var(--accent); font-weight: 600; }

/* Footer */
.site-footer {
    background: var(--navy); color: rgba(255,255,255,.75);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer .brand-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 320px; margin-top: 12px; }
.footer-col h4 { color: #fff; font-size: .9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col a {
    display: block; margin-bottom: 10px;
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; color: inherit; }

/* Responsive */
@media (max-width: 960px) {
    .section { padding: 72px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; }
    .hero-visual { height: 540px; }
    .hero-proof { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-grid, .steps, .test-grid, .case-grid, .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .founder-grid, .cta-card { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .funnel-visual { flex-direction: column; }
    .funnel-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .main-nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .hero { padding-top: 48px; }
    .hero-visual { height: 620px; }
    .candidate-card { width: 300px; }
    .candidate-card.c2 { left: 30px; }
    .problem-grid, .solution-grid, .steps, .test-grid, .case-grid, .badges-grid { grid-template-columns: 1fr; }
    .inline-cta { flex-direction: column; align-items: flex-start; text-align: left; padding: 24px; }
    .cta-card { padding: 28px 20px; }
    .cta-form { padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo-row { gap: 20px; font-size: .9rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}
