:root {
  --blue-950: #0b1f3a;
  --blue-900: #102b52;
  --blue-800: #163b70;
  --blue-100: #eaf2ff;
  --green-600: #16a37a;
  --green-700: #0f8764;
  --text: #172033;
  --muted: #637083;
  --line: #dce5ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 239, 0.9);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue-950);
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-600);
  color: white;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 12px 26px rgba(22, 163, 122, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-950);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:not(.nav-cta) {
  opacity: 0.82;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta,
.btn {
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.nav-cta,
.btn-primary {
  background: var(--green-600);
  color: white;
  box-shadow: 0 12px 28px rgba(22, 163, 122, 0.25);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--blue-950);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.1);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue-950);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 163, 122, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #edf5ff 58%, #f6fbf8 100%);
}

.hero-bg {
  position: absolute;
  inset: auto -120px -190px auto;
  width: 520px;
  height: 520px;
  background: rgba(16, 43, 82, 0.07);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--green-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.eyebrow.light {
  color: #8ce0c5;
}

h1,
h2,
h3 {
  color: var(--blue-950);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-benefits span {
  background: white;
  color: var(--blue-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-card,
.price-card,
.service-card,
.contact-form,
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 30px;
}

.card-badge {
  display: inline-flex;
  background: var(--blue-100);
  color: var(--blue-800);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.price {
  color: var(--blue-950);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 14px 0 6px;
}

.price.large {
  font-size: 4rem;
}

.muted {
  color: var(--muted);
}

.tiny {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style: none;
  margin: 22px 0;
}

li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.trust-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

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

.trust-item {
  padding: 18px;
  background: var(--soft);
  border-radius: 18px;
}

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

.trust-item strong {
  color: var(--blue-950);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

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

.section.dark {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.78);
}

.section.dark h2,
.section.dark h3 {
  color: white;
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 44px;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.section-heading p,
.split p,
.process-grid p,
.faq-layout p,
.company-box p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

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

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 22px;
  background: var(--blue-100);
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--blue-800);
}

.icon.truck::before {
  width: 32px;
  height: 18px;
  left: 11px;
  top: 19px;
  border-radius: 3px;
}

.icon.truck::after {
  width: 12px;
  height: 12px;
  right: 9px;
  top: 25px;
  border-radius: 2px;
}

.icon.bus::before {
  width: 36px;
  height: 25px;
  left: 11px;
  top: 16px;
  border-radius: 5px;
}

.icon.bus::after {
  width: 26px;
  height: 3px;
  left: 16px;
  top: 23px;
  background: white;
}

.icon.taxi::before {
  width: 34px;
  height: 15px;
  left: 12px;
  top: 24px;
  border-radius: 10px 10px 4px 4px;
}

.icon.taxi::after {
  width: 16px;
  height: 7px;
  left: 21px;
  top: 16px;
  border-radius: 3px 3px 0 0;
}

.card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-footer span {
  font-weight: 900;
  color: var(--blue-950);
}

.card-footer a {
  color: var(--green-700);
  font-weight: 800;
}

.process-grid,
.split,
.price-layout,
.faq-layout,
.contact-card,
.company-box {
  display: grid;
  gap: 48px;
  align-items: center;
}

.process-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.split,
.price-layout,
.faq-layout,
.contact-card,
.company-box {
  grid-template-columns: 1fr 1fr;
}

.notice {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: #fff7df;
  border: 1px solid #f1dd9b;
  color: #66510c;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
}

.step span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-600);
  color: white;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.check-list,
.feature-grid {
  display: grid;
  gap: 12px;
}

.check-list div,
.feature-grid div {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--soft);
  font-weight: 700;
}

.check-list div::before {
  content: "✓";
  color: var(--green-600);
  margin-right: 10px;
  font-weight: 900;
}

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

.feature-grid div {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-card {
  padding: 34px;
}

.company-box {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--line);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  box-shadow: none;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--blue-950);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green-700);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-bottom: 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.contact-card {
  color: white;
}

.contact-card h2 {
  color: white;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.77);
}

.contact-form {
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

label {
  display: block;
  color: var(--blue-950);
  font-weight: 800;
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 54px 0;
  background: #08182e;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 44px;
}

.footer-logo {
  color: white;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .process-grid,
  .split,
  .price-layout,
  .faq-layout,
  .contact-card,
  .company-box {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    height: 70px;
    padding: 0 16px;
  }

  .hero {
    padding: 64px 0;
  }

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

  .btn {
    width: 100%;
  }

  .cards.three,
  .trust-grid,
  .footer-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .price-card,
  .company-box,
  .contact-form {
    padding: 24px;
  }

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

  .price.large {
    font-size: 3.1rem;
  }
}
