:root {
  --ink: #121214;
  --ink-soft: #242429;
  --paper: #f7f4ef;
  --paper-2: #fffdf9;
  --muted: #6f6d69;
  --line: rgba(18, 18, 20, 0.12);
  --red: #e22f32;
  --red-dark: #aa171e;
  --ember: #ff6a32;
  --green: #2b8a62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 18, 16, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[data-portal="restaurant"] {
  --portal-accent: var(--ember);
  --portal-accent-dark: #c83b15;
}

body[data-portal="rider"] {
  --portal-accent: var(--red);
  --portal-accent-dark: var(--red-dark);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(226, 47, 50, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 18px;
  top: -100px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(16, 16, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.audience-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.audience-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.audience-switch a.active {
  color: var(--white);
  background: var(--portal-accent);
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 20px 20px;
}

.mobile-panel.open {
  display: grid;
  gap: 6px;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--portal-accent) 38%, transparent), transparent 31%),
    linear-gradient(145deg, #111114 0%, #1d1d21 62%, #151517 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  padding-block: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--portal-accent) 68%, white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--portal-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--portal-accent) 16%, transparent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--portal-accent);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--portal-accent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--portal-accent) 26%, transparent);
}

.button.primary:hover {
  background: var(--portal-accent-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.button.ink {
  color: var(--white);
  background: var(--ink);
}

.hero-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 555px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hero-card {
  position: absolute;
  left: -36px;
  bottom: 28px;
  width: min(290px, 78%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.hero-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.trust-bar {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--portal-accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.15rem;
}

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

.trust-item strong {
  font-size: 0.92rem;
}

.trust-item span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.77rem;
}

.section {
  padding-block: 110px;
}

.section.white {
  background: var(--paper-2);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--portal-accent-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dark .kicker {
  color: color-mix(in srgb, var(--portal-accent) 68%, white);
}

.section-heading h2,
.split-copy h2,
.offer-copy h2,
.form-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.split-copy > p,
.form-intro > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.dark .section-heading > p:last-child,
.dark .split-copy > p,
.dark .form-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.info-card {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.info-number,
.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 14px;
  color: var(--portal-accent-dark);
  background: color-mix(in srgb, var(--portal-accent) 12%, white);
  font-weight: 900;
}

.info-card h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.info-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-photo {
  position: relative;
}

.split-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.list-check {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--portal-accent);
  font-size: 0.75rem;
}

.offer {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 70px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(130deg, color-mix(in srgb, var(--portal-accent-dark) 90%, #151515), var(--ink) 76%);
  box-shadow: var(--shadow);
}

.offer::after {
  content: "F";
  position: absolute;
  right: 2%;
  bottom: -42%;
  color: rgba(255, 255, 255, 0.035);
  font-size: 30rem;
  font-weight: 900;
  line-height: 1;
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
}

.offer-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-copy h2 {
  margin-top: 20px;
}

.offer-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.offer-includes {
  display: grid;
  gap: 10px;
}

.offer-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-item:last-child {
  border-bottom: 0;
}

.offer-item b:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--portal-accent);
}

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

.offer-item strong {
  font-size: 0.92rem;
}

.offer-item span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
}

.microcopy {
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 0.72rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 27px;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process-dot {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 7px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--portal-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.white .process-dot {
  border-color: var(--paper-2);
}

.process-step h3 {
  margin: 0;
  font-size: 1.05rem;
}

.process-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

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

.voice-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.voice-mark {
  color: var(--portal-accent);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.voice-card h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.voice-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.89rem;
}

.voice-card small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
}

.partners-section {
  overflow: hidden;
  padding-block: 100px;
  background: var(--white);
}

.partners-intro {
  margin: 0 auto 4rem;
  text-align: center;
}

.partners-intro h2 {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.partners-intro p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.partners-marquee-wrap {
  overflow-x: auto;
  padding: 28px 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  background: #fafaf8;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  user-select: none;
}

.partners-marquee-wrap::-webkit-scrollbar {
  display: none;
}

.partners-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.partners-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3rem;
}

.partner-brand {
  display: inline-flex;
  width: auto;
  min-width: 120px;
  height: 80px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.partner-brand img {
  width: auto;
  height: 100%;
  max-width: 140px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.partner-brand:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 47, 50, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-brand:hover img {
  transform: scale(1.03);
}

.partners-note {
  max-width: 1060px;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.partners-note a {
  color: var(--portal-accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.partners-note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.evidence-section {
  background: #f0ebe3;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 22px;
}

.evidence-feature {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  margin: 0;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.evidence-feature img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.evidence-feature::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.evidence-feature figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 27px;
  left: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.evidence-feature figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.91rem;
  font-weight: 900;
}

.review-wall {
  display: grid;
  align-content: start;
  gap: 12px;
}

.rating-lockup,
.review-quote,
.review-source,
.order-ratings {
  border: 1px solid rgba(18, 18, 20, 0.1);
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.rating-lockup {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
}

.rating-lockup strong {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.rating-lockup small {
  color: var(--muted);
}

.stars {
  color: #f4b400;
  font-size: 0.94rem;
  letter-spacing: 0.09em;
}

.review-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-quote {
  min-height: 116px;
  padding: 14px 16px;
}

.review-quote blockquote {
  margin: 7px 0 5px;
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.015em;
}

.review-quote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.review-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-source {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 8px;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-source:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 48, 24, 0.34);
}

.review-source img {
  width: 50px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.review-source span,
.review-source strong,
.review-source small {
  display: block;
  min-width: 0;
}

.review-source strong {
  overflow: hidden;
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-source small {
  margin-top: 2px;
  color: var(--brand);
  font-size: 0.63rem;
  font-weight: 800;
}

.order-ratings {
  padding: 14px 16px 16px;
}

.order-ratings-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.order-ratings-head strong,
.order-ratings-head small {
  display: block;
}

.order-ratings-head strong {
  font-size: 0.85rem;
}

.order-ratings-head small {
  max-width: 230px;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: right;
}

.order-rating-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.order-rating {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(18, 18, 20, 0.045);
}

.order-rating strong {
  overflow: hidden;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-rating span {
  flex: 0 0 auto;
  color: #a66b00;
  font-size: 0.57rem;
  font-weight: 900;
}

.street-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.rider-photo-section {
  overflow: hidden;
}

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

.rider-photo-grid .street-card {
  height: clamp(460px, 58vw, 650px);
}

body[data-portal="rider"] .hero-photo {
  object-position: center 42%;
}

.street-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.street-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.street-card:hover img {
  transform: scale(1.025);
}

.street-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.street-card figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
}

.street-card figcaption strong,
.street-card figcaption span {
  display: block;
}

.street-card figcaption strong {
  font-size: 0.88rem;
}

.street-card figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: 70px;
}

.docs-intro {
  position: sticky;
  top: 120px;
}

.docs-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.docs-intro p {
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper-2);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--portal-accent-dark);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-answer p {
  margin: 0;
}

.form-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--portal-accent) 22%, transparent), transparent 30%),
    var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.form-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.form-point {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.form-point::before {
  content: "✓";
  color: var(--portal-accent);
  font-weight: 900;
}

.lead-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.form-note {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.6;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.consent input {
  margin-top: 4px;
  accent-color: var(--portal-accent);
}

.lead-form .button {
  width: 100%;
}

.button.whatsapp {
  color: #07150d;
  background: #62df8b;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.2);
}

.button.whatsapp:hover {
  background: #7bea9e;
}

.form-error {
  display: none;
  margin: 16px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 120, 120, 0.28);
  border-radius: 10px;
  color: #ffd0d0;
  background: rgba(176, 43, 43, 0.16);
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-error.show {
  display: block;
}

.form-status {
  display: none;
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(98, 223, 139, 0.26);
  border-radius: 16px;
  color: #bff0d8;
  background: rgba(43, 138, 98, 0.17);
  font-size: 0.84rem;
  text-align: center;
}

.form-status.show {
  display: grid;
  gap: 14px;
}

.form-status-title {
  color: var(--white);
  font-size: clamp(1.55rem, 3.1vw, 2.15rem);
  line-height: 1.08;
}

.form-status span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.form-status-confirmation {
  justify-self: center;
  padding: 7px 11px;
  border: 1px solid rgba(98, 223, 139, 0.25);
  border-radius: 999px;
  color: #bff0d8 !important;
  background: rgba(98, 223, 139, 0.1);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-status-priority {
  margin-top: -8px;
  color: var(--white) !important;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 760;
}

.form-status-prepared {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.lead-form.is-submitted > :not(.form-status) {
  display: none;
}

@media (max-width: 580px) {
  .form-status {
    padding: 24px 16px;
    gap: 13px;
  }

  .form-status-title {
    font-size: clamp(1.65rem, 9vw, 2rem);
  }

  .form-status .button {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .form-status-prepared {
    padding: 11px;
    font-size: 0.74rem;
  }
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: #0c0c0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: 0.84rem;
}

.site-footer h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.floating-cta {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 48px;
  align-items: center;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--portal-accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav-links,
  .audience-switch {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    min-height: 640px;
  }

  .hero-photo {
    height: 470px;
  }

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

  .card-grid .info-card:last-child,
  .voice-grid .voice-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .offer-grid,
  .evidence-grid,
  .docs-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 65px 80px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.5rem);
  }

  .hero-visual {
    max-width: 610px;
  }

  .hero-photo {
    height: min(620px, 78vw);
  }

  .hero-card {
    left: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 84px;
  }

  .split-photo img {
    height: min(640px, 105vw);
  }

  .docs-intro {
    position: static;
  }

  .evidence-feature,
  .evidence-feature img {
    min-height: 560px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }

  .process-grid::before {
    display: none;
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-grid {
    padding-block: 52px 70px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-photo {
    height: 460px;
    border-radius: 22px;
  }

  .hero-card {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .card-grid,
  .voice-grid,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .evidence-feature,
  .evidence-feature img {
    min-height: 520px;
  }

  .review-quote {
    min-height: 108px;
    padding: 12px;
  }

  .review-quote blockquote {
    font-size: 0.78rem;
  }

  .review-source {
    gap: 7px;
    padding: 6px;
  }

  .review-source img {
    width: 42px;
    height: 50px;
  }

  .order-ratings-head {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .order-ratings-head small {
    max-width: none;
    text-align: left;
  }

  .order-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .street-gallery {
    grid-template-columns: 1fr;
  }

  .rider-photo-grid {
    grid-template-columns: 1fr;
  }

  .rider-photo-grid .street-card {
    height: min(128vw, 560px);
  }

  .street-card {
    height: 430px;
  }

  .card-grid .info-card:last-child,
  .voice-grid .voice-card:last-child {
    grid-column: auto;
  }

  .info-card {
    min-height: auto;
  }

  .info-number,
  .info-icon {
    margin-bottom: 28px;
  }

  .offer {
    border-radius: 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0 18px;
    text-align: left;
  }

  .process-dot {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-step p {
    margin-top: 4px;
  }

  .partners-section {
    padding-block: 64px;
  }

  .partners-intro {
    margin-bottom: 2.4rem;
  }

  .partners-intro p {
    margin-top: 1rem;
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .partners-marquee-wrap {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .partners-marquee {
    gap: 1.5rem;
  }

  .partner-brand {
    min-width: 90px;
    height: 56px;
    padding: 10px 12px;
  }

  .partner-brand img {
    max-width: 110px;
  }

  .partners-note {
    margin-top: 1.4rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}
