/* ── Self-hosted Geist Font ── */
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 400; font-display: swap; src: url('/landing-assets/fonts/geist-400.ttf') format('truetype'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-display: swap; src: url('/landing-assets/fonts/geist-500.ttf') format('truetype'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-display: swap; src: url('/landing-assets/fonts/geist-600.ttf') format('truetype'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 700; font-display: swap; src: url('/landing-assets/fonts/geist-700.ttf') format('truetype'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 800; font-display: swap; src: url('/landing-assets/fonts/geist-800.ttf') format('truetype'); }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 900; font-display: swap; src: url('/landing-assets/fonts/geist-900.ttf') format('truetype'); }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* Page loader removed — static pages should not block content */

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: #f8f9fc; }

/* ── Nav ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 15, 30, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-brand { font-weight: 900; font-size: 22px; color: #fff; letter-spacing: -0.5px; }
.nav-brand span { color: #5ba8f5; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65);
    transition: color 0.25s; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: #5ba8f5;
    transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
/* nav-cta-outline removed (element no longer in HTML) */
.nav-cta {
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff !important; padding: 10px 24px;
    border-radius: 10px; font-weight: 700; font-size: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 15px rgba(45, 125, 210, 0.3);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(45, 125, 210, 0.5);
}
.nav-cta::after { display: none !important; }

/* ── Hero ── */
.hero {
    position: relative; padding: 120px 0 80px;
    background: #0a0f1e; color: #fff;
    overflow: hidden; min-height: 100dvh;
    display: flex; flex-direction: column; justify-content: center;
}

/* Hero split layout */
.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    text-align: left;
}
.hero-right {
    position: relative;
}
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-sub { text-align: center; }
    .hero-right { display: none; }
}
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.3; pointer-events: none;
}
.hero::before {
    width: 600px; height: 600px; top: -200px; right: -100px;
    background: radial-gradient(circle, #2D7DD2 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}
.hero::after {
    width: 500px; height: 500px; bottom: -200px; left: -100px;
    background: radial-gradient(circle, #1e5fa8 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(45, 125, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 125, 210, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 100px;
    background: rgba(45, 125, 210, 0.12); border: 1px solid rgba(45, 125, 210, 0.2);
    font-size: 13px; font-weight: 600; color: #7db8f0;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #5ba8f5; animation: dotPulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 125, 210, 0.1); }
    50% { box-shadow: 0 0 0 8px rgba(45, 125, 210, 0); }
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
    font-size: clamp(38px, 5.5vw, 64px); font-weight: 900;
    line-height: 1.08; letter-spacing: -2px;
    max-width: 820px; margin: 0 0 24px;
}
/* Hero accent: solid color, no gradient animation */
.hero-accent {
    color: #5ba8f5;
}
/* Warm accent for about/interest sections */
.accent-warm {
    color: #e8a44a;
}
.hero p.hero-desc {
    font-size: 19px; color: rgba(176, 196, 222, 0.85); max-width: 600px;
    margin: 0 0 44px; line-height: 1.75;
}
.hero-buttons { display: flex; justify-content: flex-start; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff; padding: 18px 36px;
    border-radius: 14px; font-size: 16px; font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(45, 125, 210, 0.35);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 125, 210, 0.5);
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 36px; border-radius: 14px;
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    transition: all 0.3s;
}
.btn-secondary:hover {
    color: #fff; border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
}
.hero-sub { margin-top: 20px; font-size: 14px; color: rgba(155, 180, 210, 0.85); text-align: left; }

/* ── Animated Stats Bar ── */
.stats-bar {
    margin-top: 80px; padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
    text-align: center; padding: 8px 0;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 15%;
    height: 70%; width: 1px;
    background: rgba(255,255,255,0.08);
}
.stat-value {
    font-size: 42px; font-weight: 900; letter-spacing: -2px;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: rgba(155, 180, 210, 0.85); margin-top: 6px; font-weight: 500; }

/* ── Live Workflow Animation ── */
.workflow-visual {
    margin-top: 0; position: relative;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
}
.workflow-label {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #0a0f1e; padding: 4px 16px;
    font-size: 11px; font-weight: 700; color: rgba(91, 168, 245, 0.6);
    text-transform: uppercase; letter-spacing: 2px;
}
.workflow-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: nowrap;
}
.wf-node {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 12px; position: relative;
    opacity: 0; animation: nodeAppear 0.5s forwards;
}
.wf-node:nth-child(1) { animation-delay: 0.3s; }
.wf-node:nth-child(3) { animation-delay: 0.6s; }
.wf-node:nth-child(5) { animation-delay: 0.9s; }
.wf-node:nth-child(7) { animation-delay: 1.2s; }
.wf-node:nth-child(9) { animation-delay: 1.5s; }
@keyframes nodeAppear {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.wf-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; position: relative;
    background: rgba(45, 125, 210, 0.1);
    border: 1px solid rgba(45, 125, 210, 0.2);
    transition: all 0.3s;
}
.wf-node.active .wf-icon {
    background: rgba(45, 125, 210, 0.2);
    border-color: rgba(45, 125, 210, 0.4);
    box-shadow: 0 0 20px rgba(45, 125, 210, 0.3);
}
.wf-node-label {
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}
.wf-node.active .wf-node-label { color: rgba(255,255,255,0.8); }
.wf-connector {
    width: 40px; height: 2px; position: relative;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.wf-connector::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, #2D7DD2, #5ba8f5);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s ease;
}
.wf-connector.active::after { transform: scaleX(1); }

/* ── Tool Logos Strip ── */
.tools-strip {
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid #eef0f4;
}
.tools-strip-label {
    text-align: center;
    font-size: 11px; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 28px;
}
.tools-grid {
    display: flex; justify-content: center; align-items: center;
    gap: 40px; flex-wrap: wrap;
}
.tool-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700; color: #9ca3af;
    transition: color 0.3s;
}
.tool-item:hover { color: #4b5563; }
.tool-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    background: #f3f4f6;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 100px;
    background: rgba(45, 125, 210, 0.08); border: 1px solid rgba(45, 125, 210, 0.12);
    font-size: 12px; font-weight: 700; color: #2D7DD2;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(30px, 4vw, 44px); font-weight: 900;
    letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1;
}
.section-header p { font-size: 17px; color: #6b7280; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Before/After Transformations ── */
.transforms-stagger {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.transforms-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.transform-wide {
    max-width: 680px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .transforms-row { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .transform-wide { max-width: 440px; }
}
.transform-compact {
    border-radius: 16px; padding: 0;
    border: 1px solid #eef0f4; background: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden; cursor: pointer;
}
.transform-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border-color: transparent;
}
.tc-header { padding: 28px 24px 24px; }
.tc-icon { font-size: 28px; margin-bottom: 12px; }
.tc-title {
    font-size: 18px; font-weight: 800; margin-bottom: 12px;
    letter-spacing: -0.3px; color: #0f1729;
}
.tc-before-after { display: flex; flex-direction: column; gap: 8px; }
.tc-line {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; line-height: 1.5;
}
.tc-x { color: #CC2E2E; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.tc-check { color: #22965A; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.tc-line-text { color: #4b5563; }
.tc-line-text strong { color: #0f1729; font-weight: 700; }
.tc-divider { width: 100%; height: 1px; background: #eef0f4; }
.tc-expand-bar {
    padding: 14px 24px;
    background: #f9fafb; border-top: 1px solid #eef0f4;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 600; color: #2D7DD2;
    transition: background 0.2s;
}
.transform-compact:hover .tc-expand-bar { background: #f3f4f6; }
.tc-expand-arrow {
    transition: transform 0.3s;
    font-size: 14px;
}
.transform-compact.expanded .tc-expand-arrow { transform: rotate(180deg); }
.tc-details {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.transform-compact.expanded .tc-details { max-height: 300px; }
.tc-details-inner {
    padding: 20px 24px 24px;
    border-top: 1px solid #eef0f4;
}
.tc-detail-row { margin-bottom: 16px; }
.tc-detail-row:last-child { margin-bottom: 0; }
.tc-detail-label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 4px;
}
.tc-detail-label.before { color: #CC2E2E; }
.tc-detail-label.after { color: #22965A; }
.tc-detail-text { font-size: 13px; color: #6b7280; line-height: 1.6; }
.tc-time-saved {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: #22965A;
    margin-top: 12px; padding: 4px 10px;
    background: rgba(34, 150, 90, 0.08); border-radius: 100px;
}

/* ── How It Works ── */
.steps-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.steps-timeline .step {
    flex: 1;
    text-align: center;
    padding: 44px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eef0f4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.step-connector {
    display: flex;
    align-items: center;
    padding: 0 4px;
}
.step-connector::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb, #2D7DD2, #e5e7eb);
    border-radius: 1px;
}
@media (max-width: 900px) {
    .steps-timeline { flex-direction: column; max-width: 440px; margin: 0 auto; gap: 16px; }
    .step-connector { padding: 8px 0; justify-content: center; }
    .step-connector::before { width: 2px; height: 32px; background: linear-gradient(180deg, #e5e7eb, #2D7DD2, #e5e7eb); }
}
.step {
    text-align: center; padding: 44px 28px;
    border-radius: 20px; background: #fff;
    border: 1px solid #eef0f4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, #2D7DD2, #5ba8f5);
    transform: scaleX(0); transition: transform 0.4s ease;
}
.step:hover::before { transform: scaleX(1); }
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: transparent; }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff; font-size: 16px; font-weight: 900;
    margin-bottom: 20px;
}
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.step p { font-size: 15px; color: #6b7280; line-height: 1.7; }
.step-timeline {
    font-size: 12px; font-weight: 700; color: #2D7DD2;
    margin-top: 16px; display: inline-block;
    padding: 4px 12px; border-radius: 100px;
    background: rgba(45, 125, 210, 0.08);
}

/* ── Demo Workflows ── */
.demos-featured {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}
.demo-primary {
    grid-row: 1;
}
.demos-secondary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (max-width: 900px) {
    .demos-featured { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
.demo-card {
    border-radius: 20px; overflow: hidden;
    border: 1px solid #eef0f4; background: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.demo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}
.demo-card-header {
    padding: 28px 28px 24px;
    background: linear-gradient(135deg, #0f1729 0%, #162240 100%);
    color: #fff; position: relative; overflow: hidden;
}
.demo-card-header::after {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(45, 125, 210, 0.1);
}
.demo-card-icon { font-size: 32px; margin-bottom: 14px; }
.demo-card-header h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.3px; }
.demo-card-header p { font-size: 13px; color: #7a9cc6; }
.demo-card-body { padding: 24px 28px; }
.demo-card-body ul { list-style: none; }
.demo-card-body li {
    padding: 10px 0; font-size: 14px; color: #4b5563;
    border-bottom: 1px solid #f5f6f8;
    display: flex; align-items: flex-start; gap: 10px;
}
.demo-card-body li:last-child { border-bottom: none; }
.demo-check {
    width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
    background: linear-gradient(135deg, #e8f5ed, #d4f0dc);
    color: #22965A; font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.demo-card-footer {
    padding: 16px 28px; background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    display: flex; align-items: center; justify-content: space-between;
}
.demo-footer-left { display: flex; align-items: center; gap: 8px; }
.demo-time-icon { font-size: 14px; }
.demo-time { font-size: 13px; color: #6b7280; font-weight: 600; }
.demo-watch {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: #2D7DD2;
    transition: all 0.25s;
}
.demo-watch:hover { color: #1a6bc4; gap: 8px; }
.demo-watch-arrow { transition: transform 0.25s; }
.demo-watch:hover .demo-watch-arrow { transform: translateX(2px); }
.demo-card-case-study {
    padding: 10px 28px 14px; text-align: center;
    border-top: 1px solid #f0f1f3; background: #f4f6f9;
    border-radius: 0 0 16px 16px;
}
.demo-card-case-study a {
    font-size: 12px; font-weight: 700; color: #2D7DD2;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: color 0.25s;
}
.demo-card-case-study a:hover { color: #1a6bc4; }

/* ── About / Credibility ── */
.about-section { background: #0a0f1e; color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.about-section::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.08), transparent 70%);
    pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.about-left h2 {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 900;
    letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.15;
}
/* gradient-text replaced by .accent-warm in HTML */
.about-bio {
    font-size: 16px; color: rgba(176, 196, 222, 0.85);
    line-height: 1.8; margin-bottom: 32px;
}
.about-bio strong { color: #fff; font-weight: 700; }
.about-cred-list { list-style: none; }
.about-cred-list li {
    padding: 10px 0; font-size: 15px; color: rgba(176, 196, 222, 0.75);
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-cred-list li:last-child { border-bottom: none; }
.about-cred-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    background: rgba(45, 125, 210, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card {
    padding: 28px 24px; border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.about-stat-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
/* about-stat-value removed -- replaced by icon + title layout */
.about-stat-label {
    font-size: 13px; color: rgba(155, 180, 210, 0.85); font-weight: 500;
}

/* ── Pricing ── */
.pricing-featured {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 20px;
    margin-top: 56px;
    align-items: start;
}
.pricing-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pricing-featured .price-card.featured {
    padding: 48px 32px;
    transform: scale(1.02);
}
.price-highlight {
    font-size: 13px;
    font-weight: 700;
    color: #22965A;
    padding: 8px 14px;
    background: rgba(34, 150, 90, 0.08);
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 1100px) {
    .pricing-featured { grid-template-columns: 1fr 1fr; }
    .pricing-featured .price-card.featured { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .pricing-featured { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
.price-card {
    border-radius: 20px; padding: 36px 24px;
    border: 1px solid #eef0f4; background: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.price-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #2D7DD2, #5ba8f5) border-box;
    box-shadow: 0 12px 40px rgba(45, 125, 210, 0.15);
}
.price-card.featured:hover { box-shadow: 0 20px 60px rgba(45, 125, 210, 0.25); }
.price-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff; padding: 6px 20px;
    border-radius: 100px; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(45, 125, 210, 0.4);
}
.price-card h3 {
    font-size: 22px; font-weight: 800; color: #0f1729;
    letter-spacing: -0.5px; margin-bottom: 8px;
}
.price-tagline {
    font-size: 14px; font-weight: 600; color: #2D7DD2;
    margin-bottom: 16px; display: block;
}
.price-desc { font-size: 15px; color: #6b7280; margin-bottom: 20px; line-height: 1.6; }
.price-examples {
    font-size: 12px; color: #9ca3af; margin-bottom: 24px;
    line-height: 1.5; font-style: italic;
}
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
    padding: 9px 0; font-size: 14px; color: #4b5563;
    display: flex; gap: 12px; align-items: flex-start;
}
.price-features .check {
    width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
    background: #e8f5ed; color: #22965A; font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.price-btn {
    display: block; width: 100%; text-align: center;
    padding: 16px; border-radius: 12px; font-weight: 700; font-size: 15px;
    border: 2px solid #e5e7eb; color: #1B2A4A;
    transition: all 0.3s; cursor: pointer;
}
.price-btn:hover { border-color: #2D7DD2; color: #2D7DD2; }
.price-card.featured .price-btn {
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff; border: none;
    box-shadow: 0 4px 15px rgba(45, 125, 210, 0.3);
}
.price-card.featured .price-btn:hover {
    box-shadow: 0 8px 25px rgba(45, 125, 210, 0.5);
    transform: translateY(-2px);
}

/* ── Guarantee Strip ── */
.guarantee {
    text-align: center; padding: 48px 0;
    border-top: 1px solid #eef0f4;
}
.guarantee-items {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.guarantee-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: #4b5563;
}
.guarantee-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; background: #ecfdf5;
}

/* ── FAQ ── */
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #eef0f4;
    padding: 24px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-size: 17px; font-weight: 700; color: #0f1729;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    letter-spacing: -0.2px;
}
.faq-toggle {
    width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
    background: #f3f4f6; display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #6b7280; transition: all 0.3s;
    font-weight: 300;
}
.faq-item.open .faq-toggle {
    background: rgba(45, 125, 210, 0.1); color: #2D7DD2;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding-top: 0;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}
.faq-answer p {
    font-size: 15px; color: #6b7280; line-height: 1.75;
}

/* ── Interest Form ── */
.interest-section {
    background: #0a0f1e; color: #fff; padding: 100px 0;
    position: relative; overflow: hidden;
}
.interest-section::before {
    content: ''; position: absolute; top: -150px; left: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.1), transparent 70%);
    pointer-events: none;
}
.interest-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: start; position: relative; z-index: 1;
}
.interest-left h2 {
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 900;
    letter-spacing: -1.5px; margin-bottom: 20px; line-height: 1.15;
}
/* gradient-text replaced by .accent-warm in HTML */
.interest-left p {
    font-size: 16px; color: rgba(176, 196, 222, 0.85);
    line-height: 1.8; margin-bottom: 24px;
}
.interest-perks { list-style: none; }
.interest-perks li {
    padding: 10px 0; font-size: 15px; color: rgba(176, 196, 222, 0.75);
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.interest-perks li:last-child { border-bottom: none; }
.interest-perk-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    background: rgba(45, 125, 210, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}
.interest-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 36px;
}
.interest-form-card h3 {
    font-size: 20px; font-weight: 800; margin-bottom: 4px;
}
.interest-form-card .form-subtitle {
    font-size: 14px; color: rgba(176, 196, 222, 0.6);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.7); margin-bottom: 6px;
}
.form-group label .required { color: #5ba8f5; }
.form-input {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #fff;
    font-family: 'Geist', system-ui, sans-serif; font-size: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
    border-color: #2D7DD2;
    box-shadow: 0 0 0 3px rgba(45, 125, 210, 0.15);
}
.form-input.error {
    border-color: #CC2E2E;
    box-shadow: 0 0 0 3px rgba(204, 46, 46, 0.15);
}
textarea.form-input { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.checkbox-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; transition: all 0.2s;
    font-size: 13px; color: rgba(255,255,255,0.7);
}
.checkbox-item:hover {
    background: rgba(45, 125, 210, 0.08);
    border-color: rgba(45, 125, 210, 0.2);
}
.checkbox-item input { display: none; }
.checkbox-item.checked {
    background: rgba(45, 125, 210, 0.12);
    border-color: rgba(45, 125, 210, 0.3);
    color: #fff;
}
.checkbox-mark {
    width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; transition: all 0.2s;
}
.checkbox-item.checked .checkbox-mark {
    background: #2D7DD2; border-color: #2D7DD2; color: #fff;
}
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-item {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; transition: all 0.2s;
    font-size: 13px; color: rgba(255,255,255,0.7);
}
.radio-item:hover {
    background: rgba(45, 125, 210, 0.08);
    border-color: rgba(45, 125, 210, 0.2);
}
.radio-item input { display: none; }
.radio-item.checked {
    background: rgba(45, 125, 210, 0.12);
    border-color: rgba(45, 125, 210, 0.3);
    color: #fff;
}
.radio-dot {
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.radio-dot::after {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: transparent; transition: background 0.2s;
}
.radio-item.checked .radio-dot {
    border-color: #2D7DD2;
}
.radio-item.checked .radio-dot::after {
    background: #2D7DD2;
}
.form-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #2D7DD2, #5ba8f5);
    color: #fff; border: none; border-radius: 12px;
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 16px; font-weight: 700;
    cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 15px rgba(45, 125, 210, 0.3);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 24px;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 125, 210, 0.5);
}
.form-submit:disabled {
    opacity: 0.7; cursor: not-allowed; transform: none;
}
.form-spinner {
    width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff; border-radius: 50%;
    animation: formSpin 0.6s linear infinite; display: none;
}
.form-submit.loading .form-spinner { display: block; }
.form-submit.loading .form-submit-text { display: none; }
@keyframes formSpin { to { transform: rotate(360deg); } }
.form-error-msg {
    font-size: 12px; color: #CC2E2E; margin-top: 4px; display: none;
}
.form-error-msg.visible { display: block; }
.form-success {
    text-align: center; padding: 48px 24px; display: none;
}
.form-success.visible { display: block; }
.form-success-icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
    background: rgba(34, 150, 90, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.form-success h3 {
    font-size: 22px; font-weight: 800; margin-bottom: 8px;
}
.form-success p {
    font-size: 15px; color: rgba(176, 196, 222, 0.7); line-height: 1.7;
}
.hp-field { position: absolute; left: -9999px; }
@media (max-width: 900px) {
    .interest-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .radio-group { flex-direction: column; }
}

/* ── CTA Banner ── */
.cta-section { padding: 100px 0 120px; }
.cta-banner {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f1a33 50%, #0a0f1e 100%);
    color: #fff; text-align: center; padding: 80px 40px;
    border-radius: 28px;
}
.cta-banner::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.2), transparent 70%);
    pointer-events: none;
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 168, 245, 0.12), transparent 70%);
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
    font-size: clamp(30px, 4vw, 44px); font-weight: 900;
    margin-bottom: 16px; letter-spacing: -1.5px;
}
.cta-banner p {
    font-size: 17px; color: rgba(176, 196, 222, 0.8);
    max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-avail {
    margin-top: 20px; font-size: 13px; color: rgba(155, 180, 210, 0.8);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-avail::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: #22965A; animation: dotPulse 2s ease-in-out infinite;
}

/* ── Footer ── */
.footer {
    padding: 48px 0 40px; text-align: center;
    border-top: 1px solid #eef0f4; background: #f8f9fc;
}
.footer-brand {
    font-size: 20px; font-weight: 900; letter-spacing: -0.5px;
    color: #0f1729; margin-bottom: 8px;
}
.footer-brand span { color: #2D7DD2; }
.footer-links {
    display: flex; justify-content: center; gap: 32px;
    margin: 16px 0;
}
.footer-links a { font-size: 14px; color: #6b7280; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: #2D7DD2; }
.footer-copy { font-size: 13px; color: #6b7280; margin-top: 16px; }
.footer-copy a { color: #6b7280; }

/* ── Social Proof Strip ── */
.proof-strip {
    text-align: center;
    padding: 32px 24px 0;
}
.proof-item {
    max-width: 600px;
    margin: 0 auto;
}
.proof-quote {
    font-size: 17px;
    font-weight: 500;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 8px;
}
.proof-attr {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}

/* ── Footer Enhancement ── */
.footer-proof {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}
.footer-testimonial {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 8px;
}
.footer-testimonial-attr {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}
.footer-cta {
    margin-bottom: 32px;
}

/* Grain overlay removed — clean backgrounds */
.grain-overlay { display: none; }

/* Shimmer removed — clean hover states instead */

/* ── Stat Value Glow ── */
.stat-value {
    text-shadow: 0 0 40px rgba(91, 168, 245, 0.2);
}
.about-stat-title {
    text-shadow: 0 0 30px rgba(91, 168, 245, 0.15);
}

/* ── Enhanced Card Hovers ── */
.demo-card { position: relative; }
.demo-card::before {
    content: ''; position: absolute; inset: -1px;
    border-radius: 21px; padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    transition: background 0.4s ease;
    pointer-events: none;
}
.demo-card:hover::before {
    background: linear-gradient(135deg, rgba(45, 125, 210, 0.6), rgba(91, 168, 245, 0.2), rgba(45, 125, 210, 0.6));
}
.step { position: relative; }
.step::after {
    content: ''; position: absolute; inset: -1px;
    border-radius: 21px; padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    transition: background 0.4s ease;
    pointer-events: none;
}
.step:hover::after {
    background: linear-gradient(135deg, rgba(45, 125, 210, 0.5), rgba(91, 168, 245, 0.15), rgba(45, 125, 210, 0.5));
}

/* ── Pricing Featured Glow ── */
.price-card.featured {
    box-shadow: 0 12px 40px rgba(45, 125, 210, 0.15), 0 0 80px rgba(45, 125, 210, 0.06);
}
.price-card.featured:hover {
    box-shadow: 0 20px 60px rgba(45, 125, 210, 0.25), 0 0 100px rgba(45, 125, 210, 0.1);
}

/* ── Hero Badge Pulse Glow ── */
.hero-badge {
    box-shadow: 0 0 20px rgba(45, 125, 210, 0.15);
}

/* ── Section Curve Dividers ── */
.section-curve {
    position: relative; overflow: hidden;
}
.curve-divider {
    position: absolute; bottom: -1px; left: 0; width: 100%;
    line-height: 0;
}
.curve-divider svg { display: block; width: 100%; height: 60px; }
.curve-divider-top {
    position: absolute; top: -1px; left: 0; width: 100%;
    line-height: 0;
}
.curve-divider-top svg { display: block; width: 100%; height: 60px; }

/* ── Floating Orb Enhancement ── */
.hero::before {
    width: 700px; height: 700px; top: -250px; right: -150px;
    opacity: 0.35;
}

/* ── About Stat Card Gradient Border ── */
.about-stat-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 130px;
    display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center;
}
.about-stat-icon {
    font-size: 28px; margin-bottom: 10px;
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(45, 125, 210, 0.12);
    display: flex; align-items: center; justify-content: center;
}
.about-stat-title {
    font-size: 15px; font-weight: 800; color: #fff;
    letter-spacing: -0.3px; margin-bottom: 2px;
}
.about-stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(45, 125, 210, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(45, 125, 210, 0.1);
}

/* ── Interest Form Card Glass Effect ── */
.interest-form-card {
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 20px; height: 2px; background: #fff;
    margin: 4px 0; border-radius: 2px; transition: all 0.3s;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 13px; }
    .nav-cta { padding: 9px 18px; font-size: 13px; }
    /* nav-cta-outline removed */
}
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(10, 15, 30, 0.96); backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:not(:last-child)::after { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-right { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { gap: 24px; }
    .workflow-visual { display: none; }
    .workflow-mobile { display: block; }
    .hero { padding: 100px 0 60px; }
    .guarantee-items { gap: 24px; }
    .footer-links { gap: 20px; }
}
@media (max-width: 480px) {
    .about-right { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .tools-grid { gap: 16px; }
}

/* ── Secondary Accent: Emerald ── */
.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #1a7a45, #22965A);
}
.step:nth-child(2) .step-timeline {
    color: #22965A;
    background: rgba(34, 150, 90, 0.08);
}
.step:nth-child(2):hover::before {
    background: linear-gradient(90deg, #22965A, #2dd47a);
}
.tc-time-saved {
    color: #22965A;
}
.demo-card:nth-child(2) .demo-card-header {
    background: linear-gradient(135deg, #0f2917 0%, #163822 100%);
}
.demo-card:nth-child(2) .demo-card-header::after {
    background: rgba(34, 150, 90, 0.1);
}

/* ── Mobile Workflow Visualization ── */
.workflow-mobile {
    display: none;
    margin-top: 48px;
}
.wf-mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 28px;
}
.wf-mobile-steps::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(45, 125, 210, 0.15);
}
.wf-mobile-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}
.wf-mobile-dot {
    position: absolute;
    left: -22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 125, 210, 0.3);
    border: 2px solid #0a0f1e;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
}
.wf-mobile-step.active .wf-mobile-dot {
    background: #5ba8f5;
    box-shadow: 0 0 12px rgba(91, 168, 245, 0.5);
}
.wf-mobile-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 125, 210, 0.1);
    border: 1px solid rgba(45, 125, 210, 0.15);
    flex-shrink: 0;
    color: #5ba8f5;
}
.wf-mobile-step.active .wf-mobile-icon {
    background: rgba(45, 125, 210, 0.2);
    border-color: rgba(45, 125, 210, 0.4);
    box-shadow: 0 0 16px rgba(45, 125, 210, 0.2);
}
.wf-mobile-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
}
.wf-mobile-step.active .wf-mobile-text {
    color: rgba(255,255,255,0.9);
}

/* ── Color Diversification ── */
/* Warm gold accent for section tags (breaks all-blue monotony) */
#about .section-tag,
#faq .section-tag {
    background: rgba(232, 164, 74, 0.1);
    border-color: rgba(232, 164, 74, 0.2);
    color: #e8a44a;
}
/* Emerald for "how it works" section tag */
#how .section-tag {
    background: rgba(34, 150, 90, 0.08);
    border-color: rgba(34, 150, 90, 0.15);
    color: #22965A;
}
/* Third step gets warm gold accent */
.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #c47d1a, #e8a44a);
}
.step:nth-child(3) .step-timeline {
    color: #c47d1a;
    background: rgba(232, 164, 74, 0.08);
}
.step:nth-child(3):hover::before {
    background: linear-gradient(90deg, #c47d1a, #e8a44a);
}
/* Demo card 3: warm header */
.demo-card:nth-child(3) .demo-card-header {
    background: linear-gradient(135deg, #1f1508 0%, #2d1f0c 100%);
}
.demo-card:nth-child(3) .demo-card-header::after {
    background: rgba(232, 164, 74, 0.08);
}

/* ── Form Progress Bar ── */
.form-progress {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}
.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2D7DD2, #22965A);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* ── Form Trust Line ── */
.form-trust {
    text-align: center;
    font-size: 12px;
    color: rgba(155, 180, 210, 0.7);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── Hero Badge: warm pulse instead of blue ── */
.hero-badge {
    background: rgba(232, 164, 74, 0.12);
    border: 1px solid rgba(232, 164, 74, 0.25);
    color: #e8a44a;
    box-shadow: 0 0 20px rgba(232, 164, 74, 0.1);
}
.hero-badge::before {
    background: #e8a44a;
}

/* ── Pricing: alternate featured card border to emerald ── */
.price-card:nth-child(2) .price-tagline {
    color: #22965A;
}

/* ── CTA availability dot: warm gold ── */
.cta-avail::before {
    background: #e8a44a;
}
