/* ==========================================================================
   Vinfraa Lab — Enterprise AI Cloud Platform landing page
   Built from the Claude Design handoff (Vinfraa Home)
   ========================================================================== */

:root {
  --bg: #ECEEF2;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --indigo: #4F46E5;
  --indigo-dark: #4338CA;
  --blue: #2E7CC3;
  --purple: #5B54C8;
  --magenta: #A63297;
  --green: #1F8A5B;
  --amber: #F59E0B;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-alt: 'Plus Jakarta Sans', var(--font-sans);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-card: 0 20px 40px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--ink);
}

a { color: var(--indigo); text-decoration: none; }
a:hover { color: #3B34C8; }

img { max-width: 100%; }

/* ---------- Keyframes ---------- */
@keyframes vfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes vfStage { 0% { opacity: 0; transform: translateY(14px) scale(0.92); } 7% { opacity: 1; transform: translateY(0) scale(1); } 86% { opacity: 1; transform: translateY(0) scale(1); } 94%, 100% { opacity: 0; transform: translateY(-10px) scale(0.96); } }
@keyframes vfDraw { 0% { stroke-dashoffset: 420; } 30% { stroke-dashoffset: 0; } 86% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -420; } }
@keyframes vfFill { 0%, 18% { width: 6%; } 55% { width: 82%; } 70%, 100% { width: 100%; } }
@keyframes vfTick { 0%, 55% { opacity: 0; transform: scale(0.4); } 63% { opacity: 1; transform: scale(1.15); } 68% { transform: scale(1); } 86% { opacity: 1; } 94%, 100% { opacity: 0; } }
@keyframes vfSpinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes vfRing { 0% { transform: scale(0.6); opacity: 0.6; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Page shell ---------- */
.page {
  min-width: 1200px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.container { max-width: 1160px; margin: 0 auto; }

.ambient-wash {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(46, 124, 195, 0.16), transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(91, 84, 200, 0.16), transparent 60%),
    radial-gradient(ellipse at 55% 70%, rgba(166, 50, 151, 0.10), transparent 60%);
  pointer-events: none;
}

/* ---------- Shared primitives ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--purple);
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate-600);
}

.btn {
  display: inline-block;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
}
.btn-primary:hover { background: var(--indigo-dark); color: #fff; }

.btn-dark {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  padding: 14px 26px;
}
.btn-dark:hover { background: var(--ink-2); color: #fff; }

.text-gradient-blue {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-magenta {
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 9999px;
  padding: 10px 12px 10px 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; display: block; mix-blend-mode: multiply; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { color: var(--slate-700); }
.nav-links a:hover { color: var(--indigo); }

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

.nav-btn-ghost {
  padding: 12px 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-alt);
}
.nav-btn-ghost:hover { color: var(--ink); }

.nav-btn-primary {
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--slate-600);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
}

.hero-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.hero-title .gradient {
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate-600);
}

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

.hero-cta-primary {
  padding: 17px 32px;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.hero-cta-secondary {
  padding: 17px 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-alt);
}
.hero-cta-secondary:hover { color: var(--ink); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-500);
}
.hero-trust .label { font-weight: 600; }
.hero-trust .value { font-weight: 700; color: var(--slate-700); }

/* Hero visual: layered dashboard mock */
.hero-visual { position: relative; height: 520px; }

.dash {
  position: absolute;
  inset: 24px 0 24px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(48px);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dash-head { display: flex; align-items: center; justify-content: space-between; }

.dash-label, .micro-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--slate-600);
}

.pill-live {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(31, 138, 91, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.pill-live .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--green); }

.dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.dash-kpi {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 16px;
}
.dash-kpi .kpi-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: var(--slate-500); }
.dash-kpi .kpi-value { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-top: 4px; }
.dash-kpi .kpi-note { font-size: 12px; font-weight: 600; color: var(--green); margin-top: 2px; }

.dash-chart {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 16px 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dash-chart-head { display: flex; justify-content: space-between; align-items: center; }
.dash-chart-head .kpi-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; color: var(--slate-500); }
.dash-chart-head .accuracy { font-size: 11px; font-weight: 700; color: var(--purple); }

