:root {
  --color-navy: #071b34;
  --color-navy-soft: #102b4b;
  --color-ink: #04101f;
  --color-accent: #f4a000;
  --color-accent-dark: #d68100;
  --color-text: #132033;
  --color-muted: #5e6a7a;
  --color-border: #dde5ef;
  --color-bg: #ffffff;
  --color-soft: #f4f7fb;
  --shadow-card: 0 16px 38px rgba(7, 27, 52, 0.1);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 18px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  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:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--color-navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.top-strip {
  color: #fff;
  background: var(--color-navy);
  font-size: 0.92rem;
}

.top-strip__inner,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip__inner {
  min-height: 38px;
}

.top-strip a {
  color: #fff;
  font-weight: 800;
}

.header-main {
  min-height: 76px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-navy);
  font-weight: 900;
}

.site-brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-accent);
  border-radius: 8px;
}

.site-brand__text {
  max-width: 220px;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.custom-logo {
  max-width: 220px;
  max-height: 64px;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.96rem;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-call,
.button-primary {
  color: var(--color-navy);
  background: var(--color-accent);
  box-shadow: 0 10px 24px rgba(244, 160, 0, 0.28);
}

.button-secondary {
  color: #fff;
  background: #128c4a;
}

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

.header-call:hover,
.button:hover {
  color: var(--color-navy);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-navy);
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.98) 0%, rgba(4, 16, 31, 0.82) 39%, rgba(4, 16, 31, 0.32) 69%, rgba(4, 16, 31, 0.12) 100%),
    url("../images/hero-tow-truck.png") center right / cover no-repeat;
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 46px;
  align-items: center;
  min-height: min(820px, calc(100vh - 114px));
  padding-block: 72px;
}

.hero-copy h1,
.hero-copy p {
  color: #fff;
}

.hero-copy p {
  max-width: 700px;
  color: #dce7f5;
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
}

.hero-copy {
  padding-block: 24px;
}

.hero-actions,
.footer-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 48px;
  padding: 11px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-weight: 800;
  text-align: center;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  color: var(--color-muted);
  font-weight: 800;
}

.dispatch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #0d6635;
  background: #e9f8ef;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.dispatch-status span {
  width: 9px;
  height: 9px;
  background: #11a053;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(17, 160, 83, 0.14);
}

.hero-panel strong,
.contact-box strong,
.conversion-inner strong,
.cta-sidebar strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--color-navy);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.hero-panel strong {
  font-size: clamp(1.9rem, 2.35vw, 2.35rem);
}

.hero-panel a,
.text-link {
  color: var(--color-accent-dark);
  font-weight: 900;
}

.section {
  padding-block: 82px;
}

.section-light {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(244, 247, 251, 0.92) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p,
.split-section > div > p,
.page-hero p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.region-card,
.entry-summary,
.cta-sidebar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(244, 160, 0, 0.55);
  box-shadow: 0 22px 48px rgba(7, 27, 52, 0.16);
  transform: translateY(-3px);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--color-navy);
  overflow: hidden;
}

.card-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(7, 27, 52, 0) 45%, rgba(7, 27, 52, 0.38) 100%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card:hover .card-media img {
  transform: scale(1.04);
}

