﻿:root {
  --ink: #111827;
  --steel: #334155;
  --slate: #475569;
  --cloud: #ffffff;
  --sand: #ffffff;
  --accent: #f1c15b;
  --accent-dark: #b37a1e;
  --ocean: #1f2937;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  background: transparent;
  border-radius: 50%;
  z-index: -1;
}

.page::before {
  top: -140px;
  right: -160px;
}

.page::after {
  bottom: -180px;
  left: -140px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 32px;
}

.brand small {
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  display: block;
  margin-top: 4px;
}

.logo {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .logo img {
    display: block;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    object-fit: cover;
  }

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--steel);
  font-weight: 500;
}

.nav a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 26, 34, 0.14);
}

.btn-primary {
  background: linear-gradient(120deg, #111827, #374151);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(15, 26, 34, 0.2);
  color: var(--ink);
  background: #ffffff;
}

.btn-ghost {
  color: var(--steel);
}

.btn-dark {
  background: #0f172a;
  color: var(--white);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: var(--steel);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  margin: 16px 0 16px;
  letter-spacing: -0.5px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-metrics strong {
  display: block;
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-metrics span {
  font-size: 13px;
  color: #495a6d;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}

.hero-visual img {
  width: 92%;
  height: 92%;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 26, 34, 0.12);
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.hero-card {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 26, 34, 0.12);
  font-weight: 600;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  text-align: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
  border: 1px solid rgba(15, 26, 34, 0.1);
  box-shadow: 0 12px 26px rgba(15, 26, 34, 0.06);
}

.compliance {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 70px;
}

.compliance-card {
  background: #ffffff;
  color: var(--ink);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 26, 34, 0.1);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.compliance-card h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.compliance-grid div {
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--steel);
  box-shadow: 0 10px 24px rgba(15, 26, 34, 0.08);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.section {
  margin: 80px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  margin: 8px 0 0;
  width: 100%;
}

.section-head > div,
.section-head > p {
  width: 100%;
}

.section-kicker {
  display: block;
  text-align: center;
}

.section-head-center {
  text-align: center;
}

.section-head-center h2 {
  color: #000000;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(14, 24, 33, 0.1);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(14, 24, 33, 0.12);
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.card-tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

.pack-catalog .section-head {
  margin-bottom: 18px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pack-card {
  background: var(--white);
  border: 1px solid rgba(15, 26, 34, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(15, 26, 34, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pack-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.pack-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 26, 34, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 34, 0.7);
}

.lightbox-content {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  max-width: min(90vw, 860px);
  max-height: 90vh;
  box-shadow: 0 20px 50px rgba(15, 26, 34, 0.2);
  z-index: 1;
  display: grid;
  gap: 10px;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: #111827;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.whatsapp-float {
    position: fixed;
    right: 12px;
    bottom: 12px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1000;
    text-decoration: none;
    padding: 0;
    border: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 0;
    box-sizing: border-box;
  }
  
.whatsapp-float img {
    width: 92px;
    height: 92px;
    display: block;
  }

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: none;
  }

  @media (max-width: 600px) {
    .whatsapp-float {
        right: 10px;
        bottom: 10px;
        width: auto;
        height: auto;
      }
  }

.city-coverage .section-head {
  margin-bottom: 24px;
  text-align: center;
}

.city-coverage h2 {
  color: #000000;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.city-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 34, 0.08);
  box-shadow: 0 16px 34px rgba(15, 26, 34, 0.08);
  display: grid;
  gap: 12px;
  padding: 14px 14px 18px;
}

.city-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.city-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.city-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.faq .section-head {
  margin-bottom: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.faq-grid div {
  background: var(--white);
  border: 1px solid rgba(15, 26, 34, 0.08);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(15, 26, 34, 0.06);
}

.faq-grid h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.seo-copy {
  display: none;
}

.faq,
.city-coverage {
  display: block;
}

.coverage {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.coverage-map {
  position: relative;
}

.coverage-map img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 26, 34, 0.12);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.map-card {
  position: absolute;
  bottom: -12px;
  left: 20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 26, 34, 0.12);
  font-weight: 600;
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.region-grid div {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(15, 26, 34, 0.08);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.feature-list li {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15, 26, 34, 0.08);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.split-media img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 16px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(14, 24, 33, 0.1);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.stat strong {
  display: block;
  font-size: 28px;
  font-family: "Space Grotesk", sans-serif;
}

.sectors {
  margin-top: 90px;
}

.process {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(14, 24, 33, 0.1);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.process-grid div {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.process-grid strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: var(--accent-dark);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  color: var(--ink);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(14, 24, 33, 0.1);
  border: 1px solid rgba(15, 26, 34, 0.08);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-section .section-head {
  margin-bottom: 20px;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 34, 0.08);
  box-shadow: 0 18px 40px rgba(14, 24, 33, 0.08);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 26, 34, 0.08);
  box-shadow: 0 16px 36px rgba(14, 24, 33, 0.08);
  display: grid;
  gap: 12px;
  align-content: start;
}

.map-info h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(15, 26, 34, 0.12);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-meta {
  font-size: 14px;
  color: var(--slate);
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-links h4 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.footer-links p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.footer-links a {
  color: var(--slate);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 26, 34, 0.08);
  padding-top: 16px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--slate);
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 12px 20px;
  }

  .nav a {
    padding: 6px 0;
  }

  .hero {
    gap: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 180px;
    justify-content: center;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .coverage {
    padding: 24px;
  }

  .compliance {
    grid-template-columns: 1fr;
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .pack-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 600px) {
  .page {
    padding: 16px;
  }

  .section {
    margin: 60px 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    margin-top: 12px;
  }

  .route-strip {
    gap: 10px;
  }

  .pack-card {
    padding: 14px;
  }

  .pack-card img {
    max-width: 200px;
  }

  .city-card img {
    height: 150px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1 1 200px;
    justify-content: center;
  }
}

.route-strip,
.compliance-card,
.compliance-grid div,
.card,
.coverage-map img,
.map-card,
.region-grid div,
.feature-list li,
.stats,
.process,
.process-grid div,
.cta,
.map-embed,
.map-info,
.faq-grid div {
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.9);
}
