:root {
  --black: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --gold: #e8b858;
  --gold-light: #f0c060;
  --white: #f7f7f7;
  --muted: #a1a1aa;
  --line: rgba(232, 184, 88, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

body.portal-page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.portal-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.portal-bg,
.portal-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.portal-bg {
  background: url("./assets/portal-background-day.jpg") center / cover no-repeat;
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.01);
}

.portal-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62) 38%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(5, 5, 5, 0.24));
}

.portal-night .portal-bg {
  filter: brightness(0.48) saturate(0.82) contrast(1.12);
}

.portal-night .portal-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.9), rgba(3, 5, 8, 0.68) 42%, rgba(3, 5, 8, 0.2)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.62));
}

.portal-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
}

.portal-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.portal-theme-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 42px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  cursor: pointer;
  font-weight: 900;
  padding: 4px;
  backdrop-filter: blur(12px);
}

.portal-theme-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
}

.portal-theme-toggle .theme-day {
  background: var(--gold);
  color: #050505;
}

.portal-night .portal-theme-toggle {
  border-color: rgba(232, 184, 88, 0.3);
  background: rgba(5, 5, 5, 0.72);
  color: #f7f7f7;
}

.portal-night .portal-theme-toggle .theme-day {
  background: transparent;
  color: #d4d4d8;
}

.portal-night .portal-theme-toggle .theme-night {
  background: var(--gold);
  color: #050505;
}

.portal-content {
  align-self: center;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto 9vh clamp(18px, 7vw, 92px);
  padding: clamp(24px, 4vw, 42px) 0;
}

.portal-eyebrow {
  margin: 0 0 16px;
  color: #151515;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-content h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #050505;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
}

.portal-copy {
  max-width: 520px;
  color: #252525;
  font-size: 18px;
  font-weight: 700;
}

.portal-night .portal-eyebrow,
.portal-night .portal-content h1 {
  color: #f7f7f7;
}

.portal-night .portal-copy {
  color: #e4e4e7;
}

.portal-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin-top: 34px;
}

.portal-choice {
  display: grid;
  align-content: space-between;
  min-height: 190px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #090909;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.portal-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 88, 0.72);
  background: rgba(255, 255, 255, 0.9);
}

.portal-choice span {
  color: #050505;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 0.95;
}

.portal-choice strong {
  display: block;
  max-width: 260px;
  color: #353535;
  font-size: 16px;
  line-height: 1.35;
}

.portal-choice.taxi {
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.9), rgba(232, 184, 88, 0.72)),
    rgba(255, 255, 255, 0.78);
}

.portal-night .portal-choice {
  border-color: rgba(232, 184, 88, 0.26);
  background: rgba(8, 8, 8, 0.72);
  color: #f7f7f7;
}

.portal-night .portal-choice:hover {
  background: rgba(15, 15, 15, 0.86);
}

.portal-night .portal-choice span,
.portal-night .portal-choice strong {
  color: #f7f7f7;
}

.portal-night .portal-choice.taxi {
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.92), rgba(186, 131, 28, 0.84)),
    rgba(8, 8, 8, 0.72);
}

.portal-night .portal-choice.taxi span,
.portal-night .portal-choice.taxi strong {
  color: #050505;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  padding: 14px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  border-radius: 999px;
  color: #d4d4d8;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
}

.nav a:hover {
  background: rgba(232, 184, 88, 0.12);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #000;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--gold-light);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 80% 20%, rgba(232, 184, 88, 0.16), transparent 34%),
    url("./assets/logo.png") center right / min(680px, 70vw) no-repeat;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.taxi-page .hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

p {
  color: #d4d4d8;
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  font-size: 18px;
}

.hero-actions,
.cards,
.contact-form {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 900;
  padding: 13px 18px;
}

.button.primary {
  background: var(--gold);
  color: #090909;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #000;
  color: var(--gold-light);
}

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

.hero-panel,
.stats,
.card,
.contact-form,
.about-panel,
.plans-grid article,
.plans-note,
.trust-grid article,
.process-grid article,
.faq-grid article,
.document-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.88);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.hero-panel div,
.stats div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #050505;
  padding: 18px;
}

.hero-panel span,
.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 28px;
  font-weight: 900;
}

.section-heading {
  max-width: 860px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 24px;
}

.card-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
}

.card.feature {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.card ul {
  margin: 10px 0 24px;
  padding-left: 20px;
  color: #d4d4d8;
  line-height: 1.9;
}

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

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.05), rgba(232, 184, 88, 0)),
    #050505;
}

.about-main p {
  max-width: 820px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin-top: 28px;
}

.about-highlights article {
  border: 1px solid rgba(232, 184, 88, 0.18);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.72);
  padding: 18px;
}

.about-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 900;
}

.about-highlights span {
  display: block;
  color: #d4d4d8;
  font-size: 14px;
  line-height: 1.6;
}

