*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0b4358;
  --navy-light: #0d5270;
  --accent: #0b4358;
  --cta: #f97316;
  --white: #ffffff;
  --alt-bg: #eef6f9;
  --gray-100: #eef6f9;
  --gray-200: #cde5ef;
  --gray-400: #7aafc4;
  --gray-600: #3d6e82;
  --gray-800: #0b4358;
  --radius: 12px;
  --radius-lg: 20px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--navy); background: #ffffff; line-height: 1.6; }

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.from-left { transform: translateX(-48px); }
.scroll-reveal.from-right { transform: translateX(48px); }
.scroll-reveal.scale-in { transform: translateY(24px) scale(0.94); }
.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.scroll-reveal.is-visible.scale-in {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff; backdrop-filter: none;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: 0 1px 8px rgba(11,67,88,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--cta); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: #ffffff; }
.nav-logo-text { font-size: 1.2rem; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray-600); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--cta); color: #ffffff; font-weight: 600;
  border: none; padding: 0.5rem 1.25rem; border-radius: 8px;
  cursor: pointer; font-size: 0.9rem; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #ffffff; border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 5%; flex-direction: column; gap: 1rem; z-index: 99;
}
.mobile-menu a { color: var(--gray-600); text-decoration: none; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); }
.mobile-menu.open { display: flex; }
.mobile-menu-cta {
  color: #ffffff !important;
  background: var(--cta);
  border-radius: 8px;
  padding: 0.5rem 1rem !important;
  text-align: center;
  border: none !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0d2a4a 100%);
  min-height: 100vh; display: flex; align-items: center; padding: 100px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,67,88,0.08) 0%, transparent 70%);
  animation: heroBlobDrift 14s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  animation: heroBlobDrift 18s ease-in-out infinite reverse;
}
@keyframes heroBlobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -12px) scale(1.04); }
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-enter {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(120ms + var(--hero-delay, 0) * 100ms);
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(77,184,212,0.15); border: 1px solid rgba(77,184,212,0.35);
  color: #4db8d4; font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.875rem, 3.1vw, 2.65rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero h1 span { color: #4db8d4; }
.hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-tagline { color: rgba(255,255,255,0.45); font-size: 0.95rem; margin-top: -1rem; margin-bottom: 2rem; font-style: italic; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--cta); color: #ffffff; font-weight: 700;
  padding: 0.8rem 1.75rem; border-radius: var(--radius); border: none;
  cursor: pointer; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-outline {
  background: transparent; color: var(--white); font-weight: 600;
  padding: 0.8rem 1.75rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  font-size: 0.95rem; text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }
.hero-visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  animation:
    heroVisualIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards,
    heroVisualFloat 7s ease-in-out 1.4s infinite;
}
@keyframes heroVisualIn {
  to { opacity: 1; transform: none; }
}
@keyframes heroVisualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-dash-enter {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(700ms + var(--dash-delay, 0) * 120ms);
}
.hero-trip-enter {
  opacity: 0;
  transform: translateX(20px);
  animation: heroTripIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(1100ms + var(--trip-delay, 0) * 100ms);
}
@keyframes heroTripIn {
  to { opacity: 1; transform: none; }
}
.map-route {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: heroDrawRoute 2.2s ease-out 0.85s forwards;
}
@keyframes heroDrawRoute {
  to { stroke-dashoffset: 0; }
}
.hero-vehicle {
  transform-origin: center;
  animation: heroVehiclePulse 2.4s ease-in-out 2.4s infinite;
}
@keyframes heroVehiclePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-enter,
  .hero-visual-enter,
  .hero-dash-enter,
  .hero-trip-enter,
  .map-route,
  .hero-vehicle,
  .hero-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .map-route { stroke-dashoffset: 0; }
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.dash-title { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.dash-dot-wrap { display: flex; align-items: center; gap: 6px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #4db8d4; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.dash-stat {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  padding: 0.85rem; text-align: center;
}
.dash-stat-num { font-size: 1.5rem; font-weight: 700; color: #4db8d4; }
.dash-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.dash-map {
  background: rgba(11,67,88,0.05); border: 1px solid rgba(11,67,88,0.15);
  border-radius: var(--radius); padding: 1rem; position: relative; overflow: hidden; height: 130px;
  display: flex; align-items: center; justify-content: center;
}
.map-svg { width: 100%; height: 100%; }
.dash-trips { margin-top: 1rem; }
.trip-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
}
.trip-row:last-child { border-bottom: none; }
.trip-id { color: rgba(255,255,255,0.5); }
.trip-route { color: rgba(255,255,255,0.85); }
.trip-status { font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.status-active { background: rgba(77,184,212,0.15); color: #4db8d4; }
.status-pending { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-done { background: rgba(100,116,139,0.2); color: rgba(255,255,255,0.5); }

/* TRUSTED BY */
.trusted-section {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  padding: 3rem 5%;
}
.trusted-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.trusted-header { margin-bottom: 2rem; }
.trusted-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 0.75rem;
}
.trusted-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 4.5rem;
}
.trusted-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.75rem 1.25rem;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.trusted-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}
.trusted-logo-item img {
  display: block;
  width: auto;
  max-width: 240px;
  height: 72px;
  object-fit: contain;
}

/* RESULTS / STATS */
.stats-band {
  background: var(--alt-bg);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 4rem 5%;
}
.stats-inner { max-width: 1000px; margin: 0 auto; }
.stats-header { text-align: center; margin-bottom: 2.5rem; }
.stats-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0.5rem;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 0.5rem; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--cta); line-height: 1.1; }
.stat-label { font-size: 0.9rem; color: var(--gray-600); margin-top: 0.5rem; line-height: 1.4; }