.card-body,
.region-card,
.entry-summary,
.cta-sidebar {
  padding: 24px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

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

.card-actions {
  margin-top: auto;
}

.card-actions a:first-child {
  padding: 9px 13px;
  color: var(--color-navy);
  background: var(--color-accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.card-actions a:last-child {
  color: var(--color-navy);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 42px;
  align-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 42px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--color-accent);
  border-radius: 50%;
}

.check-list.compact {
  grid-template-columns: 1fr;
}

.conversion-band {
  padding-block: 46px;
  color: #fff;
  background: var(--color-navy);
}

.visual-proof {
  padding-block: 86px;
  color: #fff;
  background: var(--color-ink);
}

.visual-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 42px;
  align-items: center;
}

.visual-proof__media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.visual-proof__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-proof h2,
.visual-proof p {
  color: #fff;
}

.visual-proof p {
  color: #d7e2ef;
  font-size: 1.08rem;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof-metrics span {
  min-height: 98px;
  padding: 16px;
  color: #dce7f5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.proof-metrics strong {
  display: block;
  color: var(--color-accent);
  font-size: 1.35rem;
  line-height: 1.15;
}

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

.conversion-inner h2,
.conversion-inner strong {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.faq-item summary {
  min-height: 56px;
  padding: 16px 20px;
  color: var(--color-navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  padding: 0 20px 18px;
  color: var(--color-muted);
}

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

.region-card {
  min-height: 100%;
}

.contact-section {
  padding-top: 0;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 52, 0.96) 0%, rgba(16, 43, 75, 0.9) 100%),
    url("../images/hero-tow-truck.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.contact-box h2,
.contact-box p,
.contact-box strong {
  color: #fff;
}

.page-hero {
  padding-block: 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.96) 0%, rgba(7, 27, 52, 0.86) 58%, rgba(7, 27, 52, 0.54) 100%),
    url("../images/hero-tow-truck.png") center right / cover no-repeat;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.content-narrow {
  max-width: 840px;
}

.entry-content {
  overflow-wrap: anywhere;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content img {
  margin-bottom: 24px;
  border-radius: var(--radius);
}

.entry-summary + .entry-summary {
  margin-top: 18px;
}

.cta-sidebar {
  position: sticky;
  top: 128px;
}

.cta-sidebar .button {
  width: 100%;
  margin-top: 10px;
}

.pagination-wrap {
  margin-top: 32px;
}

.site-footer {
  padding: 54px 0 90px;
  color: #dce7f5;
  background: #06172d;
}

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

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.05rem;
}

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

.site-footer li + li {
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -12px 30px rgba(7, 27, 52, 0.12);
}

.mobile-cta a {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 8px;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.mobile-cta a:first-child {
  background: var(--color-accent);
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .header-main {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 8px;
  }

  .primary-nav__list a {
    display: block;
    padding: 10px 8px;
  }

  .header-call {
    display: none;
  }

  .hero-grid,
  .split-section,
  .contact-box,
  .visual-proof__grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 56px;
  }

  .trust-list,
  .check-list,
  .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-inner .button {
    width: 100%;
  }

  .cta-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 58px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .top-strip__inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip__inner span {
    display: none;
  }

  .site-brand__text {
    max-width: 170px;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(4, 16, 31, 0.92) 0%, rgba(4, 16, 31, 0.98) 74%),
      url("../images/hero-tow-truck.png") 68% center / cover no-repeat;
  }

  .hero-actions .button,
  .contact-box .button {
    width: 100%;
  }

  .trust-list,
  .card-grid,
  .check-list,
  .region-grid,
  .footer-grid,
  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .hero-panel,
  .contact-box {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
  }
}

/* Rich native demo pages. */
.page-content {
  max-width: var(--container);
}

.page-content > *:first-child {
  margin-top: 0;
}

.demo-rich-page {
  display: grid;
  gap: 34px;
}

.demo-intro-grid,
.demo-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}

.demo-intro-grid > div:first-child,
.demo-info-list,
.demo-faq-list,
.demo-card-grid article,
.demo-contact-card,
.demo-cta-band,
.demo-stat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(7, 27, 52, 0.07);
}

.demo-intro-grid > div:first-child,
.demo-info-list,
.demo-contact-card,
.demo-card-grid article {
  padding: 28px;
}

.demo-intro-grid h2,
.demo-info-list h2,
.demo-contact-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.demo-intro-grid p,
.demo-contact-card p,
.demo-card-grid p,
.demo-info-list li,
.demo-faq-list p {
  color: #3d4a5c;
  font-size: 1.02rem;
}

.demo-stat-card {
  display: grid;
  align-content: center;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 16, 31, 0.96) 0%, rgba(7, 27, 52, 0.9) 100%),
    url("../images/hero-tow-truck.png") center / cover no-repeat;
}

