.partner-form-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 6vw, 84px);
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(70px, 9vw, 130px);
}

.partner-form-section > aside {
  position: sticky;
  top: 110px;
}

.partner-form-section aside h2 {
  margin: 20px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.partner-form-section aside > p {
  color: var(--muted);
  line-height: 1.7;
}

.partner-checklist {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  font-weight: 700;
}

.partner-form {
  padding: clamp(24px, 4vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(27, 22, 64, 0.08);
}

.partner-form-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.partner-form-heading:first-child {
  padding-top: 0;
  border-top: 0;
}

.partner-form-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  color: #fff;
  background: #8448ff;
  border-radius: 50%;
  font-weight: 900;
}

.partner-form-heading h3,
.partner-form-heading p { margin: 0; }
.partner-form-heading p { margin-top: 3px; color: var(--muted); font-size: 14px; }

.partner-fields {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.partner-fields.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.partner-fields.address { grid-template-columns: 1.5fr .65fr 1fr; }
.partner-fields .wide { grid-column: 1 / -1; }

.partner-form label {
  display: grid;
  gap: 9px;
  color: #343a55;
  font-size: 14px;
  font-weight: 800;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce0ea;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  outline: 3px solid rgba(132, 72, 255, .14);
  border-color: #8448ff;
}

.niwo-panel {
  margin: -8px 0 34px;
  padding: 22px;
  background: #f5f0ff;
  border: 1px solid #d9c7ff;
  border-radius: 8px;
}

.niwo-panel > div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.niwo-panel svg { color: #8448ff; }
.niwo-panel span { display: grid; gap: 3px; color: var(--muted); }
.niwo-panel b { color: var(--ink); }

.partner-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  margin: 12px 0 28px;
  font-weight: 600 !important;
  line-height: 1.55;
}

.partner-consent input { width: 20px; height: 20px; margin: 2px 0 0; }
.partner-consent a { color: #6d34e8; }
.application-honeypot { position: absolute !important; left: -10000px; }

.partner-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.partner-submit p { margin: 0; color: var(--muted); font-size: 14px; }
.partner-submit p.error { color: #b42318; font-weight: 700; }
.partner-submit button { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.partner-submit button:disabled { opacity: .55; cursor: wait; }

.partner-success {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 520px;
  align-content: center;
  text-align: center;
}

.partner-success > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: #15a879;
  border-radius: 50%;
}

.partner-success h2,
.partner-success p { margin: 0; }
.partner-success p { max-width: 480px; color: var(--muted); }

.application-account-created {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 10px 14px;
  color: #087558;
  background: #e9f8f3;
  border: 1px solid #bdebdc;
  border-radius: 6px;
}

.application-account-created small {
  color: #397565;
}

.admin-page .application-create-account {
  min-width: 260px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.2);
}

@media (max-width: 900px) {
  .partner-intro,
  .partner-form-section {
    grid-template-columns: 1fr;
  }

  .partner-intro figure {
    min-height: 380px;
  }

  .partner-intro figure > img {
    min-height: 380px;
  }

  .partner-form-section > aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .partner-intro {
    gap: 32px;
    padding-top: 38px;
  }

  .partner-intro h1 {
    font-size: 48px;
  }

  .partner-intro figure,
  .partner-intro figure > img {
    min-height: 310px;
  }

  .partner-intro figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 17px;
  }

  .partner-form-section {
    width: calc(100% - 24px);
    gap: 30px;
    padding-top: 50px;
  }

  .partner-form {
    padding: 22px 16px;
  }

  .partner-fields.two,
  .partner-fields.address {
    grid-template-columns: 1fr;
  }

  .partner-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-submit button {
    justify-content: center;
    width: 100%;
  }
}

/* Final override: compact public dropdown on tablets and phones. */
@media (max-width: 1120px) {
  .menu-toggle {
    position: relative;
    padding: 0;
    font-size: 0;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    transition: top 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle::before {
    top: calc(50% - 8px);
    box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
  }

  .menu-toggle::after {
    display: none;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    align-content: start;
    gap: 6px;
    width: auto;
    height: auto;
    max-height: calc(100vh - 98px);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid #e4e6f1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(25, 21, 58, 0.18);
  }

  .site-header.menu-open .main-nav a {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: #f7f8fc;
    color: #262a47;
    font-size: 14px;
    font-weight: 800;
  }

  .site-header.menu-open .main-nav a + a {
    border-top: 0;
  }

  .site-header.menu-open .main-nav a::after {
    content: "›";
    margin-left: auto;
    color: #9a9eb5;
    font-size: 20px;
    font-weight: 500;
  }

  .site-header.menu-open .main-nav a:hover,
  .site-header.menu-open .main-nav a.active {
    color: #6f35e8;
    background: #f0eaff;
  }

  .site-header.menu-open .menu-toggle {
    color: #fff;
    background: #191631;
    border-color: #191631;
  }

  .site-header.menu-open .menu-toggle::before {
    top: calc(50% - 1.5px);
    box-shadow: none;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle::after {
    top: calc(50% - 1.5px);
    display: block;
    transform: translateX(-50%) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .site-header.menu-open .main-nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-header.menu-open .main-nav a {
    min-height: 44px;
  }
}

/* Compact public mobile navigation. */
@media (max-width: 1120px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 76px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(221, 224, 239, 0.92);
  }

  .site-header.menu-open .main-nav {
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    align-content: start;
    gap: 6px;
    width: auto;
    max-height: calc(100vh - 98px);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid #e4e6f1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(25, 21, 58, 0.18);
  }

  .site-header.menu-open .main-nav a {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: #f7f8fc;
    color: #262a47;
    font-size: 14px;
    font-weight: 800;
  }

  .site-header.menu-open .main-nav a + a {
    border-top: 0;
  }

  .site-header.menu-open .main-nav a::after {
    content: "›";
    margin-left: auto;
    color: #9a9eb5;
    font-size: 20px;
    font-weight: 500;
  }

  .site-header.menu-open .main-nav a:hover,
  .site-header.menu-open .main-nav a.active {
    color: #6f35e8;
    background: #f0eaff;
  }

  .site-header.menu-open .main-nav a.active::after {
    color: #7c3aed;
  }

  .site-header.menu-open .menu-toggle {
    color: #fff;
    background: #191631;
    border-color: #191631;
  }
}

@media (max-width: 520px) {
  .site-header.menu-open .main-nav {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-header.menu-open .main-nav a {
    min-height: 44px;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 72px auto 78px;
  padding: 34px 46px;
  color: white;
  background: linear-gradient(135deg, #150f3a, #43228d);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonials {
  margin-top: 70px;
  text-align: center;
}

.testimonials h2 {
  margin-top: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.review-grid article {
  padding: 28px;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(32, 27, 73, 0.07);
}

.review-stars {
  color: #fbbc04;
  letter-spacing: 2px;
}

.review-grid p {
  min-height: 58px;
  color: #515772;
  font-size: 14px;
  line-height: 1.7;
}

.review-grid b,
.review-grid small {
  display: block;
}

.review-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 330px 330px minmax(0, 1fr);
  grid-template-rows: 136px 136px;
  gap: 14px;
  margin-top: 34px;
  overflow: visible;
}

.feature-mosaic article {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(40, 29, 91, 0.06);
}

.phone-card {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  padding: 28px;
  color: white;
  background:
    linear-gradient(90deg, rgba(101, 54, 232, 0.96) 0%, rgba(105, 91, 221, 0.78) 46%, rgba(105, 91, 221, 0.08) 72%),
    url("assets/tracking-phone-1200.jpg") 62% center / cover no-repeat;
  transform: none;
}

.phone-card > div {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 170px;
}

.phone-card h3,
.mini-card b,
.parcel-card b,
.operator-card b {
  display: block;
  margin-bottom: 8px;
  color: #14132f;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: 0;
}

.phone-card p,
.mini-card p,
.parcel-card p,
.operator-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.phone-card h3 {
  color: white;
}

.phone-card > img {
  display: none;
}

.mini-card,
.operator-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 18px;
  padding: 24px 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f2ff 100%);
}

.mini-card {
  grid-column: 2;
  grid-row: 1;
}

.mini-card .icon-badge {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(91, 60, 192, 0.1);
}

.mini-card p,
.parcel-card p,
.operator-card p {
  color: var(--muted);
}

.parcel-card {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(220px, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 18px 26px;
  min-height: 286px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #effbff 43%, #f3edff 100%);
}

.parcel-copy {
  max-width: 360px;
}

.parcel-card b {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.parcel-card p {
  font-size: 15px;
  line-height: 1.5;
}

.parcel-photo-wrap {
  position: relative;
  justify-self: end;
  align-self: center;
  width: min(100%, 360px);
  height: 210px;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.parcel-photo-wrap::before {
  display: none;
}

.parcel-photo-wrap > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.parcel-features {
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 0;
}

.parcel-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px 7px 7px;
  color: #786a9a;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 214, 242, 0.9);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 10px 24px rgba(91, 60, 192, 0.07);
}

.parcel-features .icon-badge {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 999px;
  color: var(--purple);
  background: #f2edff;
  box-shadow: none;
}

.parcel-features .icon-badge::before {
  transform: scale(0.74);
}

.parcel-features .icon-badge::after {
  transform: scale(0.74);
}

.operator-card {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 122px 18px 26px;
}

.operator-card::after {
  display: none;
}

.operator-card .icon-badge,
.operator-card div {
  position: relative;
  z-index: 1;
}

.operator-card .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #44cddd;
  background: white;
  box-shadow: 0 10px 24px rgba(68, 205, 221, 0.12);
}

.operator-card img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 220px;
  height: 100%;
  object-fit: cover;
  object-position: 22% 30%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 16%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 16%, #000 42%);
}

.stats div {
  padding-left: 54px;
  background: radial-gradient(circle at 16px 16px, transparent 9px, var(--cyan) 10px, transparent 11px);
}

.stats span {
  display: block;
  font-size: 30px;
  font-weight: 900;
}

.stats small {
  color: rgba(255, 255, 255, 0.76);
}

.process {
  text-align: center;
}

.process h2 {
  margin-top: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.process-grid article {
  position: relative;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  color: var(--purple);
  font-size: 34px;
  background: #eee8ff;
  border-radius: 50%;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.process-grid p {
  margin: 0 auto;
  max-width: 190px;
  font-size: 13px;
  line-height: 1.7;
}

.why {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: center;
  margin-top: 84px;
}

.why h2 {
  margin: 20px 0 28px;
}

.why ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why li {
  display: grid;
  gap: 4px;
  padding-left: 30px;
  background: radial-gradient(circle at 8px 10px, var(--cyan) 0 7px, transparent 8px);
}

.why li span {
  color: var(--muted);
  font-size: 13px;
}

.why-media {
  position: relative;
  min-height: 390px;
}

.why-media > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.feature-stack {
  position: absolute;
  right: -18px;
  top: 32px;
  display: grid;
  gap: 16px;
  width: 260px;
  padding: 24px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-stack article {
  display: grid;
  gap: 6px;
}

.feature-stack span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.cta {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 74px auto 0;
  padding: 34px 42px;
  color: white;
  background: linear-gradient(135deg, #823dff, #9b61ff);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: white;
}

.cta p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.light-button {
  color: var(--purple-dark);
  background: white;
}

.dark-button {
  color: white;
  background: #492293;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 84px) max(24px, 7vw) clamp(58px, 6vw, 76px);
  background:
    radial-gradient(circle at 88% 18%, rgba(102, 216, 232, 0.20), transparent 34%),
    linear-gradient(135deg, #09071c 0%, #191039 58%, #2a1857 100%);
  color: white;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto 8vw -72px auto;
  width: min(360px, 46vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.blog-hero .pill {
  position: relative;
  z-index: 1;
  border-color: rgba(139, 84, 255, 0.55);
  background: rgba(139, 84, 255, 0.12);
  color: #a98cff;
}

.blog-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  padding-block: clamp(34px, 5vw, 72px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: center;
  width: 100%;
  max-width: 680px;
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(221, 224, 239, 0.96);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 70px rgba(36, 25, 89, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 84, 255, 0.30);
  box-shadow: 0 30px 90px rgba(36, 25, 89, 0.12);
}

.blog-card span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
}

.blog-card h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}

.blog-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.blog-card a {
  margin-top: auto;
  color: var(--purple);
  font-weight: 900;
  align-self: flex-start;
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 72px;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--purple);
  font-weight: 900;
}

.blog-article h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
}

.blog-excerpt {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.blog-article time {
  display: block;
  margin: 22px 0 34px;
  color: #8b91a8;
  font-weight: 800;
}

.blog-content {
  color: #272b46;
  font-size: 18px;
  line-height: 1.85;
}

.blog-content h2 {
  margin: 42px 0 12px;
  font-size: 30px;
  line-height: 1.2;
}

.blog-content h3 {
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.blog-content h4 {
  margin: 24px 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.blog-content p {
  margin: 0 0 22px;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.blog-content li {
  margin: 6px 0;
}

.blog-content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  background: #f7f4ff;
  color: #343852;
  font-weight: 700;
}

.blog-content a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--border);
}

.blog-content th,
.blog-content td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.blog-content th {
  background: #f4f1ff;
  color: var(--ink);
}

.blog-content pre {
  overflow-x: auto;
  margin: 24px 0;
  padding: 16px;
  border-radius: 8px;
  background: #100d28;
  color: white;
}

.blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 54px;
  padding: 26px;
  border-radius: 8px;
  background: #100d28;
  color: white;
}

.blog-cta h2,
.blog-cta p {
  width: 100%;
  margin: 0;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  margin-top: 42px;
  padding: 54px 64px 24px;
  color: rgba(255, 255, 255, 0.82);
  background: radial-gradient(circle at 20% 0, #25165b, #08071a 58%);
}

.legal-page {
  background:
    radial-gradient(circle at 5% 8%, rgba(98, 217, 232, 0.12), transparent 30%),
    radial-gradient(circle at 90% 0, rgba(140, 84, 255, 0.12), transparent 30%),
    #f7f9ff;
}

.legal-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 24px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 54%, #f6efff 100%);
  box-shadow: 0 22px 60px rgba(18, 21, 45, 0.08);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 22px 0 18px;
  color: #0e1029;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: #66708d;
  font-size: 21px;
  line-height: 1.65;
  font-weight: 700;
}

.legal-hero small {
  display: block;
  margin-top: 24px;
  color: #7c4dff;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 64px;
  align-items: start;
}

.legal-summary,
.legal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 44px rgba(18, 21, 45, 0.06);
}

.legal-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.legal-summary img {
  width: 180px;
  margin-bottom: 8px;
}

.legal-summary b {
  color: #0e1029;
  font-size: 18px;
}

.legal-summary a,
.legal-summary span {
  color: #68708a;
  font-size: 14px;
  font-weight: 800;
}

.legal-content {
  padding: 42px 52px;
}

.legal-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #e8ecf5;
}

.legal-content h2 {
  margin: 0 0 12px;
  color: #0e1029;
  font-size: 28px;
  line-height: 1.15;
}

.legal-content p {
  margin: 0 0 14px;
  color: #626b86;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 650;
}

.legal-content a {
  color: #6c3cff;
  font-weight: 900;
}

.legal-note {
  margin-top: 34px !important;
  padding: 18px 20px;
  border: 1px solid #ded4ff;
  border-radius: 8px;
  color: #4f3e8c !important;
  background: #f6f1ff;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.service-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.08fr);
  gap: 42px;
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 38px auto 0;
  padding: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(98, 217, 232, 0.20), transparent 36%),
    radial-gradient(circle at 100% 0, rgba(140, 84, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fcff 48%, #f7f2ff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(30, 26, 67, 0.10);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(140,84,255,0.08) 100%);
  pointer-events: none;
}

.service-hero > * {
  position: relative;
  z-index: 1;
}

.service-logo {
  width: 176px;
  margin-bottom: 30px;
}

.service-hero h1 {
  max-width: 650px;
  margin: 22px 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
}

.service-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-media {
  position: relative;
  min-height: 520px;
  overflow: visible;
  border-radius: 8px;
  background: #f3f7fb;
  box-shadow: 0 24px 58px rgba(30, 26, 67, 0.12);
}

.service-media > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(1.05) contrast(1.02);
}

.service-media.contain > img {
  object-fit: contain;
  padding: 34px;
}

.service-badge {
  position: absolute;
  left: 20px;
  bottom: -20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 40px);
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(26, 21, 70, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.service-badge img {
  width: 92px;
  min-height: auto;
  padding: 0;
}

.service-trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1220px, calc(100% - 40px));
  margin: 24px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(30, 26, 67, 0.06);
}

.service-trustbar article {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 22px 24px;
  background: transparent;
  border-right: 1px solid var(--line);
}

.service-trustbar article:last-child {
  border-right: 0;
}

.service-trustbar article::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border-radius: 8px;
  background:
    linear-gradient(var(--purple), var(--purple)) center / 14px 3px no-repeat,
    linear-gradient(var(--purple), var(--purple)) center / 3px 14px no-repeat,
    #f0eaff;
}

.service-trustbar b {
  color: var(--ink);
  font-size: 15px;
}

.service-trustbar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 38px;
  width: min(1220px, calc(100% - 40px));
  margin: 64px auto 0;
}

.service-copy {
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(30, 26, 67, 0.06);
}

.service-copy section {
  position: relative;
  overflow: hidden;
  padding: 40px 44px;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.service-copy section:first-child {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #f7f1ff 100%);
}

.service-copy section:last-child {
  border-bottom: 0;
}

.service-copy section::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 4px;
  height: 42px;
  background: linear-gradient(180deg, var(--purple), var(--cyan));
  border-radius: 0 4px 4px 0;
}

.service-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.service-copy p,
.service-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.service-copy p + p {
  margin-top: 14px;
}

.service-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 28px;
}

.service-copy li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: #fbfcff;
  border: 1px solid #ece7ff;
  border-radius: 8px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--purple);
  border-radius: 8px;
  font-weight: 900;
}

