/* === ColdCallStop — B&W Theme (inspired by Uncall) === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray-50: #FBFBFB;
  --gray-100: #F5F5F7;
  --gray-200: #E8E8ED;
  --gray-300: #D2D2D7;
  --gray-400: #86868B;
  --gray-500: #6E6E73;
  --gray-600: #424245;
  --gray-700: #1D1D1F;
  --emerald: #10b981;
  --emerald-light: #d1fae5;
  --amber: #f59e0b;
  --shadow-soft: 0 4px 24px -1px rgba(0,0,0,0.05), 0 2px 8px -1px rgba(0,0,0,0.03);
  --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.1);
  --radius-card: 3rem;
  --radius-btn: 9999px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
  line-height: 1.5;
}
h1, h2, h3, h4 { letter-spacing: -0.022em; font-weight: 700; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  background: rgba(255,255,255,0.7);
  border-bottom-color: rgba(232,232,237,0.5);
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.logo-img { width: 45px; height: 45px; object-fit: contain; transition: transform 0.2s; }
.logo:hover .logo-img { transform: scale(1.05); }
.logo-icon { width: 40px; height: 40px; background: var(--black); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-icon svg { width: 22px; height: 22px; color: white; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-400); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: var(--radius-btn) !important;
  font-weight: 700 !important; font-size: 14px !important;
  box-shadow: var(--shadow-soft); transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* === HERO === */
.hero {
  display: flex; align-items: center; justify-content: center;
  padding: 160px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 140%; height: 140%; border: 1px solid var(--gray-200); border-radius: 50%; opacity: 0.2;
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(var(--black) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-btn);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  font-size: 14px; font-weight: 500; margin-bottom: 48px;
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--black); border-radius: 50%; position: relative; }
.hero-badge .pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--black); animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.75;
}
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero h1 { font-size: clamp(3.5rem, 10vw, 10rem); font-weight: 800; margin-bottom: 32px; line-height: 0.85; letter-spacing: -0.04em; }
.hero-sub { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: var(--gray-500); max-width: 640px; margin: 0 auto 48px; font-weight: 500; line-height: 1.5; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  background: var(--black); color: var(--white); padding: 20px 48px; border-radius: var(--radius-btn);
  font-size: 20px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-soft); transition: all 0.2s; border: none; cursor: pointer;
}
.btn-hero:hover { opacity: 0.9; box-shadow: var(--shadow-hover); }
.btn-hero-outline {
  background: var(--white); color: var(--black); padding: 20px 48px; border-radius: var(--radius-btn);
  font-size: 20px; font-weight: 700; border: 1px solid var(--gray-200); cursor: pointer; transition: background 0.2s;
}
.btn-hero-outline:hover { background: var(--gray-50); }

/* === PAIN QUOTES (Hero) === */
.pain-heading {
  margin-top: 80px; margin-bottom: 24px; font-size: 1.25rem; font-weight: 700;
  color: var(--gray-400); letter-spacing: 0.05em; text-transform: uppercase;
}
.pain-quotes {
  margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 900px; margin-left: auto; margin-right: auto; text-align: left;
}
.pain-quote {
  background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 2rem;
  padding: 32px; position: relative;
}
.pain-quote p {
  font-size: 1.125rem; font-weight: 600; font-style: italic; color: var(--gray-700);
  line-height: 1.6; margin-bottom: 16px;
}
.pain-quote cite {
  font-size: 13px; font-weight: 600; color: var(--gray-400); font-style: normal;
}
@media (max-width: 768px) {
  .pain-quotes { grid-template-columns: 1fr; margin-top: 48px; }
}

