:root {
  --brand-navy: #041b3d;
  --brand-blue: #075fc6;
  --brand-green: #138a4b;
  --navy-950: #04142e;
  --navy-900: #071b3c;
  --navy-800: #0a2857;
  --blue-700: #0758c7;
  --blue-600: #0874ea;
  --blue-500: #1b8fff;
  --blue-100: #e7f3ff;
  --blue-50: #f3f9ff;
  --orange-600: #064fae;
  --orange-500: #0b67cf;
  --orange-100: #e8f2ff;
  --green-600: #0b9e5b;
  --green-100: #dcf9eb;
  --ink: #12233f;
  --copy: #53637b;
  --muted: #75849a;
  --line: #dce6f2;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --cream: #f4f8ff;
  --shadow-xs: 0 5px 18px rgba(7, 27, 60, 0.06);
  --shadow-sm: 0 12px 35px rgba(7, 27, 60, 0.09);
  --shadow-md: 0 24px 70px rgba(7, 27, 60, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow-container {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-notice {
  position: relative;
  z-index: 1010;
  background: var(--navy-950);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.notice-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-inner p,
.notice-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.notice-links a {
  color: #fff;
  text-decoration: none;
}

.notice-links a:hover {
  text-decoration: underline;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #36df91;
  box-shadow: 0 0 0 5px rgba(54,223,145,.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220,230,242,.88);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(7,27,60,.09);
}

.nav-wrap {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 135px;
  height: 55px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav > a,
.nav-group-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-group-button:hover,
.nav-group-button.active,
.nav-group-button[aria-expanded="true"] {
  background: var(--blue-100);
  color: var(--blue-700);
}

.nav-group {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(1180px, calc(100vw - 40px));
  max-height: min(610px, calc(100vh - 125px));
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  padding: 26px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(7,27,60,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-intro {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.mega-intro h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.mega-intro p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.mega-intro .text-link {
  color: #fff;
}

.mega-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-destinations a,
.mega-services a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.mega-destinations a:hover,
.mega-services a:hover {
  border-color: #bfd9f7;
  background: var(--blue-50);
  transform: translateY(-1px);
}

.mega-destinations strong,
.mega-destinations small,
.mega-services strong,
.mega-services small {
  display: block;
}

.mega-destinations strong,
.mega-services strong {
  color: var(--ink);
  font-size: 13px;
}

.mega-destinations small {
  margin-top: 1px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 750;
}

.nav-flag {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 23px;
  line-height: 1;
}

.mega-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mega-services small {
  display: -webkit-box;
  margin-top: 2px;
  overflow: hidden;
  color: var(--copy);
  font-size: 11px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--navy-900);
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-actions {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,88,199,.22);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 13px 30px rgba(7,88,199,.28);
}

.button-orange {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7,88,199,.22);
}

.button-orange:hover {
  background: var(--orange-600);
}

.button-outline {
  border-color: #b8d3f2;
  background: #fff;
  color: var(--blue-700);
}

.button-outline:hover {
  border-color: var(--blue-700);
  background: var(--blue-50);
}

.button-white {
  background: #fff;
  color: var(--navy-900);
}

.button-white:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.button-ghost-light {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.button-ghost-light:hover {
  background: #fff;
  color: var(--navy-900);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../../assets/images/slide/courier-landing.webp") 65% center / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 20%, rgba(27,143,255,.25), transparent 28%),
    linear-gradient(90deg, rgba(4,20,46,.99) 0%, rgba(4,20,46,.95) 50%, rgba(4,20,46,.7) 75%, rgba(4,20,46,.5) 100%);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, .72fr);
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange-500);
}

.eyebrow-light {
  color: #b9dcff;
}

.hero-copy .eyebrow {
  color: #aad6ff;
}

.hero-copy h1 {
  margin: 17px 0 20px;
  color: #fff;
  font-size: clamp(43px, 5.3vw, 72px);
  line-height: 1.01;
  letter-spacing: -.055em;
}

.hero-copy h1 span {
  color: #65b5ff;
}

.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.72;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.hero-proof span::before {
  content: "✓";
  color: #53e79e;
  font-weight: 900;
}

.hero-microcopy {
  margin-top: 16px !important;
  color: rgba(255,255,255,.58) !important;
  font-size: 12px !important;
}

.rate-finder {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
}

.rate-finder::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 30px;
  width: 86px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange-500);
  opacity: .16;
  transform: rotate(-5deg);
}

.rate-finder-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.rate-finder-head h2 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.rate-finder-head p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
}

.finder-badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-fields {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
}

.finder-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.finder-field select,
.finder-field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cad8e8;
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.finder-result {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--navy-950), var(--blue-700));
  color: #fff;
}

.finder-flag {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  font-size: 38px;
}

.finder-result small,
.finder-result strong,
.finder-result span {
  display: block;
}

.finder-result small {
  color: #b9dcff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.finder-result strong {
  margin: 3px 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
}

.finder-result span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.rate-finder .button {
  width: 100%;
}

.finder-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.post-hero-quote {
  position: relative;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #eef6ff 0%, #fff 58%, #edf5ff 100%);
}

.post-hero-quote-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: center;
}

.post-hero-quote-copy h2 {
  margin: 10px 0 14px;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.post-hero-quote-copy > p {
  margin: 0 0 20px;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.75;
}

.post-hero-form {
  border-color: #bfd8f4;
  box-shadow: 0 24px 65px rgba(7, 64, 142, .13);
}

.trust-ribbon {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.trust-item {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 19px;
  font-weight: 900;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--navy-900);
  font-size: 14px;
}

.trust-item small {
  color: var(--copy);
  font-size: 11px;
}

.section {
  padding: 92px 0;
}

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

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-950);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head-copy {
  max-width: 790px;
}

.section-head h2,
.content-title {
  margin: 10px 0 11px;
  color: var(--navy-900);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-head p,
.content-copy {
  margin: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.72;
}

.section-dark .section-head h2,
.section-dark .section-head p {
  color: #fff;
}

.section-dark .section-head p {
  color: rgba(255,255,255,.7);
}

.destination-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.destination-search {
  position: relative;
  width: min(420px, 100%);
}

.destination-search input {
  width: 100%;
  min-height: 50px;
  padding: 10px 42px 10px 15px;
  border: 1px solid #c9d8e9;
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
}

.destination-search input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(8,116,234,.12);
}

.destination-search span {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--muted);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  overflow: hidden;
  border: 1px solid #d6e3f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--blue-50);
  transition: transform .22s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: #9cc8f8;
  box-shadow: var(--shadow-md);
}

.destination-card:hover::after {
  transform: scale(1.15);
}

.destination-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.country-flag {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  font-size: 33px;
  line-height: 1;
}

.country-code {
  position: relative;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.destination-label {
  margin: 23px 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.destination-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.destination-card h3 a {
  text-decoration: none;
}

.destination-card h3 a:hover {
  color: var(--blue-700);
}

.destination-rate {
  margin: 16px 0 4px;
  color: var(--orange-600);
  letter-spacing: -.025em;
}

.destination-rate span,
.destination-rate strong {
  display: block;
}

.destination-rate span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.destination-rate strong {
  color: var(--orange-600);
  font-size: 22px;
  font-weight: 950;
}

.destination-time {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--copy);
  font-size: 12px;
  line-height: 1.55;
}

.service-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--copy);
  font-size: 12px;
  line-height: 1.7;
}

