/* ============ DESIGN TOKENS ============ */
:root {
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-light: #EFF6FF;
  --bg-dark: #0B1121;
  --bg-light: #FFFFFF;
  --bg-light-alt: #F8FAFC;
  --border: #E2E8F0;
  --border-dark: #1E293B;
  --success: #10B981;
  --success-light: #ECFDF5;
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: #94A3B8;
  --text-on-light: #0F172A;
  --text-on-light-secondary: #64748B;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-on-light);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 17, 33, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.logo-text {
  color: var(--text-on-dark);
  font-size: 20px;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-family: var(--font);
}

.lang-option {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
  transition: color 0.2s;
}

.lang-option:hover {
  color: var(--text-on-dark);
}

.lang-active {
  color: var(--text-on-dark);
  font-weight: 700;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  user-select: none;
}

.btn-waitlist {
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-waitlist:hover {
  background: var(--accent-hover);
}

/* ============ HERO ============ */
.hero {
  background: var(--bg-dark);
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.hero-content {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #60A5FA;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.badge-icon {
  width: 14px;
  height: 14px;
  color: #60A5FA;
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
  max-width: 600px;
}

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

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-on-dark-secondary);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--border-dark);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--text-on-dark-secondary);
  color: var(--text-on-dark);
}

/* ============ HERO MOCKUP ============ */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
}

/* ---- Decorative Dots & Lines ---- */
.hero-dot,
.hero-line {
  position: absolute;
  pointer-events: none;
}

.hero-dot {
  border-radius: 50%;
}

/* Pencil: circle1 — 12×12, accent, 0.3, x:240 y:60 */
.hero-dot-1 {
  width: 12px;
  height: 12px;
  background: var(--accent);
  opacity: 0.3;
  top: 60px;
  left: 20%;
}

/* Pencil: circle2 — 8×8, accent, 0.2, x:1200 y:100 */
.hero-dot-2 {
  width: 8px;
  height: 8px;
  background: var(--accent);
  opacity: 0.2;
  top: 100px;
  right: 0;
}

/* Pencil: circle3 — 6×6, gray, 0.25, x:260 y:430 */
.hero-dot-3 {
  width: 6px;
  height: 6px;
  background: #94A3B8;
  opacity: 0.25;
  top: 430px;
  left: 21%;
}

/* Pencil: circle4 — 10×10 ring, accent, 0.2, x:1210 y:260 */
.hero-dot-4 {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1.5px solid var(--accent);
  opacity: 0.2;
  top: 260px;
  right: 0;
}

/* Pencil: circle5 — 4×4, accent, 0.35, x:280 y:250 */
.hero-dot-5 {
  width: 4px;
  height: 4px;
  background: var(--accent);
  opacity: 0.35;
  top: 250px;
  left: 23%;
}

.hero-line {
  border-radius: 2px;
  height: 1px;
}

/* Pencil: line1 — 40px, accent, 0.25, x:210 y:180 */
.hero-line-1 {
  width: 40px;
  background: var(--accent);
  opacity: 0.25;
  top: 180px;
  left: 17%;
}

/* Pencil: line2 — 30px, accent, 0.2, x:1180 y:340 */
.hero-line-2 {
  width: 30px;
  background: var(--accent);
  opacity: 0.2;
  top: 340px;
  right: 1%;
}

/* Pencil: line3 — 20px, gray, 0.15, x:1160 y:180 */
.hero-line-3 {
  width: 20px;
  background: #94A3B8;
  opacity: 0.15;
  top: 180px;
  right: 3%;
}

/* ---- Phone Mockup (WhatsApp) ---- */
.phone-mockup {
  position: absolute;
  left: 14%;
  top: 15px;
  width: 300px;
  height: 580px;
  background: #000;
  border-radius: 32px;
  border: 1px solid var(--border-dark);
  padding: 32px 3px 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  z-index: 1;
}