/* === DASHBOARD PREVIEW === */
.dashboard-preview {
  margin-top: 96px; max-width: 900px; margin-left: auto; margin-right: auto;
  background: var(--white); border-radius: var(--radius-card); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid var(--gray-200); padding: 32px 48px; text-align: left; overflow: hidden;
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.dash-logo { display: flex; align-items: center; gap: 16px; }
.dash-logo-icon { width: 56px; height: 56px; background: var(--black); border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.dash-logo-icon svg { width: 32px; height: 32px; color: white; }
.dash-status { display: flex; align-items: center; gap: 8px; }
.dash-status .dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.dash-status span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald); }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.dash-stat label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); display: block; margin-bottom: 8px; }
.dash-stat .num { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.dash-stat .num.green { color: var(--emerald); }
.dash-stat .detail { font-size: 14px; color: var(--gray-500); font-weight: 500; margin-top: 4px; }
.dash-network label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); display: block; margin-bottom: 24px; }
.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; background: var(--gray-50); border-radius: 16px;
  border: 1px solid var(--gray-100); margin-bottom: 12px;
}
.dash-row span:first-child { font-size: 18px; font-weight: 700; }
.dash-badge {
  padding: 6px 16px; border-radius: var(--radius-btn);
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: white;
}
.dash-badge.secured { background: var(--emerald); }
.dash-badge.progress { background: var(--amber); }

/* === FLOATING CARD === */
.float-card {
  position: absolute; top: -48px; right: -48px; padding: 32px;
  background: rgba(255,255,255,0.4); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 2.5rem;
  box-shadow: var(--shadow-soft); animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.float-card svg { width: 40px; height: 40px; margin-bottom: 16px; }
.float-card p { font-size: 1.5rem; font-weight: 700; }

/* === TESTIMONIALS === */
.testimonials { padding: 128px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); background: rgba(245,245,247,0.5); }
.testimonials .section-label { text-align: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4em; color: var(--gray-400); margin-bottom: 24px; }
.testimonials h2 { text-align: center; font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 80px; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.test-card {
  background: var(--white); padding: 40px; border-radius: var(--radius-card);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; justify-content: space-between;
}
.test-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.test-avatar {
  width: 48px; height: 48px; background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
}
.test-name { font-weight: 700; }
.test-role { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.test-quote { color: var(--gray-600); font-style: italic; font-weight: 500; line-height: 1.7; font-size: 18px; margin-bottom: 40px; flex-grow: 1; }
.test-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 32px; border-top: 1px solid var(--gray-100); }
.test-metric { padding: 16px; border-radius: 16px; }
.test-metric.before { background: var(--gray-50); }
.test-metric.after { background: var(--emerald-light); border: 1px solid #a7f3d0; }
.test-metric label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-400); display: block; margin-bottom: 4px; }
.test-metric.after label { color: var(--emerald); }
.test-metric .val { font-size: 14px; font-weight: 700; }
.test-metric.before .val { color: var(--gray-400); text-decoration: line-through; }
.test-metric.after .val { color: #059669; }

/* === BENTO FEATURES === */
.bento { padding: 96px 0 160px; }
.bento h2 { text-align: center; font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 32px; }
.bento .bento-sub { text-align: center; font-size: clamp(1.125rem, 2vw, 1.5rem); color: var(--gray-500); max-width: 640px; margin: 0 auto 96px; font-weight: 500; }
.bento-grid {
  display: grid; gap: 32px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}
.bento-card {
  border-radius: 4rem; padding: 64px; position: relative; display: flex; flex-direction: column;
}
.bento-card h3 { margin-bottom: 24px; }
.bento-card p { color: var(--gray-500); font-weight: 500; line-height: 1.6; }

.bento-main { background: var(--gray-100); border: 1px solid rgba(232,232,237,0.5); grid-column: 1; grid-row: 1; }
.bento-main h3 { font-size: 3rem; }
.bento-main p { font-size: 1.25rem; max-width: 440px; }
.bento-main .cards-row { display: flex; gap: 24px; margin-top: 64px; overflow: hidden; }
.bento-mini-card {
  min-width: 280px; background: var(--white); padding: 40px; border-radius: 2.5rem;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(232,232,237,0.5);
}
.bento-mini-card .pill {
  display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--emerald); background: var(--emerald-light);
  padding: 4px 12px; border-radius: var(--radius-btn); margin-top: 24px;
}
.bento-mini-card .bar { height: 20px; background: var(--gray-100); border-radius: var(--radius-btn); margin-bottom: 16px; }
.bento-mini-card .bar.short { width: 50%; }