.destination-card .button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  font-size: 12px;
}

.no-results {
  display: none;
  margin: 24px 0 0;
  padding: 22px;
  border: 1px dashed #b9cadc;
  border-radius: 14px;
  color: var(--copy);
  text-align: center;
}

.rate-disclaimer {
  display: flex;
  gap: 13px;
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px solid #c5d9f1;
  border-radius: 14px;
  background: #f1f7ff;
  color: #395570;
  font-size: 12px;
  line-height: 1.65;
}

.rate-disclaimer strong {
  color: var(--navy-800);
}

.special-rate-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(140deg, var(--navy-950), #0a4d9e);
  color: #fff;
  box-shadow: 0 30px 75px rgba(4,20,46,.2);
}

.special-rate-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255,255,255,.045);
  border-radius: 50%;
}

.special-rate-panel > * {
  position: relative;
  z-index: 1;
}

.special-rate-panel h2 {
  margin: 10px 0 13px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.special-rate-panel p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.special-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.special-feature {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}

.special-feature span {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
}

.special-feature strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.special-feature small {
  color: rgba(255,255,255,.65);
  font-size: 10px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #afd0f4;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue-100), #fff);
  color: var(--blue-700);
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #c7e0fa;
}

.service-card h3 {
  margin: 0 0 9px;
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -.02em;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.7;
}

.service-card .text-link {
  margin-top: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.media-card {
  position: relative;
}

.media-card img {
  width: 100%;
  min-height: 460px;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.media-caption {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
}

.media-caption strong,
.media-caption span {
  display: block;
}

.media-caption strong {
  color: var(--navy-900);
  font-size: 14px;
}

.media-caption span {
  color: var(--copy);
  font-size: 11px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 11px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  counter-increment: process;
}

.process-card::before {
  content: "0" counter(process);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.process-card h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: var(--copy);
  font-size: 12px;
}

.calculator-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border: 1px solid #c8dcf2;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, var(--blue-50));
  box-shadow: var(--shadow-sm);
}

.calculator-copy h2 {
  margin: 10px 0;
  color: var(--navy-900);
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

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

.calculator-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

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

.dimension-grid label,
.calculator-card > label {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.dimension-grid input,
.calculator-card > label select {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 9px 11px;
  border: 1px solid #cbd8e8;
  border-radius: 10px;
  outline: 0;
}

.dimension-grid input:focus,
.calculator-card > label select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(8,116,234,.1);
}

.calculator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 17px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #fff;
}

.calculator-result span,
.calculator-result strong {
  display: block;
}

.calculator-result span {
  color: #b9dcff;
  font-size: 10px;
  text-transform: uppercase;
}

.calculator-result strong {
  color: #fff;
  font-size: 25px;
}

.calculator-result small {
  max-width: 210px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  text-align: right;
}

.faq-list {
  max-width: 940px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--blue-700);
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.75;
}

.quote-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.quote-panel-head {
  margin-bottom: 20px;
}

.quote-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.quote-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1fd781;
  box-shadow: 0 0 0 5px rgba(31,215,129,.14);
}

.quote-panel h2 {
  margin: 8px 0 6px;
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.quote-panel-head p {
  margin: 0;
  color: var(--copy);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #cbd8e8;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(8,116,234,.1);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d92828;
  box-shadow: 0 0 0 3px rgba(217,40,40,.08);
}

.field-error,
.form-error {
  display: none;
  margin-top: 4px;
  color: #b91c1c;
  font-size: 10px;
}

.field.invalid .field-error,
.form-error.show {
  display: block;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0;
  color: var(--copy);
  font-size: 10px;
  line-height: 1.5;
}

.consent-check input {
  margin-top: 3px;
}

.consent-check a {
  color: var(--blue-700);
}

.submit-button {
  width: 100%;
}

.submit-button.loading {
  pointer-events: none;
  opacity: .72;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.flash-message {
  margin: 18px auto 0;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.flash-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #9f1239;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 82% 15%, rgba(27,143,255,.28), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #0a438a);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(255,255,255,.035);
  border-radius: 50%;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 55px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.6);
  font-size: 11px;
}

.breadcrumb a {
  color: #b9dcff;
  text-decoration: none;
}

.page-hero h1 {
  margin: 0 0 17px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.page-hero-copy > p {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.72;
}

.page-rate-card {
  padding: 27px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 23px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(9px);
  text-align: center;
}

.page-rate-flag {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 21px;
  background: rgba(255,255,255,.12);
  font-size: 42px;
}

.page-rate-card > span,
.page-rate-card strong,
.page-rate-card small {
  display: block;
}

.page-rate-card > span {
  color: #b9dcff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-rate-card strong {
  margin: 7px 0 5px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.page-rate-card small {
  margin-bottom: 17px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  line-height: 1.55;
}

.page-rate-card .button {
  width: 100%;
}

.country-layout,
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.content-card,
.sidebar-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.content-card + .content-card {
  margin-top: 22px;
}

.content-card h2 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.content-card h3 {
  margin: 25px 0 9px;
  color: var(--navy-900);
  font-size: 19px;
}

.content-card p,
.content-card li {
  color: var(--copy);
  font-size: 14px;
  line-height: 1.8;
}

.content-card p:first-of-type {
  margin-top: 0;
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
}

.sidebar-stack {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}

.compact-rate {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy-950), var(--blue-700));
  color: #fff;
}

.compact-rate span,
.compact-rate strong,
.compact-rate small {
  display: block;
}

.compact-rate span {
  color: #b9dcff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-rate strong {
  margin: 5px 0;
  color: #fff;
  font-size: 27px;
}

.compact-rate small {
  margin-bottom: 15px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
}

.compact-rate .button {
  width: 100%;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.city-grid span {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.info-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.info-table th,
.info-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--copy);
  font-size: 12px;
  text-align: left;
}

.info-table th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 850;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

.content-callout {
  padding: 18px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 12px 12px 0;
  background: var(--orange-100);
  color: #294c75;
  font-size: 12px;
  line-height: 1.7;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  color: var(--blue-700);
  font-size: clamp(23px, 2vw, 31px);
  white-space: nowrap;
}

.metric-card span {
  color: var(--copy);
  font-size: 11px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 15px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.legal-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--navy-900);
  font-size: 24px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--copy);
  font-size: 13px;
  line-height: 1.8;
}

.success-card {
  max-width: 720px;
  margin: 70px auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 33px;
  font-weight: 900;
}

.success-card h1 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 38px;
  letter-spacing: -.04em;
}

.success-card p {
  color: var(--copy);
}