/* SECTIONS SHARED */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; }

/* FEATURES */
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(11, 67, 88, 0.2); box-shadow: 0 12px 32px rgba(11, 67, 88, 0.08); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: none;
}
.feature-icon-amber { background: rgba(251, 191, 36, 0.15); }
.feature-icon-amber svg { stroke: #d97706; }
.feature-icon-gray { background: rgba(100, 116, 139, 0.12); }
.feature-icon-gray svg { stroke: #64748b; }
.feature-icon-blue { background: rgba(14, 165, 233, 0.12); }
.feature-icon-blue svg { stroke: #0ea5e9; }
.feature-icon-red { background: rgba(239, 68, 68, 0.1); }
.feature-icon-red svg { stroke: #ef4444; }
.feature-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; line-height: 1.35; }
.feature-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; margin: 0; }
.feature-list {
  margin-top: 0.9rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 14px;
  height: 14px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230ea5e9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.features-cta-wrap { text-align: center; margin-top: 3rem; }

/* INDUSTRIES / WHO WE SERVE */
.industries-section { background: #ffffff; }
.industries-header { text-align: center; margin-bottom: 3rem; }
.industries-header .section-sub { margin: 0 auto; max-width: 520px; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.industry-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.industry-card:last-child { border-right: none; }
.industry-card:hover { background: var(--gray-100); }
.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: #0ea5e9;
}
.industry-icon svg { width: 44px; height: 44px; }
.industry-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.industry-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* ABOUT */
.about-section { background: var(--alt-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual-wrap { background: none; border: none; padding: 0; overflow: visible; }
.about-visual-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(11,67,88,0.15); }
.about-visual-frame svg { width: 100%; height: auto; display: block; }
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,67,88,0.12) 0%, transparent 70%);
}
.about-metric { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.a-metric {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: var(--radius);
  padding: 1.1rem; text-align: center;
}
.a-metric-num { font-size: 1.8rem; font-weight: 800; color: #4db8d4; }
.a-metric-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.about-bar-row { margin-top: 1rem; }
.about-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.about-bar { background: rgba(255,255,255,0.1); border-radius: 4px; height: 6px; margin-bottom: 0.75rem; overflow: hidden; }
.about-bar-fill { height: 100%; background: var(--cta); border-radius: 4px; }
.about-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about-point { display: flex; gap: 1rem; align-items: flex-start; }
.about-point-icon {
  width: 38px; height: 38px; min-width: 38px; background: rgba(11,67,88,0.08); border: 1px solid rgba(11,67,88,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.about-point-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about-point h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-point p { font-size: 0.88rem; color: var(--gray-600); }
.about-body { color: var(--gray-600); margin-bottom: 1rem; }
.about-body.last { margin-bottom: 1.5rem; }
.about-quote {
  color: var(--gray-600); margin-top: 1.5rem; font-style: italic;
  border-left: 3px solid var(--cta); padding-left: 1rem;
}
.about-cta { margin-top: 2rem; }

/* WHY */
.why-bg { background: var(--navy); }
.why-bg .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-text .section-sub { color: rgba(255,255,255,0.6); }
.why-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; }
.why-check {
  width: 28px; height: 28px; min-width: 28px; background: rgba(249,115,22,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.why-check svg { width: 14px; height: 14px; stroke: var(--cta); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.why-item strong { color: var(--white); }
.why-visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.why-visual-label {
  color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem;
}
.why-step { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: var(--radius); margin-bottom: 0.75rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
.why-step-num { width: 32px; height: 32px; min-width: 32px; background: rgba(249,115,22,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--cta); }
.why-step-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.why-step-title { color: var(--white); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }

/* FAQ */
.faq-header { text-align: center; margin-bottom: 1rem; }
.faq-header .section-label { justify-content: center; display: block; }
.faq-grid { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.97rem; font-weight: 600; color: var(--navy);
  gap: 1rem;
}
.faq-q:hover { color: var(--cta); }
.faq-icon { font-size: 1.2rem; color: var(--gray-400); transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--cta); }
.faq-a { display: none; padding: 0 0 1.1rem; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.faq-a.open { display: block; }

/* CTA BAND (legacy utility) */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3d6e 100%);
  padding: 80px 5%; text-align: center;
}
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; max-width: 540px; margin: 0 auto; }
.cta-input {
  flex: 1; min-width: 220px; padding: 0.8rem 1.25rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); color: var(--white); font-size: 0.95rem; outline: none;
}
.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--cta); }

/* CLOSING CTA + DEMO MODAL */
.closing-cta-section {
  background: #eef6f9;
  padding: 90px 5%;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}
.closing-cta-inner { max-width: 660px; margin: 0 auto; }
.closing-cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.closing-cta-title .highlight { color: var(--cta); }
.closing-cta-tagline { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 2.5rem; }
.demo-step-1 { max-width: 480px; margin: 0 auto; }
.demo-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-get-started {
  background: #f97316;
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-get-started:hover { opacity: 0.88; }
.closing-cta-privacy { color: var(--gray-400); font-size: 0.8rem; margin-top: 1.25rem; }

.demo-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,67,88,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.demo-modal-overlay.is-open { display: flex; }
.demo-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(11,67,88,0.2);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 1.4rem;
  line-height: 1;
}
.demo-modal h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.demo-modal-intro { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1.5rem; }
.demo-form-fields { display: flex; flex-direction: column; gap: 0.85rem; }
.demo-form-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  background: #fff;
}
.demo-form-field:focus { border-color: var(--cta); }
.demo-form-select { appearance: none; }
.submit-demo-btn {
  width: 100%;
  margin-top: 1.25rem;
  background: #f97316;
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.submit-demo-btn:hover:not(:disabled) { opacity: 0.88; }
.submit-demo-btn:disabled { cursor: not-allowed; }
.demo-form-note { color: var(--gray-400); font-size: 0.78rem; text-align: center; margin-top: 0.75rem; }
.demo-form-error {
  color: #dc2626;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.demo-form-error[hidden] { display: none; }

.demo-success-view { display: none; text-align: center; padding: 1rem 0; }
.demo-success-view.is-visible { display: block; }
.form-view-hidden { display: none !important; }

.demo-success-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(11,67,88,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.demo-success-view h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.demo-success-view p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; }
.btn-done {
  margin-top: 1.5rem;
  background: #f97316;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* FOOTER */
.footer-simple {
  background: #0b4358;
  border-top: none;
  padding: 1.25rem 5%;
}
.footer-simple-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-simple span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

footer { background: var(--gray-800); padding: 60px 5% 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cta); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--gray-400); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner, .about-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .trusted-logos { gap: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .industry-card:nth-child(3n) { border-right: none; }
  .industry-card:nth-child(3n-1) { border-right: 1px solid var(--gray-200); }
  .industry-card:nth-child(3n-2) { border-right: 1px solid var(--gray-200); }
  .industry-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card { border-right: none !important; border-bottom: 1px solid var(--gray-200); }
  .industry-card:nth-child(2n) { border-right: none; }
  .industry-card:nth-child(2n-1) { border-right: 1px solid var(--gray-200); }
  .industry-card:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