.dash-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-top: 14px;
}
.dash-bars .bar { flex: 1; border-radius: 8px 8px 4px 4px; background: rgba(91, 84, 200, 0.25); }
.dash-bars .bar.peak { background: linear-gradient(180deg, var(--purple), var(--blue)); }

.float-card-wrap { position: absolute; }
.float-card-wrap.top-left { top: 0; left: -14px; }
.float-card-wrap.bottom-left { bottom: 4px; left: -6px; }

.float-card {
  animation: vfFloat 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  box-shadow: var(--shadow-float);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.float-card.delay { animation: vfFloat 7s ease-in-out 1.2s infinite; }

.float-card img,
.float-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
}
.float-card img { object-fit: cover; }
.float-card .icon-circle {
  background: rgba(46, 124, 195, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
}
.float-card .title { font-size: 13px; font-weight: 700; }
.float-card .meta { font-size: 12px; color: var(--slate-500); }

/* ---------- Stats ---------- */
.stats-section { padding: 24px 0 8px; }

.stats-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  margin-top: 4px;
}

/* ---------- Clients ---------- */
.clients-section { padding: 56px 0 0; text-align: center; }

.clients-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--slate-400);
  margin-bottom: 24px;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 56px;
  opacity: 0.8;
}

.client-ather { font-family: var(--font-alt); font-size: 21px; font-weight: 800; letter-spacing: 2.5px; color: var(--slate-500); }
.client-cse { font-size: 19px; font-weight: 700; letter-spacing: 1px; color: var(--slate-500); }
.client-cse .light { font-weight: 400; }
.client-himatsingka { font-family: Georgia, serif; font-size: 20px; font-weight: 600; letter-spacing: 0.5px; color: var(--slate-500); }
.client-aptive { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; color: var(--slate-500); }
.client-aptive .dot { color: var(--slate-400); }

/* ---------- Solutions ---------- */
.solutions-section {
  padding: 88px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-intro { max-width: 640px; display: flex; flex-direction: column; gap: 14px; }

.solution-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(48px);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  padding: 44px;
  display: grid;
  gap: 48px;
  align-items: center;
}
.solution-card.food { grid-template-columns: 1.1fr 1fr; }
.solution-card.mobility { grid-template-columns: 1fr 1.1fr; }

.solution-copy { display: flex; flex-direction: column; gap: 18px; }

.solution-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.solution-tag.magenta { background: rgba(166, 50, 151, 0.1); color: var(--magenta); }
.solution-tag.blue { background: rgba(46, 124, 195, 0.1); color: var(--blue); }

.solution-title { margin: 0; font-size: 30px; font-weight: 800; letter-spacing: -0.6px; }

.solution-desc { margin: 0; font-size: 16px; line-height: 1.6; color: var(--slate-600); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
}
.feature-grid > div { display: flex; align-items: center; gap: 8px; }
.feature-grid .check-magenta { color: var(--magenta); }
.feature-grid .check-blue { color: var(--blue); }

.solution-cta { align-self: flex-start; margin-top: 6px; }

/* Food platform visual: animated order journey */
.food-visual {
  position: relative;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #F4F0FA, #EDF2F8 55%, #F6EFF5);
}

.food-visual .spin-halo {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(166, 50, 151, 0.12), transparent 65%);
  animation: vfSpinSlow 30s linear infinite;
}

.food-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.food-visual .journey-path { animation: vfDraw 7.5s ease-in-out infinite; }

.dish-hero { position: absolute; top: 118px; left: 186px; width: 148px; height: 148px; }
.dish-hero .orbit {
  position: absolute;
  inset: -14px;
  border-radius: 9999px;
  border: 2px dashed rgba(91, 84, 200, 0.35);
  animation: vfSpinSlow 22s linear infinite;
}
.dish-hero .ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--magenta);
  animation: vfRing 7.5s ease-out infinite;
}
.dish-hero img {
  position: absolute;
  inset: 0;
  width: 148px;
  height: 148px;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  animation: vfFloat 6s ease-in-out infinite;
}

.stage-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.stage-card .title { font-size: 12px; font-weight: 800; }
.stage-card .meta { font-size: 11px; color: var(--slate-500); }