.wa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #075E54;
  padding: 8px 10px;
  gap: 8px;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-icon-sm { width: 18px; height: 18px; color: #fff; }
.wa-icon-xs { width: 16px; height: 16px; color: #fff; }

.wa-avatar {
  width: 34px;
  height: 34px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-name-col { display: flex; flex-direction: column; gap: 1px; }
.wa-name { color: #fff; font-size: 14px; font-weight: 600; }
.wa-status { color: #B2DFDB; font-size: 11px; }

.wa-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-chat {
  flex: 1;
  background: #ECE5DD;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.wa-today { text-align: center; }

.wa-today-badge {
  display: inline-block;
  background: #E1D8CA;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #54656F;
}

.wa-msg-row { display: flex; }
.wa-msg-right { justify-content: flex-end; }
.wa-msg-left { justify-content: flex-start; }

.wa-bubble {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 200px;
}

.wa-bubble p {
  font-size: 10px;
  line-height: 1.4;
  color: #111B21;
}

.wa-bubble-green { background: #DCF8C6; }
.wa-bubble-white { background: #fff; }

.wa-bubble-tr { border-radius: 8px 2px 8px 8px; }
.wa-bubble-tl { border-radius: 2px 8px 8px 8px; }

.wa-time {
  font-size: 8px;
  color: #667781;
  text-align: right;
}

.wa-quote {
  border-left: 3px solid #4CAF50;
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
}

.wa-quote-name { font-size: 9px; font-weight: 600; color: #4CAF50; }
.wa-quote-text { font-size: 9px; color: #667781; }

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ECE5DD;
  padding: 4px 6px;
}

.wa-input-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 8px 12px;
}

.wa-input-icon { width: 18px; height: 18px; color: #8696A0; }
.wa-input-text { font-size: 11px; color: #8696A0; flex: 1; }

.wa-mic-btn {
  width: 36px;
  height: 36px;
  background: #00A884;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-mic-icon { width: 18px; height: 18px; color: #fff; }

/* ---- Dashboard Mockup ---- */
.dash-mockup {
  position: absolute;
  left: 35%;
  top: 70px;
  width: 640px;
  height: 420px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  z-index: 2;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light-alt);
  padding: 10px 16px;
}

.dash-logo-area { display: flex; align-items: center; gap: 8px; }
.dash-logo-icon { width: 14px; height: 14px; color: var(--accent); }
.dash-logo-text { font-size: 11px; font-weight: 600; color: var(--text-on-light); }

.dash-topbar-right { display: flex; align-items: center; gap: 10px; }
.dash-bell-icon { width: 12px; height: 12px; color: var(--text-on-light-secondary); }
.dash-avatar { width: 20px; height: 20px; background: var(--accent); border-radius: 50%; }

.dash-body {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.dash-stats {
  display: flex;
  gap: 8px;
}

.dash-stat {
  flex: 1;
  background: var(--bg-light-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-stat-val { font-size: 20px; font-weight: 700; color: var(--text-on-light); }
.dash-stat-accent { color: var(--accent); }
.dash-stat-success { color: var(--success); }
.dash-stat-warning { color: #F59E0B; }
.dash-stat-label { font-size: 9px; color: var(--text-on-light-secondary); }

.dash-content-row {
  flex: 1;
  display: flex;
  gap: 10px;
  min-height: 0;
}

/* Mini Table */
.dash-table {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
}

.dash-table-title { font-size: 10px; font-weight: 600; color: var(--text-on-light); }

.dash-table-badge {
  background: #EFF6FF;
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
}

.dash-table-cols {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--bg-light-alt);
  border-bottom: 1px solid var(--border);
}

.dash-col-spacer { width: 14px; }

.dash-col {
  font-size: 8px;
  font-weight: 600;
  color: var(--text-on-light-secondary);
}

.dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
}

.dash-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dash-dot-green { background: #10B981; }
.dash-dot-blue { background: #2563EB; }
.dash-dot-amber { background: #F59E0B; }

.dash-cell { font-size: 9px; color: var(--text-on-light-secondary); }
.dash-cell-sm { font-size: 8px; }

.dash-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.dash-badge-green { background: #ECFDF5; color: #10B981; }
.dash-badge-blue { background: #EFF6FF; color: #2563EB; }
.dash-badge-amber { background: #FEF3C7; color: #F59E0B; }

.dash-divider { height: 1px; background: var(--border); }

.dash-table-footer {
  padding: 8px 12px;
  text-align: center;
}

.dash-table-footer a {
  font-size: 9px;
  font-weight: 500;
  color: var(--accent);
}

/* Right Panel */
.dash-right-panel {
  width: 155px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-light-alt);
  border-bottom: 1px solid var(--border);
}

.dash-panel-title { font-size: 10px; font-weight: 600; color: var(--text-on-light); }
.dash-panel-sub { font-size: 8px; color: var(--text-on-light-secondary); }

.dash-panel-items {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-panel-item { display: flex; flex-direction: column; gap: 4px; }

.dash-panel-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dash-panel-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dash-panel-label { flex: 1; font-size: 9px; color: var(--text-on-light); }
.dash-panel-num { font-size: 9px; font-weight: 700; }

.dash-bar-bg {
  height: 4px;
  background: var(--bg-light-alt);
  border-radius: 2px;
  overflow: hidden;
}

.dash-bar-fill { height: 100%; border-radius: 2px; }

.dash-panel-footer {
  padding: 8px 12px;
  text-align: center;
  font-size: 9px;
  color: var(--text-on-light-secondary);
  border-top: 1px solid var(--border);
}

/* ---- Feature Card Icons ---- */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg { width: 28px; height: 28px; }

.card-icon--blue { background: #1E3A5F; color: #2563EB; }
.card-icon--green { background: #1A3B2E; color: #10B981; }
.card-icon--purple { background: #2D1F4E; color: #A78BFA; }

/* ---- Integration Icons ---- */
.integ-icon { width: 20px; height: 20px; }
.integ-icon--blue { color: #2563EB; }
.integ-icon--green { color: #10B981; }
.integ-icon--purple { color: #A78BFA; }
.integ-icon--amber { color: #F59E0B; }

/* ---- Compliance Card Icons ---- */
.compliance-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-icon--blue { background: #DBEAFE; }
.compliance-icon--green { background: #D1FAE5; }
.compliance-icon--amber { background: #FEF3C7; }

.compliance-lucide {
  width: 28px;
  height: 28px;
  color: #2563EB;
}

.compliance-lucide--green { color: #10B981; }
.compliance-lucide--amber { color: #D97706; }

/* Lucide icon helpers */
.icon-check {
  width: 18px;
  height: 18px;
  color: #10B981;
}

/* ============ TRANSITION ============ */
.transition-gradient {
  height: 168px;
  background: linear-gradient(180deg, #0B1121 0%, #0E1828 45%, #FFFFFF 100%);
}

/* ============ SECTION STYLES ============ */
.section-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section-badge-dark {
  background: rgba(37, 99, 235, 0.15);
  color: #60A5FA;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-on-light);
  letter-spacing: -0.02em;
}

.section-title-light {
  color: var(--text-on-dark);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-on-light-secondary);
  max-width: 600px;
}

.section-subtitle-light {
  color: var(--text-on-dark-secondary);
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: var(--bg-light);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
}

.step-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-light);
}

.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-light-secondary);
}

/* ============ PLATFORM PREVIEW ============ */
.platform-preview {
  background: var(--bg-light-alt);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
}

.platform-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.platform-card-header {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.platform-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-light);
}

.platform-card-desc {
  font-size: 14px;
  color: var(--text-on-light-secondary);
}

/* Feed List */
.feed-list {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feed-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feed-icon-whatsapp {
  background: #ECFDF5;
  color: #10B981;
}

.feed-icon-phone {
  background: var(--accent-light);
  color: var(--accent);
}

.feed-icon-email {
  background: #FFF7ED;
  color: #F59E0B;
}

.feed-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-light);
}

.feed-sub {
  font-size: 12px;
  color: var(--text-on-light-secondary);
}

.feed-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

.feed-badge-done {
  background: var(--success-light);
  color: var(--success);
}

.feed-badge-active {
  background: var(--accent-light);
  color: var(--accent);
}

.feed-badge-waiting {
  background: #FFF7ED;
  color: #F59E0B;
}

/* Contractor List */
.contractor-list {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contractor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contractor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contractor-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-light);
}

.contractor-loc {
  font-size: 12px;
  color: var(--text-on-light-secondary);
}

.contractor-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: #F59E0B;
  font-size: 13px;
}

.rating-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-on-light);
}

.contractor-badge {
  background: var(--success-light);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
}

/* ============ FEATURE DEEP DIVE ============ */
.features-deep {
  background: var(--bg-dark);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  width: 100%;
}

.feature-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font);
  letter-spacing: 1px;
}

.feature-num--green { color: var(--success); }
.feature-num--purple { color: #A78BFA; }

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-dark);
}

.feature-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
  flex: 1;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(37, 99, 235, 0.12);
  color: #60A5FA;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* Integration Wall */
.integration-wall {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}

.integration-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-secondary);
}

.integration-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.integration-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-on-dark);
}

.integration-logo-api {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.3);
}

.integration-note {
  font-size: 13px;
  color: var(--text-on-dark-secondary);
  max-width: 500px;
}

/* ============ COMPLIANCE ============ */
.compliance {
  background: var(--bg-light);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.compliance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  width: 100%;
}

.compliance-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-light);
}

.compliance-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-light-secondary);
  flex: 1;
}

.compliance-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--success-light);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--success);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: radial-gradient(ellipse at 50% 45%, #0D1E3A 0%, #0B1121 65%);
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.cta-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 600px;
}

.badge-cta {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.cta-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
}

.cta-form {
  width: 100%;
  margin-top: 8px;
}

.cta-input-row {
  display: flex;
  gap: 0;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  padding: 4px;
}

.cta-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: var(--text-on-dark);
  font-size: 15px;
  font-family: var(--font);
}

.cta-input::placeholder {
  color: var(--text-on-dark-secondary);
}

.cta-confirmation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: #6EE7B7;
  font-size: 15px;
  font-family: var(--font);
}

.cta-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.2s;
}

.cta-submit:hover {
  background: var(--accent-hover);
}

.cta-trust {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-on-dark-secondary);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  padding: 64px 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  gap: 80px;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-on-dark-secondary);
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-on-dark);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-dot,
  .hero-line {
    display: none;
  }

  .hero-mockup {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .phone-mockup {
    position: static;
    width: 260px;
    height: 500px;
  }

  .dash-mockup {
    position: static;
    width: 100%;
    max-width: 560px;
    height: 380px;
  }

  .steps-grid,
  .feature-cards,
  .compliance-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .platform-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 24px 48px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    text-align: center;
  }

  .section-title {
    font-size: 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-input-row {
    flex-direction: column;
  }

  .cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .how-it-works,
  .platform-preview,
  .features-deep,
  .compliance {
    padding: 64px 24px;
  }

  .integration-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}
