:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #f1f6ff;
  --navy: #0f2a5c;
  --teal: #19c9a8;
  --teal-soft: #e9fbf7;
  --warm: #f7fbff;
  --text: #1a2233;
  --muted: #5b6578;
  --line: #e7edf5;
  --soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(15, 42, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 237, 245, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 64px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-cta {
  display: none;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  gap: 6px;
  align-content: center;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 42, 92, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 14px;
  left: 14px;
  z-index: 19;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(231, 237, 245, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 800;
}

.mobile-menu a:nth-last-child(1) {
  color: var(--white);
  background: #16a34a;
}

.hero,
.section,
.site-footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  gap: 42px;
  overflow: hidden;
  padding-block: 54px 70px;
  background:
    radial-gradient(circle at top right, rgba(25, 201, 168, 0.1), transparent 30%),
    radial-gradient(circle at 8% 16%, rgba(37, 99, 235, 0.06), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, var(--warm) 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  content: "";
  border: 28px solid rgba(37, 99, 235, 0.08);
  border-radius: 50%;
}

.hero-copy,
.hero-panel,
.section > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(25, 201, 168, 0.13);
}

.hero-logo {
  width: 126px;
  margin-bottom: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 13vw, 5.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy p,
.section-heading p,
.form-layout > div > p,
.referral p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(37, 99, 235, 0.25);
}

.btn-whatsapp {
  color: var(--white);
  background: #16a34a;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
}

.hero-panel {
  display: grid;
  min-height: 430px;
  align-items: center;
}

.photo-panel {
  position: relative;
  min-height: 540px;
  align-items: end;
  isolation: isolate;
}

.photo-main {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(231, 237, 245, 0.95);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-panel::before {
  position: absolute;
  inset: 54px 34px 14px 10px;
  z-index: -1;
  content: "";
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(25, 201, 168, 0.22), rgba(37, 99, 235, 0.16));
  transform: rotate(-3deg);
}

.photo-main {
  height: min(520px, 62vw);
  min-height: 360px;
  border-radius: 36px;
  object-position: center;
}

.stock-photo {
  object-fit: cover;
}

.delivery-stat {
  position: absolute;
  top: 26px;
  left: -2px;
  display: grid;
  gap: 2px;
  min-width: 176px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 35px rgba(15, 42, 92, 0.12);
}

.delivery-stat-two {
  top: auto;
  right: 22px;
  bottom: 36px;
  left: auto;
}

.delivery-stat strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.delivery-stat span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(15, 42, 92, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(15, 42, 92, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
}

.route-line {
  position: absolute;
  inset: 76px 60px 88px 54px;
  border: 5px solid transparent;
  border-top-color: var(--teal);
  border-right-color: var(--blue);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.pin,
.rider-dot {
  position: absolute;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.pin {
  padding: 9px 13px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(15, 42, 92, 0.14);
}

.pin-a {
  top: 70px;
  left: 34px;
}

.pin-b {
  right: 30px;
  bottom: 74px;
}

.rider-dot {
  top: 47%;
  left: 46%;
  width: 58px;
  height: 58px;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.12);
}

.rider-dot::after {
  position: absolute;
  inset: 17px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--white);
}

.status-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 35px rgba(15, 42, 92, 0.14);
}

.status-card strong {
  color: var(--navy);
}

.status-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.status-one {
  top: 34px;
  right: 16px;
}

.status-two {
  bottom: 32px;
  left: 14px;
}

.section {
  padding-block: 74px;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.split-heading {
  display: grid;
  gap: 18px;
  max-width: none;
  align-items: end;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.feature-card,
.testimonial-grid article,
.form-card,
.estimator-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 42, 92, 0.08);
}

.feature-card,
.testimonial-grid article {
  padding: 24px;
}

.what-section {
  background: var(--white);
}

.value-grid {
  display: grid;
  gap: 18px;
}

.value-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(25, 201, 168, 0.08), transparent 32%),
    var(--white);
  box-shadow: 0 14px 34px rgba(15, 42, 92, 0.08);
}

.value-card-blue {
  color: var(--navy);
  border-color: rgba(37, 99, 235, 0.18);
  background:
    radial-gradient(circle at 100% 0, rgba(25, 201, 168, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff, var(--blue-soft));
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-card-blue h3 {
  color: var(--navy);
}

.value-card-blue p {
  color: var(--muted);
}

.value-card p {
  color: var(--muted);
}

.media-story {
  background:
    linear-gradient(180deg, #f9fbff, #ffffff);
}

.brand-proof-layout {
  display: grid;
  gap: 20px;
}

.brand-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(231, 237, 245, 0.95);
  border-radius: 32px;
  background: #f7f9fc;
  box-shadow: var(--shadow);
}

.media-copy {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, 0.045), transparent 34%),
    var(--white);
  box-shadow: 0 14px 34px rgba(15, 42, 92, 0.08);
}

.media-copy p {
  color: var(--muted);
}

.brand-proof-grid {
  display: grid;
  gap: 16px;
}

.brand-proof-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 42, 92, 0.07);
}

.brand-proof-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.brand-proof-grid p {
  color: var(--muted);
}

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

.proof-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
}

.proof-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.feature-card p,
.testimonial-grid p {
  color: var(--muted);
}

.icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(25, 201, 168, 0.16), rgba(37, 99, 235, 0.12)),
    var(--white);
  border: 1px solid rgba(25, 201, 168, 0.28);
}

.icon::before,
.icon::after {
  display: block;
  content: "";
}

.route-icon::before {
  width: 25px;
  height: 25px;
  margin: 13px;
  border: 3px solid var(--teal);
  border-left-color: transparent;
  border-radius: 50%;
}

.smart-icon::before {
  width: 24px;
  height: 24px;
  margin: 14px;
  border: 3px solid var(--blue);
  border-radius: 8px;
}

.secure-icon::before {
  width: 22px;
  height: 26px;
  margin: 12px auto;
  background: var(--teal);
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
}

.vendor-icon::before {
  width: 26px;
  height: 20px;
  margin: 16px auto;
  border: 3px solid var(--blue);
  border-top-color: var(--teal);
  border-radius: 7px;
}

.estimator-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(25, 201, 168, 0.14), transparent 25%),
    var(--white);
}

.estimator-card {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce5f2;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.estimate-result {
  border-radius: 20px;
  padding: 18px;
  color: var(--navy);
  background: #eef7ff;
  font-size: 1.05rem;
  font-weight: 900;
}

.form-layout {
  display: grid;
  gap: 30px;
}

.form-card {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.hidden {
  display: none;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zone-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.testimonial-grid article {
  display: grid;
  gap: 8px;
}

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid span {
  color: var(--teal);
  font-weight: 800;
}

.referral {
  display: grid;
  gap: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #173d83);
}

.referral h2,
.referral p,
.referral .section-kicker {
  color: var(--white);
}

.referral p {
  opacity: 0.82;
}

.site-footer {
  display: grid;
  gap: 26px;
  padding-block: 48px 34px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer img {
  width: 72px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--white);
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--teal);
}

.copyright {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #16a34a;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.32);
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding-block: 70px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .btn {
    min-width: 190px;
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-heading {
    grid-template-columns: 1fr minmax(280px, 0.55fr);
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-card,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .nav-links,
  .header-cta {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: clamp(52px, 7vw, 108px);
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .form-layout.reverse {
    grid-template-columns: 1fr 1fr;
  }

  .brand-proof-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .brand-proof-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .media-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .referral {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