.about-panel {
  padding: 26px;
}

.about-panel strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 26px;
  font-weight: 900;
}

.about-panel p {
  margin-bottom: 18px;
}

.about-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.about-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f7f7;
  font-size: 15px;
  font-weight: 800;
  padding-bottom: 10px;
}

.about-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-panel .button {
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

.trust-section {
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.04), transparent),
    #050505;
}

.trust-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.trust-grid article,
.process-grid article,
.faq-grid article {
  padding: 22px;
}

.trust-grid span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--gold);
  color: #050505;
  font-weight: 900;
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 20px;
}

.trust-grid p,
.process-grid p,
.faq-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 36px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #080808;
}

.stats {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.stats span {
  color: #d4d4d8;
}

.real-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.real-car-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.12), rgba(232, 184, 88, 0)),
    rgba(16, 16, 16, 0.9);
}

.real-car-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  image-orientation: from-image;
  background: #050505;
}

.real-car-card div {
  padding: 16px;
}

.real-car-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 900;
}

.real-car-card span {
  display: block;
  color: #d4d4d8;
  font-size: 14px;
  line-height: 1.55;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at 75% 45%, rgba(232, 184, 88, 0.16), transparent 30%),
    #050505;
}

.sales-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 184, 88, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #080808;
}

.app-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.app-points span {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 16, 16, 0.88);
  color: #f4f4f5;
  font-weight: 800;
  padding: 14px;
}

.app-preview {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.16), rgba(232, 184, 88, 0.02)),
    #090909;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  padding: 18px;
}

.preview-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #050505;
  margin-top: 12px;
  padding: 16px;
}

.preview-row strong {
  color: #d4d4d8;
}

.preview-row b {
  color: var(--gold-light);
  font-size: 24px;
}

.preview-row.highlight {
  border-color: rgba(232, 184, 88, 0.42);
}

.preview-row.highlight b {
  color: #fff;
  font-size: 34px;
}

.app-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  align-items: start;
}

.app-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.12), rgba(232, 184, 88, 0)),
    #101010;
}

.app-shot.wide {
  grid-column: 1;
}

.app-shot.phone {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.app-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.app-shot.phone img {
  height: 100%;
  object-fit: cover;
}

.app-shot figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 14px;
}

.partner {
  background:
    linear-gradient(rgba(232, 184, 88, 0.05), rgba(232, 184, 88, 0)),
    var(--black);
}

.card.feature.compact {
  min-height: 280px;
}

.plans-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 184, 88, 0.13), transparent 30%),
    #050505;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.plans-grid article {
  padding: 22px;
}

.plans-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--gold);
  color: #050505;
  font-weight: 900;
}

.plans-grid h3 {
  color: var(--gold-light);
  font-size: 20px;
}

.plans-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.plans-note {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 24px;
}

.plans-note strong {
  color: var(--gold-light);
  font-size: 22px;
}

.plans-note p {
  max-width: 860px;
  margin-bottom: 0;
}

.plans-note .button {
  justify-self: start;
}

.documents {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 10% 10%, rgba(232, 184, 88, 0.12), transparent 28%),
    #080808;
}

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

.document-grid article {
  min-height: 190px;
  padding: 22px;
}

.document-grid h3 {
  font-size: 20px;
}

.document-grid p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.document-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--gold);
  color: #050505;
  font-weight: 900;
}

.process-section {
  background: #050505;
}

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

.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.05), rgba(232, 184, 88, 0)),
    #080808;
}

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

.faq-grid h3 {
  color: var(--gold-light);
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: 36px;
  align-items: start;
}

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

.contact-details article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 16, 16, 0.88);
  padding: 18px;
}

.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-details a:hover {
  color: var(--gold-light);
}

.contact-details small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-details p {
  margin-bottom: 0;
  color: #d4d4d8;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #050505;
  color: var(--white);
  font: inherit;
  padding: 14px;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px clamp(18px, 5vw, 72px);
}

.taxi-theme-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 4px;
}

.taxi-theme-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
}

.taxi-theme-toggle .theme-night {
  background: var(--gold);
  color: #050505;
}

.taxi-page.taxi-day {
  --black: #f4efe3;
  --panel: #ffffff;
  --panel-2: #f8f3e8;
  --white: #111111;
  --muted: #595959;
  --line: rgba(164, 116, 23, 0.26);
  background: #f4efe3;
  color: #111111;
}

.taxi-day .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.taxi-day .nav a {
  color: #2f2f2f;
}

.taxi-day .nav a:hover {
  background: rgba(232, 184, 88, 0.22);
  color: #111111;
}

.taxi-day .menu-toggle {
  background: #ffffff;
}

.taxi-day .taxi-theme-toggle {
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
}

.taxi-day .taxi-theme-toggle .theme-day {
  background: var(--gold);
  color: #050505;
}