.demo-stat-card strong {
  color: var(--color-accent);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.demo-stat-card span {
  margin-top: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 850;
}

.demo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.demo-card-grid article {
  min-height: 100%;
}

.demo-card-grid h3 {
  font-size: 1.22rem;
}

.demo-card-grid a {
  color: var(--color-accent-dark);
  font-weight: 900;
}

.demo-cta-band {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 16, 31, 0.96) 0%, rgba(16, 43, 75, 0.9) 100%),
    url("../images/service-towing.png") center / cover no-repeat;
}

.demo-cta-band h2,
.demo-cta-band p {
  color: #fff;
}

.demo-contact-grid {
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
}

.demo-contact-card.primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 16, 31, 0.97) 0%, rgba(7, 27, 52, 0.92) 100%),
    url("../images/hero-tow-truck.png") center / cover no-repeat;
}

.demo-contact-card.primary h2,
.demo-contact-card.primary p,
.demo-contact-card.primary strong {
  color: #fff;
}

.demo-contact-card strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--color-accent);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

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

.demo-info-list li {
  position: relative;
  padding: 13px 14px 13px 42px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.demo-info-list li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color-accent);
  border-radius: 50%;
}

.demo-faq-list {
  overflow: hidden;
}

.demo-faq-list details {
  padding: 0;
  background: #fff;
}

.demo-faq-list details + details {
  border-top: 1px solid var(--color-border);
}

.demo-faq-list summary {
  min-height: 62px;
  padding: 18px 24px;
  color: var(--color-navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.demo-faq-list p {
  padding: 0 24px 22px;
}

.demo-region-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(7, 27, 52, 0.07);
}

.demo-region-cloud a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  color: var(--color-navy);
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 850;
}

@media (max-width: 1024px) {
  .demo-intro-grid,
  .demo-contact-grid,
  .demo-card-grid,
  .demo-card-grid.services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .demo-intro-grid,
  .demo-contact-grid,
  .demo-card-grid,
  .demo-card-grid.services,
  .demo-info-list ul {
    grid-template-columns: 1fr;
  }

  .demo-intro-grid > div:first-child,
  .demo-info-list,
  .demo-contact-card,
  .demo-card-grid article,
  .demo-cta-band,
  .demo-stat-card,
  .demo-region-cloud {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Modern conversion-focused visual layer. */
:root {
  --shadow-card: 0 18px 44px rgba(7, 27, 52, 0.11);
  --shadow-strong: 0 30px 90px rgba(4, 16, 31, 0.28);
}

.site-header {
  position: fixed;
  right: 0;
  left: 0;
  color: #fff;
  background: rgba(4, 16, 31, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-main {
  min-height: 82px;
}

.site-brand {
  color: #fff;
}

.site-brand__mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ffc047 0%, var(--color-accent) 100%);
  box-shadow: 0 12px 30px rgba(244, 160, 0, 0.24);
}

.primary-nav__list {
  color: rgba(255, 255, 255, 0.86);
}

.primary-nav__list a {
  position: relative;
}

.primary-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav__list a:hover::after {
  transform: scaleX(1);
}

.header-call {
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 160, 0, 0.9);
  box-shadow: none;
}

.header-call:hover {
  color: var(--color-navy);
  background: var(--color-accent);
}

.phone-mark,
.call-orb::before {
  display: block;
  width: 22px;
  height: 14px;
  border-bottom: 5px solid currentColor;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
  border-radius: 0 0 18px 18px;
  transform: rotate(-18deg);
  content: "";
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle span:not(.screen-reader-text) {
  background: #fff;
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.99) 0%, rgba(4, 16, 31, 0.9) 34%, rgba(4, 16, 31, 0.46) 66%, rgba(4, 16, 31, 0.18) 100%),
    url("../images/hero-tow-truck.png") center right / cover no-repeat;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  min-height: min(840px, 100vh);
  padding-top: 156px;
  padding-bottom: 92px;
}

.hero-copy h1 {
  max-width: 840px;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  line-height: 1.02;
}

.hero-copy h1 span {
  display: block;
  color: var(--color-accent);
}

.hero-copy p {
  max-width: 640px;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 30px;
}

.trust-list li {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  max-width: 420px;
  margin-left: auto;
  padding: 18px;
  color: #fff;
  background: rgba(4, 16, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-panel strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.65rem, 2vw, 2rem);
  white-space: nowrap;
}