.process-list b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.faq-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list article {
  padding: 22px 24px;
  background: #fbfcff;
  border-bottom: 1px solid var(--line);
}

.faq-list article:last-child {
  border-bottom: 0;
}

.faq-list b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.faq-list p {
  margin: 0;
}

.service-form {
  position: sticky;
  top: 94px;
  align-self: start;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff, #fbf9ff);
  border: 1px solid #d9ccff;
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(30, 26, 67, 0.12);
}

.service-form::before {
  content: "";
  display: block;
  width: 150px;
  height: 26px;
  margin-bottom: 18px;
  background: url("assets/logo-vlugbezorgd.png") left center / contain no-repeat;
}

.service-form h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.service-form p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-form form {
  display: grid;
  gap: 13px;
}

.service-form label {
  display: grid;
  gap: 7px;
  color: #4f536f;
  font-size: 12px;
  font-weight: 900;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  border: 1px solid #dfe2ee;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
  outline: 2px solid rgba(140, 84, 255, 0.22);
  border-color: var(--purple);
}

.service-form input,
.service-form select {
  height: 44px;
}

.service-form textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.service-related {
  width: min(1220px, calc(100% - 40px));
  margin: 60px auto 0;
}

.service-seo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 60px auto 0;
  padding: 40px 44px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(98, 217, 232, 0.28), transparent 36%),
    linear-gradient(135deg, #15102f, #5a2ed1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(30, 26, 67, 0.18);
}

