/* ==========================================================================
   OVN LINTAS DATA — MODERN LIGHT HIGH-TECH SAAS DESIGN SYSTEM
   Theme: Crisp Light SaaS & Clean Developer Aesthetic (Stripe / Linear / Cloudflare)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    /* Backgrounds */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-card-alt: #f8fafc;
    
    /* Borders & Lines */
    --border-subtle: #e2e8f0;
    --border-card: #e2e8f0;
    --border-highlight: #bfdbfe;
    --border-focus: #3b82f6;
    
    /* Brand & Accent Colors */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --cyan: #0284c7;
    --indigo: #4f46e5;
    --emerald: #059669;
    --emerald-light: #ecfdf5;
    --amber: #d97706;
    --rose: #e11d48;
    --purple: #7c3aed;
    
    /* Typography Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    
    /* Shadows & Radii */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.04), 0 0 0 1px #e2e8f0;
    --shadow-glow-blue: 0 10px 30px -5px rgba(37, 99, 235, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    color-scheme: light;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Subtle Background Canvas */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 85%, rgba(5, 150, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Subtle Grid Pattern */
.ambient-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 18px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transform: translateY(-200%);
    transition: transform 0.2s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px;
    background: var(--emerald-light);
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #065f46;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(5, 150, 105, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    padding: 9px;
    flex-direction: column;
    justify-content: space-around;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    border: 1px solid #2563eb;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-small {
    padding: 7px 15px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 64px 0 80px;
    overflow: hidden;
}

.hero-glow-spot {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-cyan {
    top: -80px;
    right: 8%;
    background: #93c5fd;
}

.hero-glow-indigo {
    top: 120px;
    left: -80px;
    background: #c7d2fe;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.98fr;
    align-items: center;
    gap: 48px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    width: fit-content;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary);
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.hero-pill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-pill-item svg {
    color: var(--emerald);
    flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE SIMULATOR / HERO MOCKUP (DARK TERMINAL INSIDE LIGHT CONTAINER)
   ========================================================================== */
.simulator-window {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    position: relative;
}

.simulator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #090d16;
    border-bottom: 1px solid #1e293b;
}

.simulator-dots {
    display: flex;
    gap: 6px;
}

.sim-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.sim-dot.red { background: #ef4444; }
.sim-dot.yellow { background: #f59e0b; }
.sim-dot.green { background: #10b981; }

.simulator-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.sim-tab-btn:hover {
    color: #ffffff;
}

.sim-tab-btn.active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.simulator-content {
    padding: 20px;
}

.sim-tab-pane {
    display: none;
}

.sim-tab-pane.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.terminal-card {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    line-height: 1.7;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid #1e293b;
    border-radius: var(--radius-md);
    padding: 16px;
    color: #e2e8f0;
}

.term-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.term-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.term-badge.connected {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.term-ports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.term-port-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.term-port-item span {
    font-size: 10px;
    color: #94a3b8;
}

.term-port-item strong {
    font-size: 12px;
    color: #38bdf8;
}

/* API Tester Mockup */
.api-mockup {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.api-url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #020617;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #1e293b;
    margin-bottom: 12px;
}

.api-method {
    background: var(--emerald);
    color: #ffffff;
    font-weight: 800;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
}

.api-url {
    color: #94a3b8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.api-json-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: var(--radius-sm);
    padding: 12px;
    color: #cbd5e1;
    line-height: 1.6;
}

.json-key { color: #38bdf8; }
.json-str { color: #a3e635; }
.json-num { color: #fbbf24; }

/* Hotspot Mini Dashboard Mockup */
.hotspot-mini-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mini-stat-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat-card .label {
    font-size: 11px;
    color: #94a3b8;
}

.mini-stat-card .value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.mini-stat-card .trend {
    font-size: 10.5px;
    color: #34d399;
}

/* ==========================================================================
   METRICS / HIGHLIGHT STRIP (LIGHT THEME)
   ========================================================================== */
.metrics-section {
    padding: 28px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: #ffffff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--border-subtle);
}

.metric-card:last-child {
    border-right: none;
}

.metric-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.metric-data h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.metric-data p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ==========================================================================
   ECOSYSTEM / SERVICES (BENTO GRID - LIGHT)
   ========================================================================== */
.section {
    padding: 88px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-head p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-top: 12px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.bento-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-xl);
}

.bento-span-7 { grid-column: span 7; }
.bento-span-5 { grid-column: span 5; }
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-12 { grid-column: span 12; }

.bento-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: grid;
    place-items: center;
    color: var(--primary);
}

.bento-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--text-secondary);
}

.bento-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.feature-checklist li svg {
    color: var(--emerald);
    flex-shrink: 0;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
}

.bento-link:hover {
    gap: 11px;
    color: var(--primary-hover);
}

/* ==========================================================================
   INTEGRATION SECTION (LIGHT)
   ========================================================================== */
.integration-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 38px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.integration-copy h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.integration-copy p {
    color: var(--text-secondary);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.code-box-wrapper {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.code-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #090d16;
    border-bottom: 1px solid #1e293b;
}

.code-box-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: #94a3b8;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.code-content {
    padding: 16px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: #38bdf8;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ==========================================================================
   DYNAMIC PRICING CALCULATOR & MATRIX (LIGHT)
   ========================================================================== */
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.billing-switch-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
}

.billing-option {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 999px;
    transition: var(--transition);
}

.billing-option.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.discount-tag {
    font-size: 10px;
    background: var(--emerald-light);
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 700;
    margin-left: 4px;
}

/* Calculator Box */
.calculator-box {
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.calculator-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label-row span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.slider-count-badge {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    background: #eff6ff;
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #bfdbfe;
}

/* Range Input Styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    border: 2px solid #ffffff;
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    border: 2px solid #ffffff;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.calculator-result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.calc-price-lead {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
}

.calc-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.calc-price-amount span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.calc-savings {
    font-size: 12px;
    color: #065f46;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Pricing Grid Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-amount {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-amount strong {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.pricing-amount span {
    font-size: 13.5px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    margin-top: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--emerald);
    flex-shrink: 0;
}

/* ==========================================================================
   FAQ ACCORDION (LIGHT)
   ========================================================================== */
.faq-section {
    padding: 72px 0 96px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.faq-intro h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 8px;
    letter-spacing: -0.02em;
}

.faq-intro p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.7;
}

.faq-contact-card {
    margin-top: 24px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-contact-card span {
    font-size: 12px;
    color: var(--text-muted);
}

.faq-contact-card a {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item summary {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item[open] summary .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 22px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================================================
   FINAL CALL TO ACTION (LIGHT)
   ========================================================================== */
.final-cta {
    padding: 30px 0 70px;
}

.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border: 1px solid #1e40af;
    padding: 56px 48px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.25);
}

.cta-banner h2 {
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.cta-banner p {
    font-size: 16px;
    color: #e0e7ff;
    max-width: 580px;
    margin: 14px auto 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-cta-white {
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 700;
}
.btn-cta-white:hover {
    background: #f8fafc;
    color: #1e3a8a;
    transform: translateY(-1px);
}

.btn-cta-ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ==========================================================================
   FOOTER (LIGHT)
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 13.5px;
    color: var(--text-secondary);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-copy {
        text-align: center;
        align-items: center;
    }
    
    .hero-lead {
        margin-inline: auto;
    }
    
    .hero-trust-pills {
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-card:nth-child(2) {
        border-right: none;
    }
    
    .bento-span-7, .bento-span-5, .bento-span-4, .bento-span-6 {
        grid-column: span 12;
    }
    
    .integration-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-inline: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.is-open {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 12px 0;
    }
    
    .metric-card:last-child {
        border-bottom: none;
    }
    
    .cta-banner {
        padding: 36px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