.bento-dark {
  background: var(--black); color: var(--white); grid-column: 2; grid-row: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-dark h3 { font-size: 2.5rem; }
.bento-dark p { color: rgba(255,255,255,0.5); font-size: 1.125rem; }
.bento-dark .big-num { font-size: 5rem; font-weight: 800; letter-spacing: -0.03em; margin-top: auto; }
.bento-dark .big-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }
.bento-dark svg { width: 64px; height: 64px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }

.bento-phone { background: var(--white); border: 1px solid var(--gray-200); grid-column: 1; grid-row: 2; box-shadow: var(--shadow-soft); }
.bento-phone .icon-wrap { width: 64px; height: 64px; background: var(--gray-100); border-radius: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.bento-phone .icon-wrap svg { width: 32px; height: 32px; }
.bento-phone h3 { font-size: 2rem; }
.bento-phone p { font-size: 1.125rem; }

.bento-monitor { background: var(--gray-100); border: 1px solid rgba(232,232,237,0.5); grid-column: 2; grid-row: 2; display: flex; align-items: center; }
.bento-monitor h3 { font-size: 2.5rem; }
.bento-monitor p { font-size: 1.25rem; }

/* === SECURITY SECTION === */
.security {
  padding: 160px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden;
}
.security::before {
  content: ''; position: absolute; inset: 0; opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; position: relative; z-index: 1; }
.security h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 48px; line-height: 1.1; }
.security-points { display: flex; flex-direction: column; gap: 48px; }
.sec-point { display: flex; gap: 32px; }
.sec-point .check { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.sec-point .check svg { width: 20px; height: 20px; color: white; }
.sec-point h4 { font-size: 1.5rem; margin-bottom: 12px; }
.sec-point p { color: rgba(255,255,255,0.5); font-size: 1.125rem; font-weight: 500; line-height: 1.6; }
.security-visual {
  aspect-ratio: 1; background: rgba(255,255,255,0.05); border-radius: 5rem;
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
}
.security-visual svg { width: 256px; height: 256px; color: rgba(255,255,255,0.1); }

/* === OUR STORY === */
.our-story { padding: 160px 0; border-top: 1px solid var(--gray-100); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-photo { border-radius: 3rem; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 3rem; }
.story-label-tag {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--gray-400); margin-bottom: 24px;
}
.our-story h2 {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 36px; line-height: 1.1;
}
.story-text p {
  font-size: 1.0625rem; color: var(--gray-600); font-weight: 500; line-height: 1.8;
  margin-bottom: 20px;
}
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--black); font-weight: 700; }
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { max-height: 400px; }
}

/* === FINAL CTA === */
.final-cta { padding: 96px 0; }
.final-cta-card {
  background: var(--gray-100); border-radius: 5rem; padding: 80px;
  border: 1px solid rgba(232,232,237,0.5); text-align: center; position: relative; overflow: hidden;
}
.final-cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); pointer-events: none;
}
.final-cta-card h2 { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 48px; position: relative; z-index: 1; line-height: 1.1; }
.final-cta-card .cta-sub { font-size: clamp(1.125rem, 2.5vw, 1.75rem); color: var(--gray-500); margin-bottom: 64px; max-width: 800px; margin-left: auto; margin-right: auto; font-weight: 500; position: relative; z-index: 1; }
.final-cta-card .btn-hero { position: relative; z-index: 1; font-size: 1.5rem; padding: 28px 64px; }
.final-cta-card .cta-note { margin-top: 48px; color: var(--gray-400); font-weight: 500; font-size: 1.125rem; position: relative; z-index: 1; }

