/* Mobika — Marketing Design System */
:root {
  --color-primary: #0d6b4f;
  --color-primary-dark: #084a37;
  --color-primary-light: #12a37a;
  --color-accent: #e8a838;
  --color-accent-soft: #f5d78e;
  --color-bg: #f6f9f7;
  --color-bg-dark: #0a1612;
  --color-surface: #ffffff;
  --color-text: #1a2e28;
  --color-text-muted: #5a726a;
  --color-border: #e2ebe7;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(10, 22, 18, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 18, 0.1);
  --shadow-lg: 0 20px 50px rgba(10, 22, 18, 0.15);
  --shadow-glow: 0 0 0 1px rgba(13, 107, 79, 0.08), 0 20px 40px rgba(13, 107, 79, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1140px;
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.whatsapp-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  background: #168c4b;
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(10, 22, 18, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: white;
  background: #11753e;
  transform: translateY(-3px);
}

.whatsapp-button > span:first-child {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1100;
  padding: 0.65rem 1rem;
  color: white;
  background: var(--color-primary-dark);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Logo mark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translate(2px, -1px);
}

.brand-header-lockup {
  gap: 0.5rem;
}

.brand-header-lockup img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav > .logo:not(.brand-header-lockup)::before {
  content: url("assets/greenalytic%20logo.png");
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav > .logo:not(.brand-header-lockup) {
  font-size: 1.35rem;
}

.nav > .logo:not(.brand-header-lockup) .logo-mark {
  display: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
  transition: box-shadow 0.3s;
}

.header-contact {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  transform: translateY(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.header-contact a:hover,
.header-contact a:focus-visible {
  color: var(--color-primary-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--color-primary);
  background: rgba(13, 107, 79, 0.07);
}

.nav-login {
  margin-left: 0.35rem;
  padding: 0.55rem 1rem !important;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

.nav-login:hover {
  background: var(--color-primary);
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(13, 107, 79, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(13, 107, 79, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Section utilities */
.section {
  padding: 5.5rem 0;
}

.inner-page {
  min-height: 100vh;
  padding-top: var(--header-h);
}

.page-hero {
  padding: 2.2rem 0 1.8rem;
  color: white;
  background: linear-gradient(120deg, var(--color-bg-dark), var(--color-primary-dark));
}

.page-hero .container {
  text-align: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.about-page .page-hero h1 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.about-page .page-hero .section-eyebrow {
  margin-bottom: 1.25rem;
  color: var(--color-accent-soft);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.14em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-page .page-hero p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-content {
  padding: 4rem 0 6rem;
  background: var(--color-bg);
}

.page-content h2 {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.page-content > .container > h2,
.page-content > .container > p:first-of-type {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-content .page-list {
  margin-right: auto;
  margin-left: auto;
}

.page-content .page-list li {
  text-align: center;
}

.page-content p {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.about-page .page-content p {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.contact-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-visual img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contact-visual > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 2rem 1.5rem 1.25rem;
  color: white;
  background: linear-gradient(transparent, rgba(8, 74, 55, 0.9));
}

.contact-visual strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.contact-visual span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin-top: 2rem;
}

.page-list li {
  padding: 1.2rem;
  color: var(--color-text);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.services-hero {
  background: linear-gradient(120deg, rgba(8, 74, 55, 0.94), rgba(13, 107, 79, 0.82)), url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80') center / cover;
}

.page-hero-solutions,
.page-hero-fleet,
.page-hero-compliance,
.page-hero-financial,
.page-hero-team,
.page-hero-about,
.page-hero-contact {
  background-position: center;
  background-size: cover;
}

.page-hero-solutions { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80'); }
.page-hero-fleet { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80'); }
.page-hero-compliance { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1600&q=80'); }
.page-hero-financial { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80'); }
.page-hero-team { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1529156069898-b78b6a85470f?w=1600&q=80'); }
.page-hero-about { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.72)), url('https://images.unsplash.com/photo-1618828665011-0abd973f7bb8?w=1600&q=80'); }
.page-hero-contact { background-image: linear-gradient(120deg, rgba(8, 74, 55, 0.88), rgba(13, 107, 79, 0.68)), url('https://images.unsplash.com/photo-1529156069898-b78b6a85470f?w=1600&q=80'); }

.services-content {
  background: var(--color-bg);
}

.services-content .section-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card > div {
  padding: 1.5rem;
}

.service-number {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 0.925rem;
}

.service-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 700;
}

.service-link span {
  margin-left: 0.3rem;
  transition: margin-left 0.2s;
}

.service-link:hover span {
  margin-left: 0.55rem;
}

.page-list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
}

@media (max-width: 600px) {
  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .page-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.5rem;
  }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-eyebrow.light {
  color: var(--color-accent-soft);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 18, 0.92) 0%, rgba(10, 22, 18, 0.75) 45%, rgba(13, 107, 79, 0.55) 100%);
}

.hero-slide-controls {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--container)) / 2 + 1.5rem));
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: white;
  background: rgba(10, 22, 18, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-slide-button:hover,
.hero-slide-button:focus-visible {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-cta .btn-secondary::after {
  content: '↓';
  margin-left: 0.55rem;
  font-size: 1.1em;
  line-height: 1;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Dashboard mockup */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.85rem 1.25rem;
  background: #f0f4f2;
  border-bottom: 1px solid var(--color-border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-title {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.mockup-body {
  padding: 1rem;
}

.mockup-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.mockup-map img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.mockup-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.pin-1 { top: 30%; left: 25%; }
.pin-2 { top: 55%; left: 60%; animation-delay: 0.5s; }
.pin-3 { top: 40%; left: 78%; animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mockup-stat {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.mockup-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.mockup-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
}

.mockup-stat-value.green { color: var(--color-primary); }
.mockup-stat-value.amber { color: var(--color-accent); }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  animation: float 4s ease-in-out infinite;
}

.float-alert {
  top: -20px;
  left: -30px;
}

.float-payment {
  bottom: 30px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text);
}

.hero-float-card p {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  margin: 0;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.alert-icon {
  background-color: rgba(232, 168, 56, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e8a838' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 3.5L19.5 19h-15L12 5.5zM11 10v4h2v-4h-2zm0 6v2h2v-2h-2z'/%3E%3C/svg%3E");
}

.payment-icon {
  background-color: rgba(13, 107, 79, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
}

/* Vehicle strip */
.vehicle-strip {
  background: var(--color-surface);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.strip-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.vehicle-types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.vehicle-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 90px;
}

.vehicle-type img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
  transition: transform 0.3s, border-color 0.3s;
}

.vehicle-type:hover img {
  transform: scale(1.08);
  border-color: var(--color-primary-light);
}

.vehicle-type span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Platform */
.platform {
  background: var(--color-bg);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.platform-image-wrap {
  position: relative;
}

.platform-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dashboard-overview-preview {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(13, 107, 79, 0.2);
  border-radius: var(--radius-xl);
  background: #f3f5f7;
  box-shadow: var(--shadow-glow);
}

.overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  background: #146b60;
  font-size: 0.58rem;
}

.overview-sidebar strong {
  margin-bottom: 0.6rem;
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.overview-sidebar span {
  padding: 0.3rem 0.35rem;
  border-radius: 5px;
}

.overview-sidebar .sidebar-active {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.overview-main {
  min-width: 0;
  padding: 1rem;
}

.overview-topbar,
.overview-summary,
.overview-panels,
.overview-alerts {
  display: flex;
}

.overview-topbar {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  color: var(--color-text);
  font-size: 0.8rem;
}

.overview-user {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  color: white;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.55rem;
}

.overview-summary {
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.overview-summary > div {
  flex: 1;
  min-width: 0;
  padding: 0.55rem;
  background: white;
  border: 1px solid #e4e8eb;
  border-radius: 6px;
}

.overview-summary small {
  display: block;
  overflow: hidden;
  color: #71808c;
  font-size: 0.48rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overview-summary strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1rem;
}

.overview-summary .overview-green { color: var(--color-primary); }
.overview-summary .overview-amber { color: #d99100; }
.overview-summary .overview-red { color: #df4545; }

.overview-panels {
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.overview-panel,
.overview-alerts {
  padding: 0.75rem;
  background: white;
  border: 1px solid #e4e8eb;
  border-radius: 7px;
}

.overview-panel {
  flex: 1;
  min-width: 0;
}

.overview-panel > strong,
.overview-alerts > strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--color-text);
  font-size: 0.63rem;
}

.overview-chart-panel {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
}

.overview-chart-panel > strong {
  grid-column: 1 / -1;
}

.overview-chart {
  width: 56px;
  height: 56px;
  border: 11px solid #f6a00b;
  border-right-color: #f04a4a;
  border-radius: 50%;
}

.overview-legend {
  display: grid;
  gap: 0.3rem;
  color: #71808c;
  font-size: 0.5rem;
}

.overview-legend b {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.2rem;
  background: var(--color-primary);
  border-radius: 50%;
}

.overview-legend span:nth-child(2) b { background: #f6a00b; }
.overview-legend span:nth-child(3) b { background: #f04a4a; }

.overview-bars {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 58px;
  border-bottom: 1px solid #dfe5e8;
}

.overview-bars i {
  width: 13%;
  height: 32%;
  background: #f6a00b;
  border-radius: 3px 3px 0 0;
}

.overview-bars i:nth-child(2) { height: 74%; background: #f04a4a; }
.overview-bars i:nth-child(3) { height: 55%; background: #f04a4a; }
.overview-bars i:nth-child(4) { height: 80%; background: #f04a4a; }

.overview-panel-labels {
  display: flex;
  justify-content: space-between;
  color: #71808c;
  font-size: 0.45rem;
}

.overview-alerts {
  display: grid;
  gap: 0.35rem;
  color: #53636d;
  font-size: 0.55rem;
}

.overview-alerts span::before {
  content: '•';
  margin-right: 0.35rem;
  color: #f04a4a;
}

.platform-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-primary);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  opacity: 0.9;
}

.platform-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.platform-body {
  margin-top: 1rem;
  color: var(--color-text-muted);
}

.platform-checklist {
  margin-top: 1.5rem;
}

.platform-checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  color: var(--color-text);
}

.platform-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Features */
.features {
  background: var(--color-surface);
}

/* Pricing */
.pricing {
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  border: 2px solid var(--color-primary-light);
  box-shadow: var(--shadow-glow);
}

.pricing-image {
  width: calc(100% + 4rem);
  height: 170px;
  margin: -2rem -2rem 1.5rem;
  object-fit: cover;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.65rem;
  color: var(--color-primary-dark);
  background: var(--color-accent-soft);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-label {
  margin-bottom: 0.3rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 1.25rem;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.pricing-cost,
.pricing-monthly {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
}

.pricing-cost strong {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 2rem;
}

.pricing-cost span,
.pricing-monthly span {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.pricing-monthly {
  padding: 0.75rem 0;
  margin: 0.7rem 0 1.25rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pricing-monthly strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.pricing-note {
  margin: 1.5rem auto 0;
  color: var(--color-text-muted);
  text-align: center;
}

.pricing-note a {
  color: var(--color-primary);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:focus-within {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 22, 18, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.feature-body {
  padding: 1.75rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
  background-color: rgba(13, 107, 79, 0.1);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.compliance-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E"); }
.tracking-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.fleet-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z'/%3E%3C/svg%3E"); }
.payment-icon-lg { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E"); }
.alert-icon-lg { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z'/%3E%3C/svg%3E"); }
.intel-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E"); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.feature-intro {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.feature-card ul {
  margin: 0.5rem 0 0.75rem;
}

.feature-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.feature-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--color-primary-light);
  border-radius: 50%;
}

.feature-outro {
  font-size: 0.9rem;
  color: var(--color-text);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.solutions-page {
  background: linear-gradient(180deg, rgba(13, 107, 79, 0.03), rgba(13, 107, 79, 0.07));
}

.solutions-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  margin: 0 auto 2.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.solutions-highlight-copy h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.solutions-highlight-copy p,
.solutions-highlight-copy li {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.solutions-highlight-copy ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.solutions-highlight-copy li {
  margin-bottom: 0.5rem;
}

.solutions-highlight-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.solutions-highlight-visual img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.solution-card {
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.solution-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.solution-card-body {
  padding: 1.5rem;
}

.solution-tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  color: var(--color-primary-dark);
  background: rgba(13, 107, 79, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-bottom: 0.7rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.solution-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(120deg, rgba(8, 74, 55, 0.96), rgba(13, 107, 79, 0.82));
  border-radius: var(--radius-xl);
  color: white;
}

.solutions-cta h3 {
  margin: 0.25rem 0 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.solutions-cta .section-eyebrow {
  margin-bottom: 0.4rem;
  color: var(--color-accent-soft);
}

@media (max-width: 900px) {
  .solutions-highlight,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Financial */
.financial {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #0f2a22 100%);
  color: white;
}

.financial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.financial h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.financial h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-accent-soft);
  margin-bottom: 1.25rem;
}

.financial p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}

.financial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.financial-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.875rem;
}

.financial-note {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55) !important;
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.financial-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.financial-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.financial-image-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.6rem;
}

.stat-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
  border-radius: 100px;
  transition: width 1.2s ease-out;
}

/* Audiences */
.audiences {
  background: var(--color-bg);
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-wide {
  grid-column: span 2;
}

.audience-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.audience-card:hover .audience-bg {
  transform: scale(1.06);
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 18, 0.92) 0%, rgba(10, 22, 18, 0.4) 60%, rgba(10, 22, 18, 0.2) 100%);
}

.audience-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: white;
}

.audience-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.audience-content h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.audience-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.audience-cta {
  margin-top: 2.25rem;
  text-align: center;
}

.audience-cta h3 {
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

/* Why */
.why {
  background: var(--color-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-item {
  background: var(--color-bg);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.why-highlight {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  border: none;
  background: none;
}

.why-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: linear-gradient(135deg, rgba(13, 107, 79, 0.08) 0%, rgba(232, 168, 56, 0.08) 100%);
  border: 1px solid rgba(13, 107, 79, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-highlight-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.why-highlight-inner > div {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-icon-svg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background-color: rgba(13, 107, 79, 0.12);
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: center;
}

.security-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E"); }
.finance-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E"); }
.ops-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z'/%3E%3C/svg%3E"); }
.africa-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230d6b4f' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* How It Works */
.how {
  background: var(--color-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.step-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.step-num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Team, advisors and partners */
.people {
  background: var(--color-surface);
}

.people-group + .people-group {
  margin-top: 3.5rem;
}

.people-group-heading {
  margin-bottom: 1.25rem;
}

.people-group-heading .section-eyebrow {
  margin-bottom: 0.35rem;
}

.people-group-heading h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-text);
}

.people-grid {
  display: grid;
  gap: 1.25rem;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.advisor-grid {
  grid-template-columns: repeat(3, 1fr);
}

.person-card {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.person-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 107, 79, 0.35);
  box-shadow: var(--shadow-md);
}

.person-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: white;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-profile-card {
  max-width: 320px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.person-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  margin-bottom: 1rem;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, rgba(8, 74, 55, 0.9), rgba(13, 107, 79, 0.7));
  border: 1px solid rgba(13, 107, 79, 0.25);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-card h4 {
  margin-bottom: 0.35rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
}

.person-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.person-socials {
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  color: white;
  background: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}

.advisor-card .person-avatar {
  background: linear-gradient(135deg, #9b6b1f, var(--color-accent));
}

.partners-group {
  padding-top: 0.25rem;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.team-partner-logos {
  justify-content: center;
}

.advisor-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.advisor-list li {
  flex: 1 1 0;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 190px;
  min-height: 5rem;
  padding: 0.75rem 1.15rem;
  color: var(--color-primary-dark);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.partner-logo img {
  width: 100%;
  max-width: 15rem;
  height: 5rem;
  object-fit: contain;
}

.logo-placeholder {
  display: grid;
  width: 100%;
  height: 3rem;
  place-items: center;
  color: var(--color-text-muted);
  background: repeating-linear-gradient(135deg, #f2f6f4 0, #f2f6f4 7px, #e8efeb 7px, #e8efeb 14px);
  border: 1px dashed #b8c9c1;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.partner-mark {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: white;
  background: var(--color-primary);
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 800;
}

.partner-logo small {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}


/* Vision */
.vision {
  position: relative;
  text-align: center;
  color: white;
  padding: 6rem 0;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 18, 0.88) 0%, rgba(13, 107, 79, 0.75) 100%);
}

.vision-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.vision h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.vision-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-accent-soft);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.vision p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

/* CTA + Contact */
.cta {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 74, 55, 0.95) 0%, rgba(13, 107, 79, 0.9) 100%);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-text {
  color: white;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.0625rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta .btn-primary {
  background: white;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
  background: var(--color-accent-soft);
}

.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.contact-details a {
  display: grid;
  gap: 0.15rem;
  min-width: 220px;
  padding: 0.9rem 1rem;
  color: var(--color-primary-dark);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.contact-details span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.contact-form > p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: var(--color-primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 107, 79, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.footer-brand .logo {
  color: white;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-copy {
  font-size: 0.8125rem;
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.fade-in:nth-child(2) { transition-delay: 0.05s; }
.feature-card.fade-in:nth-child(3) { transition-delay: 0.1s; }
.feature-card.fade-in:nth-child(4) { transition-delay: 0.15s; }
.feature-card.fade-in:nth-child(5) { transition-delay: 0.2s; }
.feature-card.fade-in:nth-child(6) { transition-delay: 0.25s; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0.1rem;
  }

  .nav-links a {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
    font-size: 0.78rem;
  }

  .hero-grid,
  .platform-grid,
  .financial-inner,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .float-alert { left: 0; }
  .float-payment { right: 0; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .audiences-grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience-wide {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .why-highlight-inner {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .platform-badge {
    right: 1rem;
    bottom: -12px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child {
    padding-top: 0.75rem;
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    min-height: 0;
    padding: 0.85rem 0.25rem;
    border-radius: 6px;
  }

  .nav-login {
    text-align: center;
    margin-top: 0.25rem;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-trust {
    gap: 1.25rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-float-card {
    font-size: 0.75rem;
  }

  .float-alert {
    top: -12px;
    left: -8px;
  }

  .float-payment {
    right: -8px;
    bottom: 16px;
  }

  .audiences-grid,
  .why-grid,
  .steps,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .audience-wide {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .vehicle-types {
    gap: 0.75rem;
  }

  .hero-float-card {
    display: none;
  }

  .platform-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .badge-num {
    font-size: 1.35rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .hero-slide-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .dashboard-mockup {
    border-radius: var(--radius-lg);
  }

  .mockup-stats {
    gap: 0.4rem;
  }

  .mockup-stat {
    padding: 0.65rem 0.35rem;
  }

  .mockup-stat-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 600px) {
  .advisor-list {
    flex-wrap: wrap;
  }

  .advisor-list li {
    flex-basis: 100%;
  }

  .contact-details a {
    flex: 1 1 100%;
    min-width: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-image {
    width: calc(100% + 3rem);
    height: 155px;
    margin: -1.5rem -1.5rem 1.25rem;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child {
    padding-top: 0.75rem;
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    min-height: 0;
    padding: 0.85rem 0.25rem;
    border-radius: 6px;
  }

  .nav-login {
    margin-top: 0.25rem;
    text-align: center;
  }

  .header-contact {
    display: none;
  }
}