.conversion-band {
  padding: 55px 0;
  background: linear-gradient(135deg, var(--blue-700), #06408e);
  color: #fff;
}

.conversion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.conversion-inner h2 {
  margin: 9px 0 6px;
  color: #fff;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.conversion-inner p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.site-footer {
  padding: 66px 0 0;
  background: var(--navy-950);
  color: rgba(255,255,255,.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr .9fr 1.1fr;
  gap: 42px;
}

.footer-brand img {
  width: 170px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.site-footer address {
  margin: 15px 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badges span {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #b9dcff;
  font-size: 9px;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 14px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-column-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
}

.footer-links li {
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.footer-links li + li {
  margin-top: 8px;
}

.two-column-links li + li {
  margin-top: 0;
}

.footer-links a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-links {
  margin-top: 15px;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.footer-powered a,
.footer-powered strong {
  color: #fff;
}

.footer-powered strong {
  font-size: 12px;
}

.quick-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity .18s ease, visibility .18s ease;
}

body.menu-open .quick-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quick-actions a {
  position: relative;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 13px 35px rgba(0,0,0,.24);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.quick-actions a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
}

.quick-call { background: var(--blue-700); }
.quick-whatsapp { background: #0daa5f; }

.quick-actions svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.quick-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--navy-950);
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(5px, -50%);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.quick-actions a:hover .quick-label,
.quick-actions a:focus-visible .quick-label {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav > a,
  .nav-group-button {
    padding-inline: 8px;
    font-size: 13px;
  }

  .header-quote {
    padding-inline: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 36px;
  }

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

  .country-layout,
  .service-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .header-quote {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: -20px;
    width: min(420px, 100%);
    max-height: calc(100vh - 76px);
    display: block;
    padding: 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-top: 3px solid var(--blue-700);
    border-radius: 0 0 20px 20px;
    background: #fff;
    box-shadow: -20px 30px 60px rgba(7,27,60,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top right;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav > a,
  .nav-group-button {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-inline: 14px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-height: none;
    display: none;
    grid-template-columns: 1fr;
    margin: 4px 0 12px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mega-menu.open {
    display: grid;
    transform: none;
  }

  .mega-intro {
    display: none;
  }

  .mega-destinations,
  .mega-services {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-call { background: var(--blue-700); }
  .mobile-whatsapp { background: var(--green-600); }
  .mobile-quote {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .calculator-shell,
  .post-hero-quote-grid,
  .country-layout,
  .service-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding: 58px 0;
  }

  .rate-finder {
    max-width: 650px;
  }

  .trust-grid,
  .process-grid,
  .about-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .special-rate-panel {
    grid-template-columns: 1fr;
  }

  .country-layout,
  .service-layout {
    gap: 22px;
  }

  .sidebar-stack {
    position: static;
  }

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

  .conversion-inner {
    display: block;
  }

  .conversion-inner .button-row {
    margin-top: 22px;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow-container {
    width: min(100% - 28px, 1220px);
  }

  .notice-inner {
    justify-content: center;
  }

  .notice-inner > p,
  .notice-links a:first-child {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 118px;
    height: 48px;
  }

  .site-nav {
    right: -14px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 68px);
  }

  .mega-destinations,
  .mega-services {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    background-position: 72% center;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(4,20,46,.99), rgba(4,20,46,.88));
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy > p,
  .page-hero-copy > p {
    font-size: 15px;
  }

  .hero-copy .button-row .button,
  .conversion-inner .button-row .button {
    width: 100%;
  }

  .post-hero-quote {
    padding: 46px 0;
  }

  .post-hero-quote-grid {
    gap: 26px;
  }

  .rate-finder,
  .quote-panel {
    padding: 22px;
    border-radius: 21px;
  }

  .finder-fields,
  .form-grid,
  .destination-grid,
  .service-grid,
  .trust-grid,
  .process-grid,
  .special-feature-grid,
  .about-metrics,
  .footer-grid,
  .two-column-links {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .button {
    margin-top: 18px;
  }

  .destination-toolbar {
    display: block;
  }

  .destination-search {
    width: 100%;
  }

  .special-rate-panel,
  .calculator-shell {
    padding: 27px 21px;
    border-radius: 22px;
  }

  .media-card img {
    min-height: 330px;
  }

  .media-caption {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }

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

  .calculator-result {
    display: block;
  }

  .calculator-result small {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .page-hero {
    padding: 54px 0 47px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-rate-card {
    max-width: 420px;
  }

  .content-card,
  .legal-card {
    padding: 25px 21px;
  }

  .content-card h2 {
    font-size: 26px;
  }

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

  .conversion-band {
    padding: 45px 0;
  }

  .footer-bottom {
    display: block;
    padding: 20px 0;
  }

  .footer-bottom p + p {
    margin-top: 10px;
  }

  .quick-actions {
    right: 11px;
    bottom: 11px;
  }

  .quick-actions a {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .quick-actions svg {
    width: 24px;
    height: 24px;
  }

  .quick-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Brand-aligned landing page polish */
.button-orange,
.submit-button {
  background: linear-gradient(135deg, var(--brand-blue), #0a73d8);
  box-shadow: 0 12px 28px rgba(7,95,198,.24);
}

.button-orange:hover,
.submit-button:hover {
  background: linear-gradient(135deg, #064fa8, var(--brand-navy));
}

.button-whatsapp {
  border-color: rgba(255,255,255,.24);
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(19,138,75,.22);
}

.button-whatsapp:hover {
  background: #0d743e;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  animation: gieHeroCycle 18s linear infinite;
}

.hero-slide-one {
  animation-delay: 0s;
}

.hero-slide-two {
  animation-delay: 6s;
}

.hero-slide-three {
  animation-delay: 12s;
}

@keyframes gieHeroCycle {
  0% { opacity: 1; transform: scale(1.025); }
  27% { opacity: 1; }
  35% { opacity: 0; transform: scale(1.085); }
  100% { opacity: 0; transform: scale(1.085); }
}

.home-hero::before {
  background: none;
}

.home-hero::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(20,145,83,.18), transparent 27%),
    linear-gradient(90deg, rgba(4,20,46,.99) 0%, rgba(4,20,46,.96) 46%, rgba(4,20,46,.73) 72%, rgba(4,20,46,.58) 100%);
}

.hero-copy .button-orange {
  position: relative;
  overflow: hidden;
}

.hero-copy .button-orange::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -40%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  animation: gieButtonShine 4.8s ease-in-out infinite;
}

@keyframes gieButtonShine {
  0%, 66% { left: -40%; }
  86%, 100% { left: 125%; }
}

.rate-finder {
  border-color: rgba(255,255,255,.38);
  background: linear-gradient(160deg, rgba(255,255,255,.99), rgba(243,249,255,.97));
}

.rate-finder::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(var(--brand-blue), var(--brand-green));
}

.finder-field select:focus,
.finder-field input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(7,95,198,.1);
}

.finder-flag {
  overflow: hidden;
  padding: 7px;
}

.finder-flag img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.nav-flag,
.country-flag,
.footer-flag,
.eyebrow-flag,
.page-rate-flag-image {
  display: inline-block;
  object-fit: cover;
  background: #fff;
}

.nav-flag {
  width: 38px;
  height: 28px;
  padding: 2px;
  border-radius: 9px;
}

.country-flag {
  width: 58px;
  height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(7,27,60,.1);
}

.footer-flag {
  width: 22px;
  height: 15px;
  margin-right: 5px;
  border-radius: 3px;
  vertical-align: -2px;
}

.country-eyebrow {
  flex-wrap: wrap;
}

.country-eyebrow::before {
  display: none;
}

.eyebrow-flag {
  width: 30px;
  height: 20px;
  padding: 2px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.16);
}

.page-rate-flag-image {
  width: 52px;
  height: 35px;
  padding: 3px;
  border-radius: 8px;
  box-shadow: 0 7px 20px rgba(0,0,0,.2);
}

.mini-icon svg {
  width: 20px;
  height: 20px;
}

.service-icon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f4ff, #fff);
  box-shadow: inset 0 0 0 1px #bddaf7, 0 10px 25px rgba(7,95,198,.1);
}

.service-icon::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(19,138,75,.11);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card:hover .service-icon {
  background: linear-gradient(145deg, var(--brand-blue), #0d75d8);
  color: #fff;
}

.bulk-logistics-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3,18,42,.97), rgba(3,32,72,.9)),
    url("../../assets/images/slide/hero-cargo.webp") center / cover no-repeat;
}

.bulk-logistics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 75% 35%, rgba(13,117,216,.27), transparent 34%);
}

.bulk-logistics-section .special-rate-panel {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(4,27,61,.93), rgba(7,95,198,.78));
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(5px);
}

.bulk-guidance-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.bulk-guidance-steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.bulk-guidance-steps b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-green);
  font-size: 10px;
}

.special-feature {
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.special-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.13);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  border-color: #c8ddf1;
  background:
    radial-gradient(circle at 100% 0, rgba(7,95,198,.08), transparent 28%),
    linear-gradient(165deg, #fff, #f9fcff);
  box-shadow: 0 28px 74px rgba(4,27,61,.14);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0 68%, var(--brand-green) 68% 100%);
}

.quote-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.quote-form-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-blue), #0b76dc);
  color: #fff;
  box-shadow: 0 13px 26px rgba(7,95,198,.24);
}

