/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #111827; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== BRAND COLORS ========== */
:root {
  --deep-blue: #1E3A8A;
  --tech-blue: #2563EB;
  --emerald: #10B981;
  --teal: #06B6D4;
  --dark: #111827;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
}

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: linear-gradient(135deg, var(--tech-blue), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { font-size: 1.125rem; color: #4B5563; }
.section-badge { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.section-badge.purple { background: #EFF6FF; color: var(--deep-blue); }
.section-badge.green { background: #D1FAE5; color: #059669; }

/* ========== BUTTONS ========== */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: linear-gradient(135deg, var(--tech-blue), var(--deep-blue)); color: #fff; font-weight: 600; font-size: 1rem; border-radius: 12px; transition: all 0.2s; box-shadow: 0 4px 14px rgba(30,58,138,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.4); }
.btn-primary-sm { padding: 10px 24px; background: linear-gradient(135deg, var(--tech-blue), var(--deep-blue)); color: #fff; font-weight: 600; font-size: 0.875rem; border-radius: 10px; transition: all 0.2s; }
.btn-primary-sm:hover { opacity: 0.9; }
.btn-primary-lg { display: inline-flex; align-items: center; justify-content: center; padding: 18px 40px; background: #fff; color: #111827; font-weight: 700; font-size: 1.125rem; border-radius: 14px; transition: all 0.2s; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: #fff; color: #111827; font-weight: 600; font-size: 1rem; border-radius: 12px; border: 1.5px solid #E5E7EB; transition: all 0.2s; }
.btn-secondary:hover { border-color: #3B82F6; color: #3B82F6; }
.btn-secondary-lg { display: inline-flex; align-items: center; justify-content: center; padding: 18px 40px; border: 2px solid rgba(255,255,255,0.3); color: #fff; font-weight: 600; font-size: 1.125rem; border-radius: 14px; transition: all 0.2s; }
.btn-secondary-lg:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border: 1.5px solid #E5E7EB; color: #111827; font-weight: 600; font-size: 1rem; border-radius: 12px; transition: all 0.2s; width: 100%; }
.btn-outline:hover { border-color: #3B82F6; color: #3B82F6; }
.btn-text { color: #4B5563; font-weight: 500; transition: color 0.2s; }
.btn-text:hover { color: #3B82F6; }

/* ========== NAVIGATION ========== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all 0.3s; }
#navbar.scrolled { border-bottom-color: #E5E7EB; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-icon { width: 32px; height: 32px; }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo { height: 40px; width: auto; object-fit: contain; }
.footer-logo { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #4B5563; transition: color 0.2s; }
.nav-links a:hover { color: #3B82F6; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 2px; background: #111827; position: absolute; left: 0; transition: all 0.3s; }
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

/* ========== HERO ========== */
.hero { padding: 140px 0 80px; background: linear-gradient(180deg, #F8FAFF 0%, #fff 100%); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; padding: 8px 20px; background: linear-gradient(135deg, #EFF6FF, #ECFEFF); border: 1px solid #DBEAFE; border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--gray); margin-bottom: 24px; letter-spacing: 0.02em; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: #4B5563; line-height: 1.7; margin-bottom: 28px; max-width: 520px; }

/* Hero differentiator + microcopy */
.hero-differentiator { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; max-width: 520px; line-height: 1.6; font-style: italic; }
.hero-microcopy { font-size: 0.8rem; color: #9CA3AF; margin-bottom: 40px; }

.hero-ctas { display: flex; gap: 16px; margin-bottom: 16px; }

/* ========== TRUST SECTION ========== */
.trust-section { padding: 40px 0; border-bottom: 1px solid #F3F4F6; }
.trust-text { text-align: center; font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; font-weight: 500; }
.trust-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { font-size: 0.9rem; font-weight: 600; color: #D1D5DB; letter-spacing: 0.03em; text-transform: uppercase; }

/* ========== WHY SECTION ========== */
.why-section { padding: 100px 0; }
.category-statement { font-size: 1.1rem; color: var(--deep-blue); font-weight: 600; font-style: italic; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 32px; border-radius: 16px; border: 1px solid #F3F4F6; transition: all 0.3s; }
.why-card:hover { border-color: #DBEAFE; box-shadow: 0 10px 30px rgba(37,99,235,0.06); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon svg { width: 22px; height: 22px; }
.why-icon.blue { background: #EFF6FF; color: var(--tech-blue); }
.why-icon.teal { background: #ECFEFF; color: var(--teal); }
.why-icon.purple { background: #EFF6FF; color: var(--deep-blue); }
.why-icon.green { background: #D1FAE5; color: var(--emerald); }
.why-icon.orange { background: #FFF7ED; color: #F59E0B; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: #4B5563; line-height: 1.6; }

/* ========== TRANSFORM SECTION ========== */
.transform-section { padding: 100px 0; background: #F8FAFF; }
.hero-proof { display: flex; gap: 24px; align-items: center; }
.proof-item { text-align: center; }
.proof-item strong { display: block; font-size: 1.25rem; font-weight: 800; color: #111827; }
.proof-item span { font-size: 0.75rem; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; }
.proof-divider { width: 1px; height: 32px; background: #E5E7EB; }

/* ========== LIGHT DASHBOARD MOCKUP ========== */
.dashboard-mockup.light { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.1); border: 1px solid #E5E7EB; }
.mockup-header.light { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: #F9FAFB; border-bottom: 1px solid #E5E7EB; }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #10B981; }
.mockup-url { font-size: 0.65rem; color: #9CA3AF; background: #fff; padding: 4px 16px; border-radius: 6px; flex: 1; text-align: center; border: 1px solid #E5E7EB; }
.mockup-body.light { display: flex; min-height: 320px; }
.mockup-sidebar.light { width: 44px; background: var(--deep-blue); padding: 12px 6px; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.sb-logo { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--tech-blue), var(--teal)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; margin-bottom: 8px; }
.mockup-sidebar.light .sb-item { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.1); }
.mockup-sidebar.light .sb-item.active { background: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.3); }
.mockup-main.light { flex: 1; padding: 16px; background: #F8FAFC; }

/* Light stat cards */
.mockup-stats.light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px; }
.stat-card-light { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; background: #fff; border: 1px solid #F3F4F6; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.stat-icon-sm { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon-sm svg { width: 16px; height: 16px; }
.stat-icon-sm.blue-bg { background: #EFF6FF; }
.stat-icon-sm.green-bg { background: #ECFDF5; }
.stat-icon-sm.teal-bg { background: #ECFEFF; }
.stat-icon-sm.orange-bg { background: #FFF7ED; }
.stat-num-light { font-size: 1rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.stat-label-light { font-size: 0.55rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }

/* Charts row */
.mockup-charts-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; margin-bottom: 10px; }
.chart-panel { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid #F3F4F6; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.chart-title { font-size: 0.6rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.chart-svg { width: 100%; height: auto; }
.chart-legend { display: flex; gap: 12px; margin-top: 6px; font-size: 0.5rem; color: var(--gray); }
.leg-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 3px; vertical-align: middle; }
.leg-dot.blue { background: var(--tech-blue); }
.leg-dot.green { background: var(--emerald); }

/* Bar chart */
.bar-chart { display: flex; flex-direction: column; gap: 6px; }
.bar-row { display: flex; align-items: center; gap: 6px; }
.bar-label { font-size: 0.5rem; color: var(--gray); width: 48px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 10px; background: #F3F4F6; border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 5px; transition: width 1s ease; }
.bar-fill.green { background: linear-gradient(90deg, #10B981, #34D399); }
.bar-fill.blue { background: linear-gradient(90deg, #2563EB, #60A5FA); }
.bar-fill.teal { background: linear-gradient(90deg, #06B6D4, #67E8F9); }
.bar-fill.orange { background: linear-gradient(90deg, #F59E0B, #FCD34D); }

/* Voice bar */
.mockup-voice.light { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #EFF6FF, #ECFEFF); border: 1px solid #DBEAFE; border-radius: 8px; padding: 8px 14px; }
.voice-indicator { width: 8px; height: 8px; background: var(--tech-blue); border-radius: 50%; animation: pulse 1.5s infinite; flex-shrink: 0; }
.mockup-voice.light span { font-size: 0.65rem; color: var(--deep-blue); font-style: italic; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ========== WHAT / TRANSFORM SECTION ========== */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { padding: 40px 32px; border-radius: 16px; border: 1px solid #F3F4F6; transition: all 0.3s; }
.feature-card:hover { border-color: #DBEAFE; box-shadow: 0 10px 30px rgba(59,130,246,0.08); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon.blue { background: #EFF6FF; color: var(--tech-blue); }
.feature-icon.teal { background: #ECFEFF; color: var(--teal); }
.feature-icon.green { background: #D1FAE5; color: var(--emerald); }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: #4B5563; font-size: 0.95rem; line-height: 1.7; }

/* ========== VOICE SECTION ========== */
.voice-section { padding: 100px 0; background: #F8FAFF; }
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-text h2 { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.split-text > p { color: #4B5563; font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.voice-examples { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.voice-cmd { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border-radius: 10px; border: 1px solid #E5E7EB; }
.voice-wave { width: 10px; height: 10px; background: var(--deep-blue); border-radius: 50%; flex-shrink: 0; }
.voice-cmd span { font-size: 0.85rem; color: #374151; font-style: italic; }
.feature-note { font-size: 0.85rem; color: #6B7280; }
.voice-demo-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid #E5E7EB; }
.vd-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.vd-mic { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-blue), #6D28D9); display: flex; align-items: center; justify-content: center; position: relative; }
.vd-mic.active::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--deep-blue); animation: ping 1.5s infinite; }
.vd-mic::before { content: ''; width: 14px; height: 14px; background: #fff; border-radius: 3px 3px 50% 50%; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
.vd-header span { font-weight: 600; color: var(--deep-blue); font-size: 0.9rem; }
.vd-transcript { background: #F5F3FF; border-radius: 12px; padding: 16px; font-size: 0.9rem; color: var(--deep-blue); font-style: italic; margin-bottom: 20px; line-height: 1.5; }
.vd-result { border-top: 1px solid #E5E7EB; padding-top: 20px; }
.vd-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6B7280; margin-bottom: 12px; font-weight: 600; }
.vd-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.vd-field { padding: 10px 14px; background: #F9FAFB; border-radius: 8px; }
.vd-field span { display: block; font-size: 0.7rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; }
.vd-field strong { font-size: 0.85rem; color: #111827; }
.vd-confirm { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--deep-blue), #6D28D9); color: #fff; border: none; border-radius: 10px; font-weight: 600; font-size: 0.9rem; cursor: pointer; }

/* ========== MODULES SECTION ========== */
.modules-section { padding: 100px 0; }
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module-card { padding: 32px; border-radius: 16px; border: 1px solid #F3F4F6; transition: all 0.3s; }
.module-card:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.06); transform: translateY(-4px); }
.module-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 10%, white); color: var(--accent); margin-bottom: 16px; }
.module-icon svg { width: 22px; height: 22px; }
.module-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.module-card > p { color: #4B5563; font-size: 0.875rem; margin-bottom: 16px; line-height: 1.6; }
.module-card ul { display: flex; flex-direction: column; gap: 6px; }
.module-card li { font-size: 0.8rem; color: #6B7280; padding-left: 18px; position: relative; }
.module-card li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.5; }

/* ========== CREDIT UNION SECTION ========== */
.cu-section { padding: 100px 0; background: linear-gradient(180deg, #F0FDF4 0%, #fff 100%); }
.cu-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.cu-header h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.cu-header p { font-size: 1.05rem; color: #4B5563; line-height: 1.7; }
.cu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.cu-card { padding: 28px; background: #fff; border-radius: 14px; border: 1px solid #D1FAE5; transition: all 0.3s; }
.cu-card:hover { box-shadow: 0 8px 25px rgba(16,185,129,0.1); transform: translateY(-3px); }
.cu-icon { width: 44px; height: 44px; border-radius: 12px; background: #D1FAE5; color: #059669; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cu-icon svg { width: 22px; height: 22px; }
.cu-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.cu-card p { font-size: 0.85rem; color: #4B5563; line-height: 1.6; }

/* Comparison Table */
.cu-comparison { max-width: 720px; margin: 0 auto; }
.cu-comparison h3 { text-align: center; font-size: 1.35rem; font-weight: 700; margin-bottom: 28px; }
.comparison-table { border-radius: 14px; overflow: hidden; border: 1px solid #E5E7EB; }
.comp-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.comp-row.header { background: #F9FAFB; font-weight: 700; font-size: 0.9rem; }
.comp-row:not(.header):not(:last-child) { border-bottom: 1px solid #F3F4F6; }
.comp-cell { padding: 14px 20px; font-size: 0.85rem; }
.comp-cell.label { font-weight: 500; color: #374151; }
.comp-cell.highlight { background: #F0FDF4; color: #059669; font-weight: 600; }
.comp-row.header .comp-cell.highlight { background: #059669; color: #fff; }

/* ========== SECURITY SECTION ========== */
.security-section { padding: 100px 0; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sec-card { padding: 32px; border-radius: 14px; border: 1px solid #F3F4F6; transition: all 0.3s; }
.sec-card:hover { border-color: #DBEAFE; box-shadow: 0 8px 20px rgba(59,130,246,0.06); }
.sec-num { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--tech-blue), var(--deep-blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; margin-bottom: 16px; }
.sec-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.sec-card p { font-size: 0.85rem; color: #4B5563; line-height: 1.6; }

/* ========== LIFECYCLE SECTION ========== */
.lifecycle-section { padding: 100px 0; background: #F8FAFF; }
.lifecycle-flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.lf-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lf-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--tech-blue), var(--deep-blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.05em; }
.lf-step span { font-size: 0.75rem; font-weight: 600; color: #374151; }
.lf-arrow { width: 32px; height: 2px; background: linear-gradient(90deg, var(--tech-blue), var(--emerald)); margin-bottom: 24px; }
.lifecycle-note { text-align: center; font-size: 0.85rem; color: #6B7280; max-width: 600px; margin: 0 auto; }

/* ========== PRICING SECTION ========== */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.price-card { padding: 40px 32px; border-radius: 20px; border: 1.5px solid #E5E7EB; text-align: center; position: relative; transition: all 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.price-card.featured { border-color: var(--tech-blue); box-shadow: 0 8px 30px rgba(37,99,235,0.12); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--tech-blue), var(--deep-blue)); color: #fff; padding: 6px 20px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.price-tier { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #374151; }
.price-amount { font-size: 3rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.03em; }
.price-amount .currency { font-size: 1.5rem; vertical-align: super; color: #6B7280; }
.price-amount .period { font-size: 0.9rem; font-weight: 500; color: #6B7280; }
.price-desc { font-size: 0.85rem; color: #6B7280; margin-bottom: 28px; }
.price-features { margin-bottom: 32px; text-align: left; }
.price-features li { padding: 8px 0; font-size: 0.875rem; color: #374151; border-bottom: 1px solid #F9FAFB; padding-left: 24px; position: relative; }
.price-features li::before { content: '\2713'; position: absolute; left: 0; color: #10B981; font-weight: 700; }
.pricing-note { text-align: center; margin-top: 32px; }
.pricing-note p { font-size: 0.85rem; color: #6B7280; }

/* ========== TECH SECTION ========== */
.tech-section { padding: 80px 0; background: #F9FAFB; }
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tech-item { text-align: center; padding: 24px 12px; }
.tech-item strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.tech-item span { font-size: 0.75rem; color: #6B7280; }

/* ========== CTA SECTION ========== */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--deep-blue), #0E4A6F); color: #fff; text-align: center; }
.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 28px; }
.cta-details { display: flex; justify-content: center; gap: 32px; }
.cta-details span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ========== FOOTER ========== */
footer { padding: 64px 0 32px; background: #111827; color: #9CA3AF; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; color: #fff; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; font-size: 0.85rem; padding: 5px 0; transition: color 0.2s; }
.footer-links a:hover { color: #3B82F6; }
.footer-bottom { padding-top: 32px; border-top: 1px solid #1F2937; text-align: center; font-size: 0.8rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .three-col, .modules-grid, .security-grid, .cu-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split-content { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; border-bottom: 1px solid #E5E7EB; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .three-col, .modules-grid, .security-grid, .cu-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .lifecycle-flow { gap: 4px; }
  .lf-icon { width: 40px; height: 40px; font-size: 0.6rem; }
  .lf-arrow { width: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-details { flex-direction: column; gap: 8px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .comp-cell { padding: 10px 12px; font-size: 0.75rem; }
}