.taxi-day .taxi-theme-toggle .theme-night {
  background: transparent;
  color: #555555;
}

.taxi-day h1,
.taxi-day h2,
.taxi-day h3 {
  color: #111111;
}

.taxi-day p,
.taxi-day .card ul,
.taxi-day .stats span,
.taxi-day .real-car-card span,
.taxi-day .app-point span,
.taxi-day .app-shot span,
.taxi-day .document-grid p,
.taxi-day .faq-grid p,
.taxi-day .process-grid p,
.taxi-day .trust-grid p {
  color: #3c3c3c;
}

.taxi-day .eyebrow,
.taxi-day .hero-panel span,
.taxi-day .about-panel strong,
.taxi-day .about-highlights strong,
.taxi-day .trust-grid strong,
.taxi-day .real-car-card strong,
.taxi-day .faq-grid h3 {
  color: #8a650f;
}

.taxi-day .hero {
  background:
    linear-gradient(120deg, rgba(244, 239, 227, 0.96), rgba(244, 239, 227, 0.74)),
    radial-gradient(circle at 80% 20%, rgba(232, 184, 88, 0.24), transparent 34%),
    url("./assets/logo.png") center right / min(680px, 70vw) no-repeat;
}

.taxi-day .about-section,
.taxi-day .trust-section,
.taxi-day .app-section,
.taxi-day .sales-section,
.taxi-day .plans-section,
.taxi-day .process-section,
.taxi-day .faq-section {
  background:
    linear-gradient(180deg, rgba(232, 184, 88, 0.08), rgba(232, 184, 88, 0)),
    #f4efe3;
}

.taxi-day .split {
  background: #fbf8f0;
}

.taxi-day .hero-panel,
.taxi-day .stats,
.taxi-day .card,
.taxi-day .contact-form,
.taxi-day .contact-details article,
.taxi-day .about-panel,
.taxi-day .plans-grid article,
.taxi-day .plans-note,
.taxi-day .trust-grid article,
.taxi-day .process-grid article,
.taxi-day .faq-grid article,
.taxi-day .document-grid article,
.taxi-day .real-car-card,
.taxi-day .app-shot,
.taxi-day .app-point,
.taxi-day .about-highlights article {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(82, 57, 12, 0.08);
}

.taxi-day .hero-panel div,
.taxi-day .stats div,
.taxi-day input,
.taxi-day select,
.taxi-day textarea {
  background: #ffffff;
  color: #111111;
}

.taxi-day .button.secondary {
  background: #ffffff;
  color: #8a650f;
}

.taxi-day .contact-details a,
.taxi-day .contact-details strong {
  color: #161616;
}

.taxi-day .contact-details a:hover {
  color: #765504;
}

.taxi-day .contact-details span {
  color: #765504;
}

.taxi-day .contact-details p,
.taxi-day .contact-details small {
  color: #4a4031;
}

.taxi-day .about-highlights span,
.taxi-day .about-panel p,
.taxi-day .about-list li {
  color: #3d3322;
  font-weight: 700;
}

.taxi-day .about-highlights strong,
.taxi-day .about-panel strong {
  color: #765504;
  font-weight: 900;
}

.taxi-day .about-highlights article {
  border-color: rgba(164, 116, 23, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.taxi-day .documents .section-heading h2 {
  color: #fff5df;
}

.taxi-day .documents .section-heading p:not(.eyebrow) {
  color: #f4ead6;
  font-weight: 700;
}

.taxi-day .footer {
  background: #ffffff;
  color: #595959;
}

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

  .taxi-theme-toggle {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #050505;
    padding: 10px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .about-section,
  .split,
  .app-section,
  .contact,
  .real-fleet-grid,
  .trust-grid,
  .plans-grid,
  .process-grid,
  .faq-grid,
  .app-points,
  .app-gallery,
  .about-highlights,
  .contact-details,
  .cards.three,
  .cards.two,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .app-shot.wide,
  .app-shot.phone {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
      url("./assets/logo.png") center top 40px / 420px no-repeat;
    padding-top: 160px;
  }

  .taxi-page .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.12;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .portal-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68) 58%, rgba(255, 255, 255, 0.2)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(5, 5, 5, 0.22));
  }

  .portal-night .portal-overlay {
    background:
      linear-gradient(180deg, rgba(3, 5, 8, 0.88), rgba(3, 5, 8, 0.72) 58%, rgba(3, 5, 8, 0.3)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.66));
  }

  .portal-header {
    padding: 18px;
  }

  .portal-brand {
    width: 122px;
  }

  .portal-theme-toggle {
    min-height: 40px;
    font-size: 13px;
  }

  .portal-content {
    align-self: end;
    width: calc(100% - 36px);
    margin: 0 auto 24px;
  }

  .portal-content h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .portal-choices {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .portal-choice {
    min-height: 140px;
    border-radius: 16px;
    padding: 20px;
  }
}