.quote-form-mark svg {
  width: 27px;
  height: 27px;
}

.quote-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}

.quote-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf8f2;
  color: #276346;
  font-size: 10px;
  font-weight: 800;
}

.quote-trust-row span::before {
  content: "✓";
  color: var(--brand-green);
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  border-color: #bfd2e6;
  background: rgba(255,255,255,.9);
  box-shadow: inset 0 1px 2px rgba(4,27,61,.025);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #8fb9df;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(7,95,198,.1);
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,13,31,.78);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity .22s ease;
}

.quote-modal-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: calc(100vh - 42px);
  padding: 25px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  background: #eef6ff;
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
  opacity: 0;
  transform: translateY(22px) scale(.975);
  transition: opacity .22s ease, transform .22s ease;
}

.quote-modal.open .quote-modal-backdrop,
.quote-modal.open .quote-modal-dialog {
  opacity: 1;
}

.quote-modal.open .quote-modal-dialog {
  transform: translateY(0) scale(1);
}

.quote-modal-close {
  position: sticky;
  top: 0;
  z-index: 3;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: -9px -9px 0 12px;
  border: 1px solid #c3d8ed;
  border-radius: 13px;
  background: #fff;
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.quote-modal-close:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.quote-modal-intro {
  padding: 4px 52px 18px 5px;
}

.quote-modal-intro h2 {
  margin: 7px 0 4px;
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.quote-modal-intro p {
  max-width: 700px;
  margin: 0;
  color: var(--copy);
  font-size: 13px;
}

.modal-quote-panel {
  clear: both;
  padding: 24px;
  border-radius: 21px;
  box-shadow: 0 18px 45px rgba(4,27,61,.1);
}

.conversion-actions {
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .hero-slide-one { object-position: 64% center; }
  .hero-slide-two { object-position: 60% center; }
  .hero-slide-three { object-position: center; }
  .conversion-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4,20,46,.1);
  }

  .quote-panel-head {
    grid-template-columns: 44px 1fr;
    gap: 11px;
  }

  .quote-form-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .quote-form-mark svg {
    width: 23px;
    height: 23px;
  }

  .quote-trust-row {
    gap: 6px;
  }

  .quote-modal {
    padding: 8px;
  }

  .quote-modal-dialog {
    max-height: calc(100vh - 16px);
    padding: 14px;
    border-radius: 21px;
  }

  .quote-modal-intro {
    padding: 6px 45px 14px 3px;
  }

  .quote-modal-intro h2 {
    font-size: 23px;
  }

  .modal-quote-panel {
    padding: 18px;
  }

  .bulk-guidance-steps span {
    flex: 1 1 calc(50% - 6px);
  }
}

/* Compact two-column footer */
.footer-grid.footer-two-column {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.footer-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-company-column {
  padding-right: clamp(26px, 4vw, 58px);
  border-right: 1px solid rgba(255,255,255,.12);
}

.footer-brand img {
  width: min(170px, 100%);
}

.footer-brand p {
  max-width: 510px;
}

.footer-block {
  min-width: 0;
}

.footer-office,
.footer-services-block {
  padding-top: 27px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-navigation-column .two-column-links,
.footer-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
}

.footer-navigation-column .footer-links li,
.footer-navigation-column .footer-links li + li,
.footer-service-links li,
.footer-service-links li + li {
  margin-top: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.footer-all-link {
  display: inline-flex;
  margin-top: 18px;
  color: #8ec9ff;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.footer-all-link:hover {
  color: #fff;
  text-decoration: underline;
}

.quick-actions {
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.quick-actions.is-over-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 46px;
  }

  .footer-grid.footer-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-column {
    gap: 26px;
  }

  .footer-company-column {
    padding-right: 14px;
  }

  .footer-brand img {
    width: min(145px, 100%);
  }

  .footer-brand p,
  .site-footer address {
    margin: 12px 0;
    font-size: 10.5px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .footer-badges {
    gap: 5px;
  }

  .footer-badges span {
    padding: 5px 6px;
    font-size: 8px;
  }

  .site-footer h2 {
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 1.3;
  }

  .footer-navigation-column .two-column-links,
  .footer-service-links {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-links li {
    font-size: 10px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .footer-flag {
    width: 19px;
    height: 13px;
    margin-right: 3px;
  }

  .footer-office,
  .footer-services-block {
    padding-top: 21px;
  }

  .footer-all-link {
    margin-top: 14px;
    font-size: 9px;
  }

  .footer-bottom {
    margin-top: 34px;
  }

  .footer-bottom p:last-child {
    gap: 9px;
  }

  .footer-powered {
    padding: 5px 8px;
    font-size: 9px;
  }

  .footer-powered strong {
    font-size: 10px;
  }
}

/* Delhi NCR pickup coverage */
.ncr-coverage-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(19,138,75,.08), transparent 25%),
    linear-gradient(180deg, #fff, #f2f8ff);
}

.ncr-coverage-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid #c9ddf1;
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 78px rgba(4,27,61,.12);
}

.ncr-coverage-shell::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -130px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(7,95,198,.045);
  border-radius: 50%;
  pointer-events: none;
}

.ncr-coverage-copy,
.ncr-worldwide-card {
  position: relative;
  z-index: 1;
}

.ncr-coverage-copy h2 {
  max-width: 690px;
  margin: 12px 0 14px;
  color: var(--navy-900);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.ncr-coverage-copy > p:not(.ncr-service-note) {
  max-width: 730px;
  margin: 0;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.75;
}

.ncr-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 27px;
}

.ncr-city-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #d2e2f1;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f6faff);
  box-shadow: 0 7px 20px rgba(4,27,61,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ncr-city-card:last-child {
  grid-column: 1 / -1;
}

.ncr-city-card:hover {
  transform: translateY(-3px);
  border-color: #8ebdec;
  box-shadow: 0 14px 30px rgba(7,95,198,.11);
}

.ncr-pin {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--brand-blue), #0b76dc);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7,95,198,.2);
}

.ncr-pin svg {
  width: 21px;
  height: 21px;
}

.ncr-city-card strong,
.ncr-city-card small {
  display: block;
}

.ncr-city-card strong {
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.25;
}

.ncr-city-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.ncr-service-note {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.ncr-service-note::before {
  content: "i";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
}

.ncr-worldwide-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--navy-950), #075cb9 72%, #0873d8);
  color: #fff;
  box-shadow: 0 25px 60px rgba(4,27,61,.24);
}

