/* LOCAL FONTS */
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/unbounded-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Unbounded';
  src: url('fonts/unbounded-900.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Flex';
  src: url('fonts/roboto-flex.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

/* TOKENS */
:root {
  --bg:          #09090B;
  --surface:     #18181B;
  --surface-2:   #27272A;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);
  --text:        #FAFAFA;
  --text-2:      #A1A1AA;
  --text-3:      #52525B;
  --accent:      #10B981;
  --accent-dim:  rgba(16,185,129,0.12);
  --accent-glow: rgba(16,185,129,0.25);
  --red:         #F87171;
  --red-dim:     rgba(248,113,113,0.12);
  --amber:       #FBBF24;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto Flex', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   NAV — liquid glass
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9,9,11,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: pulse-glow 2.8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(16,185,129,0)); }
  50%       { filter: drop-shadow(0 0 8px rgba(16,185,129,0.7)); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}

.nav-cta:hover { opacity: 0.88; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  padding: 4px;
}

/* =============================================
   HERO — split screen
   ============================================= */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 80px;
}

.hero-single {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 0;
}

.hero-single .hero-left {
  padding-top: 144px;
  padding-bottom: 24px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 32px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: 'Roboto Flex', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 4px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.15s;
}

.btn-ghost:hover { color: var(--text); }

.hero-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--text-3);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 80px 0;
  position: relative;
}

.hero-video-wrap {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/10;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
  position: relative;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px var(--accent-glow);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

.stat-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-value span { color: var(--accent); }

.stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 96px 0; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
}

/* =============================================
   FEATURES — alternating rows
   ============================================= */
.features { padding: 96px 0; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: 1px solid var(--border); }
.feature-row.reverse .feature-content { order: 2; }
.feature-row.reverse .feature-visual  { order: 1; }

.feature-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.feature-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 440px;
}

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: var(--accent-dim);
  border-radius: 50%;
  filter: blur(60px);
}

/* Mini metrics inside feature visual */
.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.mini-metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.mini-metric-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mini-metric-value.green  { color: var(--accent); }
.mini-metric-value.red    { color: var(--red); }
.mini-metric-value.white  { color: var(--text); }

.mini-metric-label {
  font-size: 12px;
  color: var(--text-3);
}

/* Expense preview */
.expense-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ep-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.ep-name  { color: var(--text-2); flex: 1; }
.ep-bar-wrap { flex: 2; background: var(--surface-2); border-radius: 4px; height: 4px; position: relative; margin-top: 14px; }
.ep-bar   { height: 4px; border-radius: 4px; background: var(--accent); }
.ep-bar-label {
  position: absolute;
  top: -18px;
  font-size: 10px;
  color: var(--text-2);
  transform: translateX(-50%);
  white-space: nowrap;
}
.ep-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.ep-badge.warn { background: rgba(251,191,36,0.15); color: var(--amber); }
.ep-badge.ok   { background: var(--accent-dim); color: var(--accent); }
.ep-badge.new  { background: rgba(96,165,250,0.15); color: #60A5FA; }

/* Forecast preview */
.forecast-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
}

.fp-label { color: var(--text-2); }
.fp-value { font-weight: 600; color: var(--text); }
.fp-status { font-size: 12px; color: var(--accent); font-weight: 600; }

/* Insights preview */
.insights-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight-item {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* Recommendations preview */
.rec-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.rec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.rec-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.rec-insight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-md);
}

.rec-insight-ref {
  font-size: 11px;
  color: var(--text-3);
}

.rec-insight-text {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.rec-divider {
  height: 1px;
  background: var(--border);
  margin: 2px 0;
}

/* Source trail preview */
.trail-preview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trail-row {
  display: grid;
  grid-template-columns: auto 20px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.trail-value {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}

.trail-arrow {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}

.trail-source {
  font-size: 12px;
  color: var(--text-2);
}

/* =============================================
   EXAMPLE REPORT
   ============================================= */
.example { background: var(--surface); }

.example-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.example-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
}

.example-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.example-header span { font-size: 13px; color: var(--text-3); }

.example-body {
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ex-block { }

.ex-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.ex-block h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
}

.ex-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.ex-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ex-num-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.ex-num-label { color: var(--text-2); }
.ex-num-value { font-weight: 700; font-variant-numeric: tabular-nums; }
.ex-num-value.g { color: var(--accent); }
.ex-num-value.r { color: var(--red); }

/* =============================================
   HOW IT WORKS — timeline
   ============================================= */
.how { background: var(--bg); }

.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.timeline-item:last-child { border-bottom: 1px solid var(--border); }

.timeline-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: var(--text-3);
  letter-spacing: 1px;
  padding-top: 4px;
}

.timeline-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

/* =============================================
   SECURITY
   ============================================= */
.security { background: var(--surface); }

.security-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.security-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.security-item:last-child { border-bottom: 1px solid var(--border); }

.security-item h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.security-item p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* =============================================
   REVENUE SELECTOR
   ============================================= */
.revenue { background: var(--bg); }

.rev-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rev-tab {
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  font-family: 'Roboto Flex', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
}

.rev-tab:hover     { border-color: var(--text-3); color: var(--text); }
.rev-tab.active    { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 600; }
.rev-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.rev-panel-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--surface);
  min-height: 100px;
}

.rev-panel        { display: none; }
.rev-panel.active { display: block; }

.rev-panel p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
}

.rev-panel strong { color: var(--accent); font-weight: 600; }

.rev-list-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-bottom: 10px;
}

.rev-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rev-list-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.rev-list-item::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 2px;
  align-self: flex-start;
  position: relative;
  top: 6px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  margin-top: 40px;
}

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.faq-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  font-family: system-ui, sans-serif;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.05,0.7,0.1,1),
              padding 0.2s;
  padding-bottom: 0;
}

.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

.faq-answer p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left h2 { margin-bottom: 12px; }
.cta-left p  { font-size: 16px; color: var(--text-2); line-height: 1.7; }

.order-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-required {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Roboto Flex', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group textarea   { resize: vertical; min-height: 80px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352525B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option { background: var(--surface); }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-family: 'Roboto Flex', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 4px;
}

.btn-submit:hover  { opacity: 0.88; }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.form-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.footer-logo img { width: 76px; height: 76px; object-fit: contain; }

.footer-copy { font-size: 13px; color: var(--text-3); }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero              { grid-template-columns: 1fr; min-height: auto; }
  .hero-right        { padding: 0 32px 64px; }
  .hero-left         { padding: 80px 32px 40px; }
  .cta-inner         { grid-template-columns: 1fr; gap: 40px; }
  .feature-row       { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-content { order: 0; }
  .feature-row.reverse .feature-visual  { order: 0; }
  .security-item     { grid-template-columns: 1fr; gap: 12px; }
  .example-body      { grid-template-columns: 1fr; }
  .stats .container  { grid-template-columns: 1fr 1fr; gap: 24px; max-width: 100%; }
  .stat-item         { border-right: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .container        { padding: 0 20px; }
  .nav              { padding: 0 20px; }
  .nav-links        { display: none; }
  .nav-burger       { display: block; }
  section           { padding: 64px 0; }
  .hero-left        { padding: 72px 20px 32px; }
  .hero-right       { padding: 0 20px 56px; }
  h2                { font-size: 24px; }
  .timeline-item    { grid-template-columns: 36px 1fr; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .rev-tabs         { flex-direction: column; }
}