.service-seo-band .pill {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-seo-band h2 {
  margin: 14px 0 0;
  color: white;
  font-size: 26px;
  line-height: 1.2;
}

.service-seo-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.service-related h2 {
  margin: 0 0 22px;
  font-size: 30px;
}

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

.related-grid a {
  padding: 18px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(30, 26, 67, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.25fr;
  gap: 42px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-logo {
  width: 160px;
}

.site-footer p {
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.site-footer .footer-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.admin-page {
  min-height: 100vh;
  background: #f4f6fb;
}

.admin-shell {
  width: min(1420px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.admin-login {
  width: min(440px, 100%);
  margin: 60px auto;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(30, 26, 67, 0.08);
}

.admin-login img,
.admin-heading img {
  width: 180px;
}

.admin-login h1,
.admin-heading h1,
.admin-card h2 {
  margin: 18px 0 8px;
  color: var(--ink);
}

.admin-login p,
.admin-heading p,
.admin-login small,
.requests-list p {
  color: var(--muted);
  line-height: 1.65;
}

.admin-login form,
.admin-settings {
  display: grid;
  gap: 14px;
}

.admin-login label,
.admin-settings label {
  display: grid;
  gap: 8px;
  color: #535870;
  font-size: 12px;
  font-weight: 900;
}

.admin-login input,
.admin-settings input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  border: 1px solid #dfe2ee;
  border-radius: 8px;
  font: inherit;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.dashboard-topbar {
  padding: 22px 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(30, 26, 67, 0.05);
}

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

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-stats article,
.dispatch-board {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(30, 26, 67, 0.05);
}

.dashboard-stats article {
  padding: 20px;
}

.dashboard-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-stats b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 34px;
}

.dispatch-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
}

.dispatch-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.dispatch-toolbar h2,
.dispatch-toolbar p,
.live-locations h3 {
  margin: 0;
}

.dispatch-toolbar p {
  margin-top: 6px;
  color: var(--muted);
}

.dispatch-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dispatch-controls select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid #dfe2ee;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.dispatch-check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #535870;
  font-weight: 900;
}

.live-locations {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.live-locations > div {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.live-locations article {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.live-locations span,
.live-locations p {
  color: var(--muted);
  font-size: 12px;
}

.live-locations a {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.admin-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
}

.admin-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(30, 26, 67, 0.06);
}

.admin-card h3 {
  margin: 12px 0 0;
}

.admin-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.blog-admin-layout {
  align-items: start;
}

.blog-editor textarea {
  min-height: 96px;
  resize: vertical;
}

.blog-editor .blog-content-input {
  min-height: 280px;
  line-height: 1.7;
}

.field-hint {
  display: block;
  margin-top: -8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-admin-list {
  display: grid;
  gap: 12px;
}

.blog-admin-item {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.blog-admin-item b,
.blog-admin-item span,
.blog-admin-item small {
  display: block;
}

.blog-admin-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.blog-admin-item small {
  margin-top: 6px;
  color: #8b91a8;
}

.blog-admin-item > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.notification-test-result {
  margin: 0;
  padding: 14px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #343a59;
  background: #f8f9fd;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 700 13px/1.55 "Manrope", Arial, sans-serif;
}

.mail-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}

.mail-provider-grid article {
  padding: 16px;
  border: 1px solid #e2e6f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.mail-provider-grid b,
.mail-provider-grid span {
  display: block;
}

.mail-provider-grid b {
  color: #151735;
  font-size: 15px;
}

.mail-provider-grid span {
  margin-top: 6px;
  color: #69718a;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .mail-provider-grid {
    grid-template-columns: 1fr;
  }
}

/* Professional city pages v2 */
.cities-hero-v2,
.city-hero-v2 {
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  padding: 0;
  overflow: hidden;
}

.cities-hero-immersive {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100vh - 88px));
  padding: clamp(52px, 7vw, 96px);
  overflow: hidden;
  color: white;
  background: #09071c;
}

.cities-hero-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 6, 27, 0.96) 0%, rgba(10, 8, 36, 0.86) 40%, rgba(10, 8, 36, 0.18) 72%, rgba(10, 8, 36, 0.08) 100%);
}

.cities-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cities-hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 62%);
  padding-bottom: 70px;
}