.stage-order {
  top: 56px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: vfStage 7.5s ease-in-out infinite;
}
.stage-order .icon {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background: rgba(166, 50, 151, 0.12);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.stage-kitchen {
  top: 176px;
  left: 26px;
  width: 200px;
  animation: vfStage 7.5s ease-in-out 0.9s infinite;
  opacity: 0;
}
.stage-kitchen .head { display: flex; justify-content: space-between; align-items: center; }
.stage-kitchen .kds { font-size: 11px; font-weight: 700; color: var(--purple); }
.stage-kitchen .track {
  margin-top: 8px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.stage-kitchen .fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  animation: vfFill 7.5s ease-in-out infinite;
}

.stage-ready {
  bottom: 44px;
  right: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: vfTick 7.5s ease-in-out infinite;
  opacity: 0;
}
.stage-ready .icon {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}

.visual-caption {
  position: absolute;
  bottom: 16px;
  left: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--slate-400);
}

/* Mobility platform visual: stylized city map */
.map-visual {
  position: relative;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #E8EDF2, #DDE5EC 60%, #E3E9EF);
}

.map-visual .grid-streets {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 54px, rgba(255, 255, 255, 0.9) 54px, rgba(255, 255, 255, 0.9) 60px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 78px, rgba(255, 255, 255, 0.9) 78px, rgba(255, 255, 255, 0.9) 84px);
}
.map-visual .grid-diagonal {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(38deg, transparent 0px, transparent 120px, rgba(255, 255, 255, 0.75) 120px, rgba(255, 255, 255, 0.75) 130px);
}
.map-visual .park-green {
  position: absolute;
  top: 34px;
  right: 46px;
  width: 130px;
  height: 92px;
  border-radius: 26px;
  background: rgba(31, 138, 91, 0.14);
}
.map-visual .park-blue {
  position: absolute;
  bottom: 118px;
  left: 40px;
  width: 96px;
  height: 70px;
  border-radius: 20px;
  background: rgba(46, 124, 195, 0.12);
}
.map-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.vehicle-marker {
  position: absolute;
  top: 118px;
  left: 288px;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  background: var(--indigo);
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  animation: vfFloat 4s ease-in-out infinite;
}

.map-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.map-card .title { font-size: 12px; font-weight: 700; }
.map-card .meta { font-size: 11px; color: var(--slate-500); margin-top: 2px; }

.map-card.route { top: 84px; left: 24px; }
.map-card.sos {
  bottom: 76px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-card.sos .dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--green); }

.map-stats {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
}
.map-stats > div {
  flex: 1;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 12px;
}
.map-stats b { font-size: 16px; }

/* ---------- App screens ---------- */
.apps-section { padding: 96px 0 0; }

.apps-intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 44px;
}
.apps-intro .section-lead { max-width: 560px; }

.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 36px;
}

.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-col.center { margin-bottom: 24px; }

.phone-col > img {
  width: 254px;
  display: block;
  border-radius: 40px;
  filter: drop-shadow(0 30px 45px rgba(15, 23, 42, 0.25));
}

.phone-caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--slate-400);
}

/* Center phone: live trip tracking mock */
.phone-frame {
  width: 286px;
  border-radius: 46px;
  background: var(--ink);
  padding: 10px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.28);
}