/* === GET STARTED (FORM) === */
.get-started { padding: 96px 0; }
.get-started h2 { text-align: center; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.get-started .section-sub { text-align: center; color: var(--gray-500); margin-bottom: 48px; font-size: 1.125rem; font-weight: 500; }
.form-container {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-card); padding: 48px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}
.steps-indicator { display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; }
.step-dot { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-300); transition: color 0.2s; }
.step-dot span:first-child { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--gray-100); font-weight: 700; font-size: 12px; transition: all 0.2s; flex-shrink: 0; }
.step-dot.active { color: var(--black); }
.step-dot.active span:first-child { background: var(--black); color: var(--white); }
.step-dot.done span:first-child { background: var(--emerald); color: var(--white); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-size: 1.5rem; margin-bottom: 8px; }
.step-desc { color: var(--gray-500); margin-bottom: 32px; font-weight: 500; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 14px 20px; border-radius: 16px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  font-size: 16px; font-family: inherit; font-weight: 500;
  outline: none; transition: border-color 0.2s;
}
.field input:focus, .field select:focus { border-color: var(--black); }
.field input.invalid, .field select.invalid, .signature-wrapper.invalid { border-color: #ef4444 !important; }

/* Verification code input (Step 2) */
#verify-code-input {
  font-size: 22px;
  letter-spacing: 6px;
  padding: 12px 16px;
  line-height: 1.2;
}

.legal-text {
  padding: 24px; background: var(--gray-50); border-radius: 20px;
  border: 1px solid var(--gray-200); margin-bottom: 24px;
  font-size: 13px; color: var(--gray-600); line-height: 1.7;
}
.legal-text p { margin-bottom: 12px; }
.legal-text ul { padding-left: 20px; margin-bottom: 12px; }
.legal-text li { margin-bottom: 6px; }

.sig-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; }
.signature-wrapper {
  border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden;
  background: var(--white); margin-bottom: 8px;
}
.signature-wrapper canvas { display: block; width: 100%; height: 160px; }
.btn-small {
  background: none; border: none; color: var(--gray-400); font-size: 13px;
  font-weight: 600; cursor: pointer; padding: 4px 0; margin-bottom: 24px;
}
.btn-small:hover { color: var(--black); }

.actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.btn {
  padding: 14px 32px; border-radius: var(--radius-btn); font-size: 15px;
  font-weight: 700; border: none; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { opacity: 0.9; }
.btn-primary:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-secondary { background: var(--gray-100); color: var(--gray-600); }
.btn-secondary:hover { background: var(--gray-200); }

.review-summary { margin-bottom: 24px; }
.review-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.review-label { font-size: 13px; color: var(--gray-400); font-weight: 600; }
.review-value { font-size: 14px; font-weight: 600; }
.sig-preview { margin-top: 16px; }
.sig-preview img { max-height: 80px; border: 1px solid var(--gray-200); border-radius: 12px; padding: 8px; margin-top: 8px; }

.message { padding: 48px; text-align: center; border-radius: 24px; }
.message h2 { font-size: 2rem; margin-bottom: 12px; }
.message p { color: var(--gray-500); font-weight: 500; }
.message.success { background: var(--emerald-light); }
.message.error { background: #fef2f2; }

/* === FOOTER === */
.footer { background: var(--gray-100); padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 80px; }
.footer-brand { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.footer h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer li a { font-size: 12px; color: var(--gray-500); transition: color 0.2s; }
.footer li a:hover { color: var(--black); text-decoration: underline; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 11px; color: var(--gray-400); font-weight: 500;
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px; background: var(--black); z-index: 90; text-align: center;
}
.sticky-cta a { color: var(--white); font-weight: 700; font-size: 16px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 3rem; }
  .dashboard-preview { margin: 48px 16px 0; padding: 24px; border-radius: 2rem; }
  .float-card { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main, .bento-dark, .bento-phone, .bento-monitor { grid-column: 1; grid-row: auto; }
  .bento-card { padding: 40px; border-radius: 2.5rem; }
  .security-grid { grid-template-columns: 1fr; }
  .security-visual { display: none; }
  .final-cta-card { padding: 48px 24px; border-radius: 2.5rem; }
  .form-container { padding: 32px 24px; border-radius: 2rem; }
  .row { grid-template-columns: 1fr; }
  .field input, .field select { padding: 12px 16px; border-radius: 14px; }
  #verify-code-input { font-size: 20px; letter-spacing: 5px; padding: 10px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-stat .num { font-size: 2.5rem; }
}
