@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --blue: #2563EB;
    --blue-dk: #1D4ED8;
    --blue-deep: #1E40AF;
    --blue-light: #DBEAFE;
    --blue-50: #EFF6FF;
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --g50: #F8FAFC;
    --g100: #F1F5F9;
    --g200: #E2E8F0;
    --g300: #CBD5E1;
    --g400: #94A3B8;
    --g500: #64748B;
    --g600: #475569;
    --g700: #334155;
    --w: #FFFFFF;
    --green: #059669;
    --green-light: #D1FAE5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--navy); background: var(--w); -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--g200);
    padding: 0 40px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { width: 32px; height: 32px; }
.nav-logo span { font-size: 18px; letter-spacing: -0.5px; }
.nav-logo .bold { font-weight: 700; color: var(--navy); }
.nav-logo .reg { font-weight: 400; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--g600); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
    background: var(--blue); color: var(--w); font-size: 14px; font-weight: 600;
    padding: 8px 20px; border-radius: 8px; border: none; cursor: pointer;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-dk); }

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-label {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--blue); margin-bottom: 12px;
}
.section-title {
    font-size: 36px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.2;
    margin-bottom: 16px; color: var(--navy);
}
.section-subtitle {
    font-size: 18px; color: var(--g500); line-height: 1.6; max-width: 640px;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--w) 0%, var(--g50) 100%);
    position: relative;
    overflow: hidden;
}
#gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    --gradient-color-1: #85b6ff;
    --gradient-color-2: #6ee7b7;
    --gradient-color-3: #c4b5fd;
    --gradient-color-4: #7dd3fc;
}
#gradient-canvas.isLoaded {
    opacity: 1;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at bottom left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0) 70%),
        linear-gradient(to top right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 55%);
    pointer-events: none;
    z-index: 0;
}
.hero .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    position: relative;
    z-index: 1;
}
.hero-left { text-align: left; }
.hero-left .section-label { margin-bottom: 20px; }
.hero-title {
    font-size: 46px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.15;
    margin-bottom: 24px; color: var(--navy);
}
.hero-sub {
    font-size: 18px; color: var(--g500); line-height: 1.6; max-width: 520px;
    margin: 0 0 36px;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.hero-email-row {
    display: flex; gap: 8px; max-width: 440px; width: 100%;
}
.hero-email-row input {
    flex: 1; padding: 14px 18px; border: 2px solid var(--g200); border-radius: 10px;
    font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.hero-email-row input:focus { border-color: var(--blue); }
.hero-email-row input::placeholder { color: var(--g400); }
.btn-primary {
    background: var(--blue); color: var(--w); font-size: 15px; font-weight: 600;
    padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
    transition: background 0.2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dk); }
.hero-video-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 500; color: var(--g500);
    cursor: pointer; transition: color 0.2s;
}
.hero-video-link:hover { color: var(--blue); }
.hero-video-link .play-icon {
    width: 36px; height: 36px; border-radius: 50%; background: var(--blue-50);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.hero-video-link:hover .play-icon { background: var(--blue-light); }

/* Hero right — product mockup */
.hero-right {
    position: relative;
}
.hero-mockup {
    width: 100%; border-radius: 16px; overflow: hidden;
    background: var(--navy); box-shadow: 0 24px 80px rgba(15,23,42,0.18), 0 8px 24px rgba(15,23,42,0.1);
    border: 1px solid rgba(255,255,255,0.06);
}
.mockup-toolbar {
    display: flex; align-items: center; gap: 8px; padding: 14px 18px;
    background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #EF4444; }
.mockup-dot.y { background: #F59E0B; }
.mockup-dot.g { background: #22C55E; }
.mockup-toolbar-title {
    flex: 1; text-align: center; font-size: 11px; font-weight: 500;
    color: var(--g400); letter-spacing: 0.3px;
}
.mockup-body { padding: 28px 24px; min-height: 360px; }
.mockup-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.mockup-label {
    font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--g400); width: 100px; flex-shrink: 0;
}
.mockup-bar {
    height: 10px; border-radius: 5px; flex: 1;
}
.mockup-bar.blue { background: var(--blue); opacity: 0.7; }
.mockup-bar.blue-light { background: var(--blue); opacity: 0.35; }
.mockup-bar.gray { background: var(--g500); opacity: 0.3; }
.mockup-divider {
    width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin: 20px 0;
}
.mockup-section-label {
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: #93C5FD; margin-bottom: 14px;
}
.mockup-doc-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: rgba(255,255,255,0.03); border-radius: 8px; margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}
.mockup-doc-icon {
    width: 28px; height: 28px; border-radius: 6px; background: rgba(37,99,235,0.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mockup-doc-icon svg { width: 14px; height: 14px; }
.mockup-doc-name { font-size: 12px; font-weight: 500; color: var(--g300); flex: 1; }
.mockup-doc-status {
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 8px; border-radius: 4px;
}
.mockup-doc-status.ready { background: rgba(5,150,105,0.15); color: #34D399; }
.mockup-doc-status.review { background: rgba(245,158,11,0.15); color: #FBBF24; }
.mockup-doc-status.generating { background: rgba(37,99,235,0.15); color: #93C5FD; }

/* Chat animation */
.chat-anim-container { }
.chat-anim-row {
    padding: 10px 14px; border-radius: 8px; margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    font-size: 11px; line-height: 1.5;
}
.chat-anim-row.user-msg {
    background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.12); color: var(--g300);
    min-height: 37px;
}
.chat-anim-row.ai-msg {
    background: rgba(255,255,255,0.03); color: var(--g400);
    min-height: 70px;
}
.chat-cursor {
    display: inline-block; width: 1px; height: 12px; background: #93C5FD;
    margin-left: 1px; vertical-align: middle;
    animation: cursorBlink 0.6s step-end infinite;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.thinking-dots span {
    display: inline-block; width: 5px; height: 5px; border-radius: 50%;
    background: #34D399; margin: 0 2px;
    animation: dotPulse 1.2s ease-in-out infinite;
}
.thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.thinking-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%,80%,100% { opacity: 0.3; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1); } }

/* Floating badge on hero image */
.hero-float-badge {
    position: absolute; background: var(--w); border-radius: 12px;
    padding: 14px 18px; box-shadow: 0 8px 32px rgba(15,23,42,0.12);
    display: flex; align-items: center; gap: 10px;
}
.hero-float-badge.top-right {
    top: -16px; right: -16px;
}
.hero-float-badge.bottom-left {
    bottom: -16px; left: -16px;
}
.float-badge-icon {
    width: 36px; height: 36px; border-radius: 8px; display: flex;
    align-items: center; justify-content: center;
}
.float-badge-icon.green { background: var(--green-light); }
.float-badge-icon.blue { background: var(--blue-50); }
.float-badge-text { font-size: 12px; font-weight: 600; color: var(--navy); }
.float-badge-sub { font-size: 11px; font-weight: 400; color: var(--g500); }

/* ===== BENEFITS ===== */
.benefits { background: var(--w); }
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px;
}
.benefit-card { text-align: center; }
.benefit-stat {
    font-size: 48px; font-weight: 800; letter-spacing: -2px; color: var(--blue);
    line-height: 1; margin-bottom: 8px;
}
.benefit-label {
    font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.benefit-desc {
    font-size: 14px; color: var(--g500); line-height: 1.6;
}

/* ===== CAPABILITIES ===== */
.capabilities { background: var(--navy-mid); color: var(--w); }
.capabilities .section-label { color: #93C5FD; }
.capabilities .section-title { color: var(--w); }
.capabilities .section-subtitle { color: var(--g400); }
.cap-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.cap-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    padding: 32px 24px; transition: border-color 0.2s, box-shadow 0.2s;
}
.cap-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(37,99,235,0.15); }
.cap-icon {
    width: 48px; height: 48px; border-radius: 12px; background: rgba(37,99,235,0.15);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.cap-icon svg { width: 24px; height: 24px; color: #93C5FD; }
.cap-card h3 {
    font-size: 17px; font-weight: 700; color: var(--w); margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.cap-card p { font-size: 14px; color: var(--g400); line-height: 1.6; }

.cap-lead {
    font-size: 17px; color: var(--g300); line-height: 1.7;
    max-width: 680px; margin-bottom: 20px;
}
.cap-bullets {
    list-style: none; padding: 0; margin: 0 0 56px;
    max-width: 680px;
}
.cap-bullets li {
    font-size: 15px; color: var(--g300); line-height: 1.7;
    padding: 6px 0 6px 28px; position: relative;
}
.cap-bullets li::before {
    content: '';
    position: absolute; left: 0; top: 14px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue);
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--w); color: var(--navy); padding-bottom: 0; }
.how-it-works .section-label { color: var(--blue); }
.how-it-works .section-title { color: var(--navy); }
.how-it-works .section-subtitle { color: var(--g500); }
.steps { margin-top: 72px; display: flex; flex-direction: column; gap: 0; }

.step {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
    padding: 72px 0;
    margin: 0 -32px; padding-left: 32px; padding-right: 32px;
}
.step:nth-child(odd) {
    background: var(--g50);
}
.step:nth-child(even) {
    background: transparent;
}
.step:last-child {
    padding-bottom: 96px;
}
.step:first-child {
    border-top: 1px solid var(--g200);
}
.step-num {
    font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.step-num::after {
    content: ''; flex: 1; height: 1px; background: rgba(37,99,235,0.3); max-width: 60px;
}
.step-text h3 {
    font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px;
    letter-spacing: -0.5px; line-height: 1.2;
}
.step-text p { font-size: 16px; color: var(--g500); line-height: 1.7; margin-bottom: 16px; }
.step-text ul { list-style: none; padding: 0; margin-bottom: 16px; }
.step-text ul li {
    font-size: 14px; color: var(--g600); line-height: 1.7;
    padding: 5px 0 5px 24px; position: relative;
}
.step-text ul li::before {
    content: ''; position: absolute; left: 0; top: 13px;
    width: 8px; height: 8px; border-radius: 2px; background: var(--blue);
}
.step-text .emphasis {
    font-size: 15px; font-weight: 600; color: var(--blue);
    font-style: italic; margin-top: 8px;
}

/* Step illustration panel */
.step-visual {
    background: var(--navy); border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 48px rgba(15,23,42,0.2), 0 4px 16px rgba(15,23,42,0.1);
}
.step-visual-toolbar {
    display: flex; align-items: center; gap: 8px; padding: 12px 16px;
    background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-visual-toolbar .sv-dot { width: 8px; height: 8px; border-radius: 50%; }
.step-visual-toolbar .sv-dot.r { background: #EF4444; }
.step-visual-toolbar .sv-dot.y { background: #F59E0B; }
.step-visual-toolbar .sv-dot.g { background: #22C55E; }
.step-visual-toolbar .sv-title {
    flex: 1; text-align: center; font-size: 10px; font-weight: 500;
    color: var(--g500); letter-spacing: 0.3px;
}
.step-visual-body { padding: 24px; }

/* Shared illustration elements */
.sv-label {
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.sv-label.blue { color: #93C5FD; }
.sv-label.green { color: #34D399; }
.sv-label.amber { color: #FBBF24; }

.sv-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: rgba(255,255,255,0.03); border-radius: 8px; margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}
.sv-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-icon svg { width: 14px; height: 14px; }
.sv-row-text { font-size: 11px; font-weight: 500; color: var(--g300); flex: 1; line-height: 1.4; }
.sv-badge {
    font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}
.sv-badge.done { background: rgba(5,150,105,0.15); color: #34D399; }
.sv-badge.working { background: rgba(37,99,235,0.15); color: #93C5FD; }
.sv-badge.review { background: rgba(245,158,11,0.15); color: #FBBF24; }
.sv-badge.ready { background: rgba(5,150,105,0.15); color: #34D399; }

.sv-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin: 16px 0; }

/* Upload illustration specifics */
.sv-upload-zone {
    border: 2px dashed rgba(37,99,235,0.3); border-radius: 12px;
    padding: 28px; text-align: center; margin-bottom: 16px;
}
.sv-upload-zone svg { margin-bottom: 8px; }
.sv-upload-zone .sv-uz-text { font-size: 12px; color: var(--g400); }
.sv-upload-zone .sv-uz-text span { color: #93C5FD; font-weight: 600; }

.sv-file-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: rgba(37,99,235,0.06); border-radius: 8px; margin-bottom: 6px;
    border: 1px solid rgba(37,99,235,0.1);
}
.sv-file-icon {
    width: 28px; height: 28px; border-radius: 6px; background: rgba(37,99,235,0.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sv-file-icon svg { width: 14px; height: 14px; }
.sv-file-name { font-size: 11px; font-weight: 500; color: var(--g300); flex: 1; }
.sv-file-size { font-size: 10px; color: var(--g500); }

/* Progress bar for working status */
.sv-progress-track {
    width: 100%; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px;
    margin-top: 8px; overflow: hidden;
}
.sv-progress-fill {
    height: 100%; border-radius: 2px; background: var(--blue);
}

/* Review illustration specifics */
.sv-approval-bar {
    display: flex; gap: 8px; margin-top: 12px;
}
.sv-approval-btn {
    flex: 1; padding: 10px; border-radius: 8px; text-align: center;
    font-size: 11px; font-weight: 600; border: none; cursor: default;
}
.sv-approval-btn.approve {
    background: rgba(5,150,105,0.2); color: #34D399; border: 1px solid rgba(5,150,105,0.2);
}
.sv-approval-btn.revise {
    background: rgba(245,158,11,0.1); color: #FBBF24; border: 1px solid rgba(245,158,11,0.15);
}

/* Step responsive */
@media (max-width: 900px) {
    .step { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px; margin: 0 -20px; }
    .step-text h3 { font-size: 24px; }
}

/* ===== WHO IT'S FOR ===== */
.who-for { background: var(--g50); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.who-card {
    background: var(--w); border: 1px solid var(--g200); border-radius: 16px;
    padding: 36px 28px; transition: border-color 0.2s, box-shadow 0.2s;
}
.who-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(37,99,235,0.08); }
.who-badge {
    display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; padding: 4px 10px; border-radius: 6px; margin-bottom: 20px;
}
.who-badge.banks { background: var(--blue-50); color: var(--blue); }
.who-badge.credit { background: #FEF3C7; color: #92400E; }
.who-badge.fintech { background: var(--green-light); color: var(--green); }
.who-card h3 {
    font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.who-card p { font-size: 14px; color: var(--g500); line-height: 1.7; }

/* ===== TEAM ===== */
.team { background: var(--w); }
.team .section-subtitle { margin-bottom: 48px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card { text-align: center; }
.team-photo {
    width: 120px; height: 120px; border-radius: 50%; background: var(--g200);
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    font-size: 36px; font-weight: 700; color: var(--g400);
    overflow: hidden;
}
.team-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.team-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.team-card .bio { font-size: 14px; color: var(--g500); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* Team page — hero */
.team-hero {
    padding: 140px 0 72px;
    background: linear-gradient(180deg, var(--w) 0%, var(--blue-50) 50%, var(--g50) 100%);
    text-align: center;
}
.team-hero .section-label { margin-bottom: 16px; }
.team-hero-title {
    font-size: 44px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.15;
    color: var(--navy); margin-bottom: 24px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.team-hero-sub {
    font-size: 18px; color: var(--g500); line-height: 1.7;
    max-width: 680px; margin: 0 auto;
}

/* Team page — v2 cards */
.team-grid-v2 { display: flex; flex-direction: column; gap: 32px; }
.team-card-v2 {
    display: flex; gap: 40px; align-items: flex-start;
    background: var(--w); border: 1px solid var(--g200); border-radius: 16px;
    padding: 40px; transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card-v2:hover {
    border-color: var(--blue-light); box-shadow: 0 4px 24px rgba(37,99,235,0.06);
}
.team-card-v2-photo {
    width: 160px; height: 160px; border-radius: 12px; background: var(--g100);
    flex-shrink: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.team-card-v2-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials {
    font-size: 48px; font-weight: 700; color: var(--g400);
}
.team-card-v2-info h2 {
    font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.team-card-v2-info .role {
    font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 16px;
}
.team-card-v2-info p {
    font-size: 15px; color: var(--g500); line-height: 1.7; margin-bottom: 12px;
}
.team-card-v2-info p:last-of-type { margin-bottom: 0; }
.team-education {
    display: inline-block; margin-top: 12px;
    font-size: 13px; color: var(--g400); font-style: normal;
}

/* Team page — values */
.team-values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.team-value {
    padding: 32px; background: var(--g50); border-radius: 16px;
    border: 1px solid var(--g200); transition: border-color 0.2s, box-shadow 0.2s;
}
.team-value:hover {
    border-color: var(--blue-light); box-shadow: 0 4px 24px rgba(37,99,235,0.06);
}
.team-value-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    color: var(--blue);
}
.team-value h3 {
    font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.team-value p {
    font-size: 14px; color: var(--g500); line-height: 1.6;
}

/* Team page — legacy detailed cards (kept for compat) */
.team-grid-detailed { grid-template-columns: 1fr; gap: 56px; }
.team-card-detailed {
    display: flex; gap: 40px; align-items: flex-start; text-align: left;
}
.team-photo-lg {
    width: 180px; height: 180px; border-radius: 16px; background: var(--g200);
    flex-shrink: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.team-photo-lg img { width: 100%; height: 100%; object-fit: cover; }
.team-card-info h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-info .role { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 16px; }
.team-card-info .bio { font-size: 15px; color: var(--g500); line-height: 1.7; max-width: none; margin: 0; }

/* ===== TRUST ===== */
.trust { background: var(--g50); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.trust-card {
    background: var(--w); border: 1px solid var(--g200); border-radius: 16px;
    padding: 32px 24px;
}
.trust-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--green-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--green); }
.trust-card h3 {
    font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.trust-card p { font-size: 14px; color: var(--g500); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--w); }
.faq-list { margin-top: 48px; max-width: 800px; }
.faq-item {
    border-bottom: 1px solid var(--g200);
}
.faq-question {
    font-size: 17px; font-weight: 600; color: var(--navy); padding: 24px 0;
    cursor: pointer; list-style: none; display: flex; align-items: center;
    justify-content: space-between; letter-spacing: -0.2px; line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+'; font-size: 24px; font-weight: 300; color: var(--g400);
    margin-left: 24px; flex-shrink: 0; transition: transform 0.2s;
}
details[open] .faq-question::after {
    content: '\2212'; color: var(--blue);
}
.faq-answer {
    padding: 0 0 24px;
}
.faq-answer p {
    font-size: 15px; color: var(--g500); line-height: 1.7;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    background: linear-gradient(180deg, var(--g50) 0%, var(--w) 100%);
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
#gradient-canvas-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    --gradient-color-1: #85b6ff;
    --gradient-color-2: #6ee7b7;
    --gradient-color-3: #c4b5fd;
    --gradient-color-4: #7dd3fc;
}
#gradient-canvas-cta.isLoaded {
    opacity: 1;
}
.bottom-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0) 70%),
        linear-gradient(to bottom left, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 55%);
    pointer-events: none;
    z-index: 0;
}
.bottom-cta .container {
    position: relative;
    z-index: 1;
}
.bottom-cta .section-title { color: var(--navy); margin-bottom: 12px; }
.bottom-cta .section-subtitle { color: var(--g500); margin: 0 auto 40px; text-align: center; }
.bottom-cta .hero-email-row { margin: 0 auto; }
.bottom-cta input { background: var(--w); border-color: var(--g200); color: var(--navy); }
.bottom-cta input::placeholder { color: var(--g400); }
.bottom-cta input:focus { border-color: var(--blue); }
.bottom-cta .email-error { color: #dc2626; text-align: center; margin: 10px auto 0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy); padding: 64px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px;
}
.footer-brand img {
    height: 28px; width: auto; margin-bottom: 16px; display: block;
}
.footer-tagline {
    font-size: 14px; color: var(--g400); line-height: 1.6; max-width: 260px;
}
.footer-col h4 {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--g300); margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    font-size: 14px; color: var(--g400); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--w); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--g500); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-size: 13px; color: var(--g500); text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--g300); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 48px; }
    .hero-left { text-align: left; }
    .hero-actions { align-items: flex-start; }
    .hero::after {
        background:
            radial-gradient(ellipse at bottom left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 70%),
            linear-gradient(to bottom right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 45%);
    }
    .hero-title { font-size: 36px; }
    .hero-sub { margin-bottom: 36px; }
    .hero-float-badge.top-right { top: -12px; right: 8px; }
    .hero-float-badge.bottom-left { bottom: -12px; left: 8px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .team-hero-title { font-size: 32px; }
    .team-card-v2 { flex-direction: column; align-items: center; text-align: center; gap: 24px; padding: 32px; }
    .team-card-v2-info p { max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 12px; }
    .team-card-v2-info p:last-of-type { margin-bottom: 0; }
    .team-card-detailed { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
    .team-card-info .bio { max-width: 560px; margin: 0 auto; }
    .team-values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 28px; }
    .hero-sub { font-size: 16px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefit-stat { font-size: 36px; }
    .cap-grid, .trust-grid { grid-template-columns: 1fr; }
    .step { padding: 40px 20px; }
    .hero-email-row { flex-direction: column; }
    .team-hero { padding: 120px 0 48px; }
    .team-hero-title { font-size: 26px; }
    .team-hero-sub { font-size: 16px; }
    .team-card-v2 { padding: 24px; }
    .team-card-v2-photo { width: 120px; height: 120px; }
    .hero-float-badge { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