.ncr-worldwide-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -105px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.ncr-worldwide-card > * {
  position: relative;
  z-index: 1;
}

.ncr-card-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #c9e6ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ncr-card-badge > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42e696;
  box-shadow: 0 0 0 5px rgba(66,230,150,.13);
}

.ncr-worldwide-card h3 {
  margin: 17px 0 21px;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.ncr-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(5px);
}

.ncr-route small,
.ncr-route strong {
  display: block;
}

.ncr-route small {
  color: #aed8ff;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.ncr-route strong {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.ncr-route-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  font-weight: 900;
  animation: ncrRoutePulse 2.4s ease-in-out infinite;
}

@keyframes ncrRoutePulse {
  0%, 100% { transform: translateX(0); box-shadow: 0 0 0 0 rgba(66,230,150,.2); }
  50% { transform: translateX(3px); box-shadow: 0 0 0 8px rgba(66,230,150,0); }
}

.ncr-worldwide-card ul {
  display: grid;
  gap: 8px;
  margin: 21px 0 24px;
  padding: 0;
  list-style: none;
}

.ncr-worldwide-card li {
  display: flex;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.ncr-worldwide-card li::before {
  content: "✓";
  color: #55e9a2;
  font-weight: 900;
}

.ncr-worldwide-card .button-row {
  margin-top: auto;
}

.ncr-worldwide-card .button {
  flex: 1 1 auto;
  padding-inline: 14px;
  font-size: 12px;
}

@media (max-width: 920px) {
  .ncr-coverage-shell {
    grid-template-columns: 1fr;
  }

  .ncr-worldwide-card {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .ncr-coverage-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .ncr-coverage-copy h2 {
    font-size: 35px;
  }

  .ncr-coverage-copy > p:not(.ncr-service-note) {
    font-size: 13px;
  }

  .ncr-city-grid {
    gap: 8px;
  }

  .ncr-city-card {
    min-height: 68px;
    gap: 9px;
    padding: 10px;
  }

  .ncr-pin {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .ncr-pin svg {
    width: 18px;
    height: 18px;
  }

  .ncr-city-card strong {
    font-size: 12px;
  }

  .ncr-city-card small {
    font-size: 8.5px;
  }

  .ncr-worldwide-card {
    min-height: 0;
    padding: 24px 19px;
    border-radius: 21px;
  }

  .ncr-route {
    padding: 13px;
  }

  .ncr-route strong {
    font-size: 12px;
  }

  .ncr-worldwide-card .button {
    width: 100%;
  }
}

/* Animated Delhi-centred NCR network */
.ncr-network-shell {
  display: block;
}

.ncr-network-head {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.ncr-network-head .eyebrow {
  justify-content: center;
}

.ncr-network-head h2 {
  margin: 11px 0 13px;
  color: var(--navy-900);
  font-size: clamp(35px, 4.5vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.ncr-network-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.7;
}

.ncr-network-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 28px;
  align-items: stretch;
}

.ncr-orbit-scene {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid #c7ddf2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(7,95,198,.12), transparent 29%),
    linear-gradient(155deg, #f9fcff, #edf6ff);
}

.ncr-orbit-scene::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7,95,198,.08);
  border-radius: 20px;
  pointer-events: none;
}

.ncr-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(7,95,198,.27);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ncr-orbit-ring-one {
  width: 280px;
  height: 280px;
  animation: ncrOrbitSpin 18s linear infinite;
}

.ncr-orbit-ring-two {
  width: 390px;
  height: 390px;
  border-color: rgba(19,138,75,.18);
  animation: ncrOrbitSpinReverse 28s linear infinite;
}

@keyframes ncrOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ncrOrbitSpinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.ncr-network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.ncr-network-lines path {
  fill: none;
  stroke: rgba(7,95,198,.35);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: ncrRouteFlow 2.8s linear infinite;
}

.ncr-network-lines path:nth-child(even) {
  stroke: rgba(19,138,75,.38);
  animation-direction: reverse;
}

@keyframes ncrRouteFlow {
  to { stroke-dashoffset: -64; }
}

.ncr-hub-node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 7px solid rgba(255,255,255,.94);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), var(--brand-blue));
  color: #fff;
  box-shadow: 0 22px 50px rgba(4,27,61,.27);
  transform: translate(-50%, -50%);
}

.ncr-hub-pulse {
  position: absolute;
  inset: -17px;
  border: 2px solid rgba(7,95,198,.28);
  border-radius: 50%;
  animation: ncrHubPulse 2.4s ease-out infinite;
}

@keyframes ncrHubPulse {
  0% { opacity: .9; transform: scale(.82); }
  75%, 100% { opacity: 0; transform: scale(1.25); }
}

.ncr-hub-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 11px;
  background: rgba(255,255,255,.12);
  color: #6cf0ae;
}

.ncr-hub-icon svg {
  width: 21px;
  height: 21px;
}

.ncr-hub-node strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
}

.ncr-hub-node small {
  margin-top: 3px;
  color: #c0e0ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ncr-city-node {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #bad5ee;
  border-radius: 15px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 13px 30px rgba(4,27,61,.11);
  animation: ncrNodeFloat 4.5s ease-in-out infinite;
}

.ncr-city-node:nth-of-type(even) {
  animation-delay: -2.2s;
}

@keyframes ncrNodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ncr-city-node-gurgaon { top: 14%; left: 3.5%; }
.ncr-city-node-noida { top: 14%; right: 3.5%; }
.ncr-city-node-faridabad { bottom: 14%; left: 3.5%; }
.ncr-city-node-ghaziabad { right: 3.5%; bottom: 14%; }

.ncr-node-dot {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 7px solid #d8edff;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 5px rgba(7,95,198,.08);
}

.ncr-city-node:nth-of-type(odd) .ncr-node-dot {
  border-color: #dff6ea;
  background: var(--brand-green);
  box-shadow: 0 0 0 5px rgba(19,138,75,.08);
}

.ncr-city-node strong,
.ncr-city-node small {
  display: block;
}

.ncr-city-node strong {
  color: var(--navy-900);
  font-size: 13px;
  line-height: 1.2;
}

