.taxi-main {
  background: #eceef2;
}

.taxi-page .global-contact-band {
  display: none;
}

.tx-hero .container,
.tx-block .container {
  width: min(1120px, calc(100% - 44px));
}

.tx-hero {
  padding-top: 52px;
  padding-bottom: 50px;
}

.tx-hero h1 {
  color: #161922;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
}

.tx-line {
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  margin-top: 16px;
  background: #f6c90e;
}

.tx-hero p {
  margin-top: 20px;
  color: #1e2433;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 600;
}

.tx-block {
  padding-top: 14px;
  padding-bottom: 18px;
}

.tx-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

.tx-copy h2 {
  color: #171b24;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.tx-copy p {
  margin-top: 14px;
  color: #1f2432;
  font-size: clamp(1rem, 1.3vw, 1.33rem);
  line-height: 1.66;
  font-weight: 600;
}

.tx-bullets {
  margin: 14px 0 0;
  color: #1f2432;
  padding-left: 30px;
}

.tx-bullets li {
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.68;
  font-weight: 600;
}

.tx-bullets li + li {
  margin-top: 12px;
}

.tx-image {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #d3d8e3;
  box-shadow: 0 14px 26px rgba(12, 18, 31, 0.08);
}

.tx-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.tx-image-portrait img {
  aspect-ratio: 4 / 5;
}

.tx-highlight {
  margin-top: 18px;
}

.tx-requirements h2,
.tx-faq h2 {
  color: #171b24;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

.tx-section-lead {
  margin-top: 14px;
  color: #232939;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  max-width: 960px;
}

.tx-steps {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.tx-step {
  background: #f7f8fb;
  border: 1px solid #d9deea;
  border-radius: 16px;
  padding: 16px 16px 14px;
}

.tx-step h3 {
  margin: 0;
  color: #181c26;
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
}

.tx-step ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.tx-step li {
  color: #262c3b;
  font-size: clamp(0.95rem, 0.95vw, 1.02rem);
  line-height: 1.55;
  font-weight: 500;
}

.tx-step li + li {
  margin-top: 8px;
}

.tx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #0d0f14;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  padding: 14px 24px;
}

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

.tx-faq-list {
  background: #f7f8fb;
  border: 1px solid #d9deea;
  border-radius: 20px;
  padding: 18px 16px;
}

.tx-faq-item {
  margin-top: 10px;
  border-top: 1px solid #d7dce7;
  padding-top: 10px;
}

.tx-faq-item summary {
  cursor: pointer;
  color: #171c27;
  font-weight: 700;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.tx-faq-item p {
  margin: 8px 0 0;
  color: #2a3141;
  font-size: clamp(0.95rem, 0.95vw, 1rem);
  line-height: 1.55;
}

.tx-next {
  background: #11141b;
  color: #f4f7ff;
  border-radius: 20px;
  padding: 20px 16px;
}

.tx-next h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.6vw, 1.6rem);
}

.tx-next p {
  margin-top: 10px;
  color: #d9dfeb;
  font-size: clamp(0.95rem, 0.95vw, 1rem);
  line-height: 1.58;
}

.tx-next .tx-cta {
  margin-top: 14px;
}

.tx-ghost {
  display: inline-flex;
  margin-top: 10px;
  color: #f0f5ff;
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 980px) {
  .tx-hero .container,
  .tx-block .container {
    width: min(1140px, calc(100% - 120px));
  }

  .tx-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .tx-grid-reverse .tx-image {
    order: 1;
  }

  .tx-grid-reverse .tx-copy {
    order: 2;
  }

  .tx-image img {
    aspect-ratio: auto;
    min-height: 420px;
    max-height: 520px;
  }

  .tx-image-portrait img {
    min-height: 520px;
  }

  .tx-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .tx-faq-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .tx-faq-list,
  .tx-next {
    padding: 24px;
  }
}