.phone-screen {
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(160deg, #E8EDF2, #DDE5EC);
  height: 580px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-screen .grid-streets {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 44px, rgba(255, 255, 255, 0.85) 44px, rgba(255, 255, 255, 0.85) 49px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 64px, rgba(255, 255, 255, 0.85) 64px, rgba(255, 255, 255, 0.85) 69px);
}
.phone-screen svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.trip-banner {
  position: relative;
  margin: 18px 16px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trip-banner .title { font-size: 12px; font-weight: 800; }
.trip-banner .meta { font-size: 11px; color: var(--slate-500); margin-top: 2px; }
.trip-banner .meta b { color: var(--indigo); }
.trip-banner .live {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(31, 138, 91, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}
.trip-banner .live .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--green); }

.trip-sheet {
  position: relative;
  margin-top: auto;
  background: #fff;
  border-radius: 26px 26px 38px 38px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.driver-row { display: flex; align-items: center; gap: 12px; }
.driver-avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.driver-info { flex: 1; }
.driver-info .name { font-size: 13px; font-weight: 800; }
.driver-info .meta { font-size: 11px; color: var(--slate-500); }
.driver-call {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background: #EEF0F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.trip-actions { display: flex; gap: 10px; }
.trip-actions > div {
  flex: 1;
  height: 46px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.trip-actions .share { background: #EEF0F4; color: var(--ink); }
.trip-actions .sos { background: #DC2626; color: #fff; font-weight: 800; }

/* ---------- Platform features ---------- */
.platform-section { padding: 96px 0 0; }
.platform-section .section-intro { margin-bottom: 36px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.feature-icon.purple { background: rgba(91, 84, 200, 0.12); color: var(--purple); }
.feature-icon.blue { background: rgba(46, 124, 195, 0.12); color: var(--blue); }
.feature-icon.magenta { background: rgba(166, 50, 151, 0.12); color: var(--magenta); }
.feature-icon.green { background: rgba(31, 138, 91, 0.12); color: var(--green); }

.feature-card h4 { margin: 16px 0 8px; font-size: 18px; font-weight: 700; }
.feature-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--slate-500); }

/* ---------- Industries ---------- */
.industries-section { padding: 96px 0 0; }

.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.split-head .section-intro { max-width: 560px; }
.split-head .aside {
  margin: 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-500);
}

.industry-chips { display: flex; flex-wrap: wrap; gap: 12px; }

.industry-chip {
  padding: 14px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
}

/* ---------- Testimonials ---------- */
.reviews-section { padding: 96px 0 0; }

.rating-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.rating-pill .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; }
.rating-pill .score { font-size: 14px; font-weight: 800; }
.rating-pill .count { font-size: 13px; color: var(--slate-500); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card .stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.review-card .quote { font-size: 20px; line-height: 1.55; font-weight: 500; color: var(--ink-2); }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.review-avatar.g1 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.review-avatar.g2 { background: linear-gradient(135deg, var(--purple), var(--magenta)); }
.review-avatar.g3 { background: linear-gradient(135deg, var(--green), var(--blue)); }
.review-avatar.g4 { background: linear-gradient(135deg, var(--magenta), var(--purple)); }
.review-author .role { font-size: 14px; font-weight: 700; }
.review-author .org { font-size: 13px; color: var(--slate-500); }

/* ---------- FAQ ---------- */
.faq-section { padding: 96px 0 0; }
.faq-section .section-intro { margin-bottom: 32px; }

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

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  background: rgba(91, 84, 200, 0.1);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-600);
  max-width: 900px;
}

.faq-item.open .faq-answer { display: block; }

/* ---------- CTA + Contact ---------- */
.contact-section { padding: 96px 0 80px; }

.cta-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--ink);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-glow {
  position: absolute;
  inset: -80px 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(46, 124, 195, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(166, 50, 151, 0.3), transparent 55%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}
.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.cta-contacts > div { display: flex; align-items: center; gap: 10px; }
.cta-contacts .icon { color: #7DD3B0; }
.cta-contacts a { color: inherit; }
.cta-contacts a:hover { color: #fff; }

.demo-form {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.6);
}

.demo-form input {
  height: 51px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 22px;
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
}
.demo-form input::placeholder { color: rgba(255, 255, 255, 0.55); }

.interest-chips { display: flex; gap: 10px; }

.interest-chip {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.interest-chip:hover { opacity: 0.9; }
.interest-chip.active {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}

.demo-submit {
  height: 57px;
  border-radius: 9999px;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.35);
  border: none;
  font-family: inherit;
}
.demo-submit:hover { background: var(--indigo-dark); }
.demo-submit:active { transform: scale(0.98); }

.demo-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  padding: 48px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { height: 26px; width: fit-content; mix-blend-mode: multiply; }
.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-500);
  max-width: 300px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col .col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--slate-400);
  margin-bottom: 4px;
}
.footer-col a { color: var(--slate-600); }
.footer-col a:hover { color: var(--indigo); }

.footer-bottom {
  padding: 0 0 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate-400);
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--indigo); }