.ncr-city-node small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.ncr-map-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 3;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ncr-route-panel {
  min-height: 440px;
}

.ncr-route-panel .ncr-service-note {
  margin-top: 17px;
  color: rgba(255,255,255,.56);
}

.ncr-route-panel .ncr-service-note::before {
  background: rgba(255,255,255,.1);
  color: #77eeb2;
}

/* Balanced FAQ layout */
.faq-section {
  background: linear-gradient(180deg, #fff, #f6f9fd);
}

.faq-section-grid {
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  margin: 12px 0 14px;
  color: var(--navy-900);
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.faq-intro > p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.75;
}

.faq-support-card {
  margin-top: 27px;
  padding: 21px;
  border: 1px solid #c7ddf2;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #eef6ff);
  box-shadow: var(--shadow-xs);
}

.faq-support-card > span,
.faq-support-card > strong {
  display: block;
}

.faq-support-card > span {
  color: var(--muted);
  font-size: 10px;
}

.faq-support-card > strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 17px;
}

.faq-support-card .button-row {
  margin-top: 15px;
}

.faq-support-card .button {
  min-height: 41px;
  flex: 1 1 auto;
  padding-inline: 12px;
  font-size: 11px;
}

.faq-section .faq-list {
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-section .faq-list details {
  overflow: hidden;
  border-color: #cbddec;
  border-radius: 17px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-section .faq-list details:hover {
  transform: translateY(-2px);
  border-color: #8db9e4;
  box-shadow: 0 14px 32px rgba(4,27,61,.09);
}

.faq-section .faq-list details[open] {
  border-color: #8cb8e3;
  box-shadow: 0 16px 36px rgba(7,95,198,.1);
}

.faq-section .faq-list details[open] summary {
  color: var(--brand-blue);
  background: #f4f9ff;
}

/* Desktop-only footer refinement; phone footer stays unchanged */
@media (min-width: 921px) {
  .site-footer {
    padding-top: 58px;
    background:
      radial-gradient(circle at 86% 12%, rgba(7,95,198,.16), transparent 27%),
      var(--navy-950);
  }

  .footer-grid.footer-two-column {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(44px, 6vw, 78px);
  }

  .footer-company-column {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    background: rgba(255,255,255,.035);
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-brand p,
  .site-footer address {
    font-size: 13px;
  }

  .footer-navigation-column {
    gap: 20px;
  }

  .footer-navigation-column > .footer-block {
    padding: 25px 27px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 21px;
    background: rgba(255,255,255,.03);
  }

  .footer-navigation-column > .footer-services-block {
    padding-top: 25px;
  }

  .site-footer h2 {
    font-size: 16px;
  }

  .footer-links li {
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 38px;
  }
}

@media (max-width: 920px) {
  .ncr-network-head {
    margin-bottom: 26px;
  }

  .ncr-network-layout,
  .faq-section-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-proof span {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    justify-content: flex-start;
    padding: 9px 10px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 1.25;
    white-space: normal;
  }

  .ncr-network-head {
    text-align: left;
  }

  .ncr-network-head .eyebrow {
    justify-content: flex-start;
  }

  .ncr-network-head h2 {
    font-size: 34px;
  }

  .ncr-network-head p {
    font-size: 13px;
  }

  .ncr-orbit-scene {
    min-height: 390px;
    border-radius: 20px;
  }

  .ncr-orbit-ring-one {
    width: 210px;
    height: 210px;
  }

  .ncr-orbit-ring-two {
    width: 290px;
    height: 290px;
  }

  .ncr-hub-node {
    width: 108px;
    height: 108px;
    border-width: 5px;
  }

  .ncr-hub-node strong {
    font-size: 17px;
  }

  .ncr-city-node {
    min-width: 112px;
    gap: 7px;
    padding: 9px;
    border-radius: 12px;
  }

  .ncr-city-node-gurgaon { top: 11%; left: 2%; }
  .ncr-city-node-noida { top: 11%; right: 2%; }
  .ncr-city-node-faridabad { bottom: 11%; left: 2%; }
  .ncr-city-node-ghaziabad { right: 2%; bottom: 11%; }

  .ncr-node-dot {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
    border-width: 5px;
  }

  .ncr-city-node strong {
    font-size: 10.5px;
  }

  .ncr-city-node small {
    font-size: 7.5px;
  }

  .ncr-route-panel {
    min-height: 0;
  }

  .faq-section-grid {
    gap: 27px;
  }

  .faq-intro h2 {
    font-size: 34px;
  }

  .faq-support-card {
    padding: 18px;
  }

  .faq-section .faq-list summary {
    padding: 17px 48px 17px 17px;
    font-size: 13px;
  }

  .quick-actions:not(.is-mobile-ready) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }
}

/* Professional Delhi NCR operations panel */
.ncr-premium-shell {
  position: relative;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(3,18,42,.98), rgba(4,46,96,.95)),
    url("../../assets/images/slide/hero-cargo.webp") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 32px 90px rgba(4,20,46,.23);
}

.ncr-premium-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(7,95,198,.1));
  pointer-events: none;
}

.ncr-premium-shell > * {
  position: relative;
  z-index: 1;
}

.ncr-premium-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.ncr-premium-header h2 {
  max-width: 760px;
  margin: 11px 0 12px;
  color: #fff;
  font-size: clamp(35px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.ncr-premium-header p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 14px;
  line-height: 1.72;
}

.ncr-header-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}

.ncr-header-metrics span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 15px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.ncr-header-metrics span:last-child {
  border-right: 0;
}

.ncr-header-metrics strong,
.ncr-header-metrics small {
  display: block;
}

.ncr-header-metrics strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.ncr-header-metrics small {
  margin-top: 6px;
  color: #acd7ff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ncr-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(330px, .68fr);
  gap: 22px;
  align-items: stretch;
}

.ncr-dispatch-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background-color: rgba(2,15,35,.9);
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  box-shadow: inset 0 0 70px rgba(0,0,0,.24);
}

.ncr-map-toolbar {
  position: relative;
  z-index: 6;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
}

.ncr-map-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ncr-map-toolbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ce69a;
  box-shadow: 0 0 0 5px rgba(76,230,154,.11);
}

.ncr-map-toolbar small {
  color: rgba(255,255,255,.46);
  font-size: 8px;
}

.ncr-dispatch-lines {
  position: absolute;
  inset: 50px 0 0;
  width: 100%;
  height: calc(100% - 50px);
  pointer-events: none;
}

.ncr-dispatch-lines path {
  fill: none;
  stroke: rgba(78,162,241,.58);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  animation: dispatchLineFlow 5s linear infinite;
}

.ncr-dispatch-lines path:nth-child(even) {
  stroke: rgba(71,219,145,.52);
}

@keyframes dispatchLineFlow {
  to { stroke-dashoffset: -72; }
}

.dispatch-hub {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 5;
  width: 184px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-left: 4px solid #4ce69a;
  border-radius: 13px;
  background: linear-gradient(135deg, #0a315f, #075fc6);
  box-shadow: 0 20px 44px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}

.dispatch-hub::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 130px;
  border: 1px solid rgba(67,202,255,.16);
  border-radius: 19px;
  transform: translate(-50%, -50%);
  animation: dispatchSignal 3.8s ease-out infinite;
  pointer-events: none;
}