.cities-hero-immersive .pill {
  color: #86e4ee;
  background: rgba(105, 217, 232, 0.10);
  border-color: rgba(105, 217, 232, 0.34);
}

.cities-hero-immersive h1 {
  margin: 24px 0 20px;
  color: white;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.92;
}

.cities-hero-immersive h1 strong {
  color: #8c54ff;
  font-weight: inherit;
}

.cities-hero-immersive p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.65;
}

.cities-hero-immersive .secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.cities-hero-regions {
  position: absolute;
  right: clamp(24px, 5vw, 74px);
  bottom: 28px;
  left: clamp(24px, 7vw, 96px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cities-hero-regions > div {
  padding: 20px 22px 0 0;
}

.cities-hero-regions strong,
.cities-hero-regions span {
  display: block;
}

.cities-hero-regions strong {
  color: white;
  font-size: 28px;
}

.cities-hero-regions span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.cities-hero-v2 > div,
.city-hero-copy {
  padding: clamp(38px, 5vw, 68px);
}

.cities-hero-image,
.city-hero-image {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #e8eef4;
}

.cities-hero-image img,
.city-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-hero-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px 20px;
  color: white;
  background: rgba(8, 9, 28, 0.88);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.city-hero-image figcaption strong,
.city-hero-image figcaption span {
  display: block;
}

.city-hero-image figcaption strong {
  font-size: 17px;
}

.city-hero-image figcaption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.city-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  background: white;
  border: 1px solid #dfe4f1;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(30, 26, 67, 0.10);
}

.city-benefits article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
}

.city-benefits article + article {
  border-left: 1px solid #e4e7f0;
}

.city-benefits svg {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.city-benefits b,
.city-benefits span {
  display: block;
}

.city-benefits b {
  color: var(--ink);
  font-size: 15px;
}

.city-benefits span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.city-content-v2 {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.65fr);
}

.city-service-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.city-service-types article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 3px 12px;
  padding: 18px;
  background: white;
  border: 1px solid #dfe4f1;
  border-radius: 8px;
}