.hero-panel a {
  color: var(--color-accent);
}

.call-orb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--color-navy);
  background: linear-gradient(135deg, #ffc047 0%, var(--color-accent) 100%);
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 900;
}

.dispatch-status {
  min-height: 30px;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #a7f3c2;
  background: rgba(17, 160, 83, 0.12);
}

.quick-proof {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

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

.quick-proof__grid > div {
  min-height: 132px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(221, 229, 239, 0.92);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(7, 27, 52, 0.1);
}

.proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--color-accent-dark);
  background: #fff4d8;
  border-radius: 10px;
}

.proof-icon::before {
  display: block;
  font-weight: 900;
}

.proof-icon--time::before {
  content: "24";
  font-size: 0.82rem;
}

.proof-icon--pin::before {
  width: 10px;
  height: 10px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 129, 0, 0.18);
}

.proof-icon--shield::before {
  width: 14px;
  height: 18px;
  content: "";
  background: currentColor;
  clip-path: polygon(50% 0, 100% 18%, 88% 75%, 50% 100%, 12% 75%, 0 18%);
}

.proof-icon--price::before {
  content: "₺";
  font-size: 1.05rem;
}

.quick-proof strong,
.quick-proof small {
  display: block;
}

.quick-proof strong {
  color: var(--color-navy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.quick-proof small {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-light {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(244, 247, 251, 0.96) 100%);
}

.section-light .section-head {
  text-align: left;
}

.card-grid {
  gap: 24px;
}

.service-card,
.region-card,
.entry-summary,
.cta-sidebar {
  border-radius: 14px;
}

.card-media {
  aspect-ratio: 16 / 10.5;
}

.card-media::after {
  background: linear-gradient(180deg, rgba(7, 27, 52, 0) 42%, rgba(7, 27, 52, 0.56) 100%);
}

.card-actions {
  justify-content: space-between;
}

.card-actions a:first-child {
  padding: 0;
  color: var(--color-navy);
  background: transparent;
}

.card-actions a:last-child {
  padding: 9px 13px;
  color: var(--color-navy);
  background: var(--color-accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.service-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-accent);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(4, 16, 31, 0.22);
}

.service-icon::before {
  display: block;
  font-weight: 900;
}

.service-icon--battery::before {
  width: 20px;
  height: 12px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 3px;
  box-shadow: 13px 3px 0 -2px currentColor;
}

.service-icon--tire::before {
  width: 22px;
  height: 22px;
  content: "";
  border: 5px solid currentColor;
  border-radius: 50%;
}

.service-icon--tools::before {
  width: 24px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: rotate(-35deg);
}

.service-icon--truck::before {
  width: 24px;
  height: 15px;
  content: "";
  background: currentColor;
  border-radius: 3px 6px 3px 3px;
  box-shadow: -6px 11px 0 -3px currentColor, 10px 11px 0 -3px currentColor;
}

.conversion-band {
  background:
    linear-gradient(135deg, rgba(4, 16, 31, 0.98) 0%, rgba(7, 27, 52, 0.94) 100%),
    url("../images/hero-tow-truck.png") center / cover no-repeat;
}

@media (max-width: 1024px) {
  .quick-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-main {
    min-height: 76px;
  }

  .primary-nav {
    top: calc(100% + 10px);
    background: rgba(4, 16, 31, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 130px;
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    background:
      linear-gradient(180deg, rgba(4, 16, 31, 0.9) 0%, rgba(4, 16, 31, 0.99) 76%),
      url("../images/hero-tow-truck.png") 68% center / cover no-repeat;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 9.6vw, 3.08rem);
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.62;
  }

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

  .hero-panel {
    grid-template-columns: 48px minmax(0, 1fr);
    max-width: none;
    margin-left: 0;
    padding: 15px;
  }

  .call-orb {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .hero-panel strong {
    font-size: 1.38rem;
  }

  .quick-proof {
    margin-top: -38px;
  }

  .quick-proof__grid {
    grid-template-columns: 1fr;
  }
}

/* Screenshot-matched refinement pass. */
.site-header {
  background: rgba(4, 16, 31, 0.94);
}

.header-main {
  min-height: 74px;
}

.site-brand {
  gap: 12px;
}

.site-brand__mark,
.site-brand__text {
  display: none;
}

.site-brand__truck {
  position: relative;
  display: block;
  width: 54px;
  height: 42px;
  color: var(--color-accent);
}

.site-brand__truck::before {
  position: absolute;
  left: 3px;
  bottom: 9px;
  width: 29px;
  height: 19px;
  content: "";
  border: 4px solid currentColor;
  border-radius: 3px;
}

.site-brand__truck::after {
  position: absolute;
  right: 4px;
  bottom: 9px;
  width: 18px;
  height: 15px;
  content: "";
  border: 4px solid currentColor;
  border-left: 0;
  border-radius: 0 5px 3px 0;
}

.site-brand__truck span::before,
.site-brand__truck span::after {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color-ink);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.site-brand__truck span::before {
  left: 8px;
}

.site-brand__truck span::after {
  right: 8px;
}

.site-brand__stack {
  display: grid;
  gap: 0;
  line-height: 1;
}

.site-brand__stack strong {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 950;
}

.site-brand__stack small {
  color: var(--color-accent);
  font-size: 0.96rem;
  font-weight: 950;
}

.primary-nav__list {
  gap: 30px;
}

.header-call {
  min-width: 216px;
  min-height: 42px;
  border-radius: 6px;
}

.hero-grid {
  align-items: start;
  min-height: 610px;
  padding-top: 138px;
  padding-bottom: 72px;
}

.hero-copy {
  align-self: start;
  padding-block: 0;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(3.65rem, 4.8vw, 4.8rem);
  line-height: 1.03;
}

.hero-copy p {
  max-width: 600px;
  margin-top: 10px;
  font-size: 1.14rem;
}

.hero-actions {
  margin-top: 26px;
}

.hero-actions .button {
  min-width: 185px;
}

.trust-list {
  margin-top: 30px;
}

.trust-list li {
  background: transparent;
  border: 0;
  backdrop-filter: none;
  padding: 0;
}

.trust-list li + li::before {
  content: "•";
  margin-right: 8px;
  color: var(--color-accent);
}

.hero-panel {
  align-self: end;
  grid-template-columns: 70px minmax(0, 1fr);
  max-width: 400px;
  margin-bottom: 6px;
  padding: 20px;
  border-radius: 8px;
}

.call-orb {
  width: 70px;
  height: 70px;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.call-orb::before {
  width: 20px;
  height: 13px;
  border-width: 5px;
}

.dispatch-status {
  display: none;
}

.hero-panel span {
  color: #dce7f5;
  font-size: 1rem;
}

.hero-panel strong {
  margin-top: 6px;
  color: #fff;
  font-size: 1.78rem;
}

.hero-panel a {
  display: none;
}

.quick-proof {
  margin-top: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.quick-proof__grid {
  gap: 0;
}

.quick-proof__grid > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 112px;
  padding: 26px 32px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.quick-proof__grid > div + div {
  border-left: 1px solid var(--color-border);
}

.proof-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--color-navy);
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-icon--pin::before {
  box-shadow: none;
}

.proof-icon--shield::before {
  width: 13px;
  height: 16px;
}

.quick-proof small {
  margin-top: 2px;
}

.section-light {
  background: #fff;
}

.section-light .section-head {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-light .section-head h2::after {
  display: block;
  width: 46px;
  height: 4px;
  margin: 12px auto 0;
  content: "";
  background: var(--color-accent);
  border-radius: 999px;
}

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

.service-card {
  border-radius: 4px;
  box-shadow: 0 10px 32px rgba(7, 27, 52, 0.07);
}

.card-media {
  aspect-ratio: 16 / 9;
}

.service-icon {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  width: 58px;
  height: 58px;
  color: var(--color-accent);
  background: var(--color-navy);
  border: 0;
  border-radius: 50%;
}

.card-body {
  padding: 19px 14px 20px;
}

.card-body h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card-body p {
  min-height: 48px;
  margin-bottom: 16px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.card-actions {
  justify-content: flex-start;
}

.card-actions a:first-child {
  font-size: 0.86rem;
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primary-nav__list {
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .site-brand__truck {
    display: block;
    width: 48px;
    height: 38px;
  }

  .site-brand__stack {
    display: grid;
  }

  .site-brand__stack strong {
    font-size: 1rem;
  }

  .site-brand__stack small {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .quick-proof__grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: clamp(2.18rem, 9.6vw, 3.08rem);
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list li {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-list li + li::before {
    content: none;
  }

  .hero-panel {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .call-orb {
    width: 56px;
    height: 56px;
  }

  .hero-panel strong {
    font-size: 1.32rem;
  }

  .quick-proof__grid > div {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 20px 0;
  }
}

/* Rich inner pages and modern type rhythm. */
body {
  font-family: Inter, ui-sans-serif, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.button,
.primary-nav__list,
.site-brand,
.header-call {
  letter-spacing: -0.01em;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-top: 132px;
  padding-bottom: 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.98) 0%, rgba(4, 16, 31, 0.84) 46%, rgba(4, 16, 31, 0.28) 100%),
    var(--inner-hero-image) center / cover no-repeat;
}

.inner-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}

.inner-hero__copy h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
}

.inner-hero__copy p {
  max-width: 670px;
  color: #dce7f5;
  font-size: 1.2rem;
}

.inner-hero .breadcrumbs {
  margin-top: 0;
  margin-bottom: 22px;
}

.inner-hero__panel,
.detail-cta-card {
  color: #fff;
  background: rgba(4, 16, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.inner-hero__panel {
  padding: 24px;
}

.inner-hero__panel span,
.inner-hero__panel small {
  color: #dce7f5;
}

.inner-hero__panel span {
  display: block;
  font-weight: 800;
}

.inner-hero__panel strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--color-accent);
  font-size: 1.85rem;
  line-height: 1.1;
}

.detail-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.detail-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-strip__grid > div {
  padding: 22px 28px;
}

.detail-strip__grid > div + div {
  border-left: 1px solid var(--color-border);
}

.detail-strip strong,
.detail-strip span {
  display: block;
}

.detail-strip strong {
  color: var(--color-navy);
  font-size: 1.08rem;
}

.detail-strip span {
  color: var(--color-muted);
  font-size: 0.94rem;
}

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

.content-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(7, 27, 52, 0.07);
}

.content-panel h2 {
  margin-top: 28px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel p,
.content-panel li {
  color: #3d4a5c;
  font-size: 1.03rem;
}

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

.content-panel li,
.service-list-rich li {
  position: relative;
  padding: 13px 14px 13px 42px;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.content-panel li::before,
.service-list-rich li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color-accent);
  border-radius: 50%;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
}

.detail-cta-card {
  padding: 24px;
}

.detail-cta-card h2,
.detail-cta-card p,
.detail-cta-card strong {
  color: #fff;
}

.detail-cta-card h2 {
  font-size: 1.45rem;
}

.detail-cta-card p {
  color: #dce7f5;
}

.detail-cta-card strong {
  display: block;
  margin: 10px 0 16px;
  color: var(--color-accent);
  font-size: 1.75rem;
  line-height: 1.1;
}

.detail-cta-card .button {
  width: 100%;
  margin-top: 10px;
}

.process-grid,
.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-grid article,
.mini-service-grid article {
  min-height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(7, 27, 52, 0.07);
}

.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--color-navy);
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 950;
}

.process-grid p,
.mini-service-grid p {
  color: var(--color-muted);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.05);
}

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

.mini-service-grid article {
  position: relative;
  padding-top: 88px;
}

.mini-service-grid .service-icon {
  top: 24px;
  left: 24px;
}

@media (max-width: 1024px) {
  .inner-hero__grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .process-grid,
  .mini-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .inner-hero {
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .inner-hero__copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
  }

  .detail-strip__grid,
  .process-grid,
  .mini-service-grid,
  .service-list-rich {
    grid-template-columns: 1fr;
  }

  .detail-strip__grid > div {
    padding: 18px 0;
  }

  .detail-strip__grid > div + div {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .content-panel,
  .detail-cta-card,
  .process-grid article,
  .mini-service-grid article {
    padding: 22px;
  }
}