@keyframes dispatchSignal {
  0% { opacity: .7; transform: translate(-50%, -50%) scale(.78); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.13); }
}

.dispatch-status {
  display: block;
  margin-bottom: 7px;
  color: #7bf2b7;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dispatch-hub strong,
.dispatch-hub small {
  display: block;
}

.dispatch-hub strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: .06em;
}

.dispatch-hub small {
  margin-top: 7px;
  color: #b8ddff;
  font-size: 8px;
  font-weight: 750;
}

.dispatch-node {
  position: absolute;
  z-index: 5;
  width: 174px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0,0,0,.17);
}

.dispatch-node-gurgaon { top: 25%; left: 4%; }
.dispatch-node-noida { top: 25%; right: 4%; }
.dispatch-node-faridabad { bottom: 17%; left: 4%; }
.dispatch-node-ghaziabad { right: 4%; bottom: 17%; }

.dispatch-node > i {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 3px solid rgba(255,255,255,.7);
  border-radius: 3px;
  background: var(--brand-green);
  box-shadow: 0 0 0 5px rgba(19,138,75,.12);
}

.dispatch-node strong,
.dispatch-node small {
  display: block;
}

.dispatch-node strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.dispatch-node small {
  margin-top: 3px;
  color: rgba(255,255,255,.53);
  font-size: 8px;
}

.ncr-map-legend {
  position: absolute;
  right: 15px;
  bottom: 12px;
  z-index: 6;
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,.45);
  font-size: 8px;
}

.ncr-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ncr-map-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.legend-blue { background: #1782e8; }
.legend-green { background: var(--brand-green); }

.ncr-service-summary {
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid #d1e0ed;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.ncr-summary-label {
  color: var(--brand-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ncr-service-summary h3 {
  margin: 10px 0 11px;
  color: var(--navy-900);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.ncr-service-summary > p:not(.ncr-summary-note) {
  margin: 0;
  color: var(--copy);
  font-size: 12px;
  line-height: 1.7;
}

.ncr-summary-list {
  display: grid;
  gap: 0;
  margin: 21px 0 24px;
  border-top: 1px solid var(--line);
}

.ncr-summary-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ncr-summary-list > div > span {
  color: var(--brand-green);
  font-size: 10px;
  font-weight: 900;
}

.ncr-summary-list p {
  margin: 0;
}

.ncr-summary-list strong,
.ncr-summary-list small {
  display: block;
}

.ncr-summary-list strong {
  color: var(--navy-900);
  font-size: 12px;
}

.ncr-summary-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.ncr-service-summary .button-row {
  margin-top: auto;
}

.ncr-service-summary .button {
  flex: 1 1 auto;
  min-height: 44px;
  padding-inline: 12px;
  font-size: 11px;
}

.ncr-summary-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.55;
}

/* Expanded written-quote benefits */
.quote-benefit-list {
  gap: 9px;
  margin-top: 25px;
}

.quote-benefit-list li {
  align-items: flex-start;
  padding: 10px 11px;
  border: 1px solid #d4e2ef;
  border-radius: 13px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 6px 18px rgba(4,27,61,.035);
}

.quote-benefit-list li::before {
  margin-top: 1px;
}

.quote-benefit-list strong,
.quote-benefit-list span {
  display: block;
}

.quote-benefit-list strong {
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.3;
}

.quote-benefit-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.45;
}

/* Fixed 5000 volumetric divisor */
.calculator-card .dimension-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fixed-divisor {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 11px;
  border: 1px solid #cbd8e8;
  border-radius: 10px;
  background: #eef5fc;
}

.fixed-divisor strong {
  color: var(--navy-900);
  font-size: 15px;
}

.fixed-divisor small {
  color: var(--muted);
  font-size: 7.5px;
  line-height: 1.25;
  text-align: right;
}

@media (max-width: 920px) {
  .ncr-premium-header,
  .ncr-premium-layout {
    grid-template-columns: 1fr;
  }

  .ncr-header-metrics {
    width: 100%;
  }

  .calculator-card .dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .ncr-premium-shell {
    padding: 21px;
    border-radius: 22px;
  }

  .ncr-premium-header {
    gap: 20px;
    margin-bottom: 22px;
  }

  .ncr-premium-header h2 {
    font-size: 33px;
  }

  .ncr-premium-header p {
    font-size: 12px;
  }

  .ncr-header-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ncr-header-metrics span {
    min-height: 66px;
    padding: 9px;
  }

  .ncr-header-metrics strong {
    font-size: 19px;
  }

  .ncr-header-metrics small {
    font-size: 6.5px;
  }

  .ncr-dispatch-map {
    min-height: 410px;
    border-radius: 16px;
    background-size: 30px 30px;
  }

  .ncr-map-toolbar {
    padding: 0 12px;
  }

  .ncr-map-toolbar small {
    display: none;
  }

  .dispatch-hub {
    width: 138px;
    padding: 14px;
  }

  .dispatch-hub::after {
    width: 170px;
    height: 105px;
  }

  .dispatch-hub strong {
    font-size: 22px;
  }

  .dispatch-node {
    width: 116px;
    gap: 6px;
    padding: 8px;
  }

  .dispatch-node-gurgaon { top: 24%; left: 2%; }
  .dispatch-node-noida { top: 24%; right: 2%; }
  .dispatch-node-faridabad { bottom: 16%; left: 2%; }
  .dispatch-node-ghaziabad { right: 2%; bottom: 16%; }

  .dispatch-node > i {
    width: 9px;
    height: 9px;
    flex-basis: 9px;
    border-width: 2px;
  }

  .dispatch-node strong {
    font-size: 9.5px;
  }

  .dispatch-node small {
    font-size: 6.5px;
  }

  .ncr-map-legend {
    display: none;
  }

  .ncr-service-summary {
    padding: 22px 18px;
    border-radius: 17px;
  }

  .quote-benefit-list li {
    padding: 9px;
  }

  .calculator-card .dimension-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fixed-divisor {
    min-height: 46px;
  }
}

/* Green Delhi NCR pickup grid */
.ncr-coverage-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(19,138,75,.1), transparent 25%),
    radial-gradient(circle at 90% 88%, rgba(23,165,92,.08), transparent 25%),
    #f4fbf6;
}

.ncr-green-section {
  position: relative;
  padding: clamp(28px, 4.6vw, 56px);
  overflow: hidden;
  border: 1px solid #c7e6d2;
  border-radius: 30px;
  background:
    linear-gradient(rgba(19,138,75,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,138,75,.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,249,243,.96));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 80px rgba(13,90,50,.11);
}

.ncr-green-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 80px solid rgba(19,138,75,.045);
  border-radius: 50%;
  pointer-events: none;
}

.ncr-green-section > * {
  position: relative;
  z-index: 1;
}

.ncr-green-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.ncr-green-heading {
  max-width: 790px;
}

.ncr-green-heading .eyebrow {
  color: var(--brand-green);
}

.ncr-green-heading .eyebrow::before {
  background: var(--brand-green);
}

.ncr-green-heading h2 {
  margin: 11px 0 12px;
  color: var(--navy-900);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -.048em;
}

.ncr-green-heading p {
  max-width: 730px;
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.75;
}

.ncr-green-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ncr-green-actions .button {
  min-width: 150px;
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
}

.ncr-green-actions .button-primary {
  background: linear-gradient(135deg, #0f7a42, #17a55c);
  box-shadow: 0 13px 28px rgba(15,122,66,.22);
}

.ncr-green-actions .button-primary:hover {
  background: #0b6938;
  box-shadow: 0 16px 32px rgba(15,122,66,.28);
}

.ncr-green-actions .button-outline {
  border-color: #9ed2b1;
  background: rgba(255,255,255,.86);
  color: #0f7a42;
}

.ncr-green-actions .button-outline:hover {
  border-color: var(--brand-green);
  background: #eaf7ef;
}

.ncr-green-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.ncr-green-card {
  --ncr-card-accent: #138a4b;
  position: relative;
  grid-column: span 3;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #c8e5d3;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(23,165,92,.1), transparent 42%),
    rgba(255,255,255,.95);
  box-shadow: 0 12px 32px rgba(12,72,42,.075);
}

.ncr-green-card[data-reveal] {
  transition:
    opacity .58s ease var(--ncr-delay, 0s),
    transform .58s cubic-bezier(.2,.7,.25,1) var(--ncr-delay, 0s),
    border-color .24s ease,
    box-shadow .24s ease;
}

.ncr-green-card:nth-child(1) { --ncr-delay: .02s; }
.ncr-green-card:nth-child(2) { --ncr-delay: .09s; }
.ncr-green-card:nth-child(3) { --ncr-delay: .16s; }
.ncr-green-card:nth-child(4) { --ncr-delay: .23s; }
.ncr-green-card:nth-child(5) { --ncr-delay: .30s; }
.ncr-green-card:nth-child(6) { --ncr-delay: .37s; }

.ncr-green-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 36%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38c977, transparent);
  animation: ncrGreenSweep 5.5s ease-in-out infinite;
  animation-delay: var(--ncr-delay, 0s);
}

.ncr-green-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -68px;
  width: 150px;
  height: 150px;
  border: 34px solid rgba(19,138,75,.055);
  border-radius: 50%;
  pointer-events: none;
}

.ncr-green-card:hover {
  transform: translateY(-4px);
  border-color: #78c996;
  box-shadow: 0 20px 44px rgba(12,90,50,.14);
}

.ncr-green-card-featured {
  grid-column: span 8;
  min-height: 285px;
  padding: clamp(24px, 3.2vw, 36px);
  border-color: #14884a;
  background:
    linear-gradient(115deg, rgba(5,77,39,.97), rgba(19,138,75,.95)),
    #0f7a42;
  box-shadow: 0 20px 48px rgba(11,102,55,.22);
}

.ncr-green-card-worldwide {
  grid-column: span 4;
  min-height: 285px;
  padding: clamp(24px, 3.2vw, 32px);
  border-color: #3ba76a;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.12), transparent 43%),
    linear-gradient(150deg, #12874a, #095f35);
  box-shadow: 0 20px 48px rgba(11,102,55,.2);
}

.ncr-green-card-featured,
.ncr-green-card-worldwide {
  color: #fff;
}

.ncr-green-card-featured::after,
.ncr-green-card-worldwide::after {
  border-color: rgba(255,255,255,.075);
}

.ncr-green-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 24px;
}

.ncr-green-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #187b45;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ncr-green-signal i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #27bf6c;
  box-shadow: 0 0 0 5px rgba(39,191,108,.14);
  animation: ncrGreenPulse 2.4s ease-out infinite;
}

.ncr-green-index {
  color: #44815e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ncr-green-card-featured .ncr-green-signal,
.ncr-green-card-featured .ncr-green-index,
.ncr-green-card-worldwide .ncr-green-signal,
.ncr-green-card-worldwide .ncr-green-index {
  color: rgba(255,255,255,.82);
}

.ncr-green-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 24px 0 15px;
  border: 1px solid #b9dfc7;
  border-radius: 13px;
  background: #eaf7ef;
  color: #0f7a42;
}

.ncr-green-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ncr-green-card-featured .ncr-green-icon,
.ncr-green-card-worldwide .ncr-green-icon {
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.ncr-green-card h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.ncr-green-card-featured h3 {
  font-size: clamp(34px, 4vw, 49px);
}

.ncr-green-card-worldwide h3 {
  font-size: clamp(27px, 3vw, 37px);
}

.ncr-green-card-featured h3,
.ncr-green-card-worldwide h3 {
  color: #fff;
}

.ncr-green-card p {
  max-width: 690px;
  margin: 0;
  color: var(--copy);
  font-size: 11px;
  line-height: 1.65;
}

.ncr-green-card-featured p,
.ncr-green-card-worldwide p {
  color: rgba(255,255,255,.83);
  font-size: 12px;
}

.ncr-green-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.ncr-green-meta span {
  padding: 6px 9px;
  border: 1px solid #c7e4d2;
  border-radius: 999px;
  background: #f1faf4;
  color: #286844;
  font-size: 8px;
  font-weight: 800;
}

.ncr-green-card-featured .ncr-green-meta span,
.ncr-green-card-worldwide .ncr-green-meta span {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
}

.ncr-green-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 17px 3px 0;
  color: #52705f;
  font-size: 9px;
  line-height: 1.6;
}

.ncr-green-note > span {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff3e7;
  color: #0f7a42;
  font-size: 9px;
  font-weight: 900;
}

@keyframes ncrGreenSweep {
  0%, 55% { left: -40%; opacity: 0; }
  62% { opacity: 1; }
  84%, 100% { left: 108%; opacity: 0; }
}

@keyframes ncrGreenPulse {
  0% { box-shadow: 0 0 0 0 rgba(39,191,108,.42); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(39,191,108,0); }
}

@media (max-width: 920px) {
  .ncr-green-header {
    grid-template-columns: 1fr;
  }

  .ncr-green-actions {
    justify-self: start;
  }

  .ncr-green-card,
  .ncr-green-card-featured,
  .ncr-green-card-worldwide {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  .ncr-green-section {
    padding: 20px;
    border-radius: 22px;
    background-size: 32px 32px, 32px 32px, auto;
  }

  .ncr-green-header {
    gap: 20px;
    margin-bottom: 21px;
  }

  .ncr-green-heading h2 {
    font-size: 33px;
  }

  .ncr-green-heading p {
    font-size: 12px;
  }

  .ncr-green-actions {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .ncr-green-actions .button {
    width: 100%;
  }

  .ncr-green-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .ncr-green-card,
  .ncr-green-card-featured,
  .ncr-green-card-worldwide {
    grid-column: 1;
    min-height: 215px;
    padding: 20px;
    border-radius: 17px;
  }

  .ncr-green-card-featured,
  .ncr-green-card-worldwide {
    min-height: 245px;
  }

  .ncr-green-card-featured h3 {
    font-size: 35px;
  }

  .ncr-green-card-worldwide h3 {
    font-size: 29px;
  }

  .ncr-green-icon {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ncr-green-card::before,
  .ncr-green-signal i {
    animation: none;
  }
}
