:root {
  --ink: #090a0c;
  --ink-soft: #17191d;
  --paper: #f6f1e7;
  --paper-soft: #ebe2d3;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(9, 10, 12, 0.16);
  --text: #f8f4ec;
  --muted: #c7beb1;
  --muted-dark: #5b5c60;
  --acid: #b9ff4a;
  --accent: #b9ff4a;
  --gold: #d2a15d;
  --sea: #68bdcc;
  --danger: #f06449;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

html[lang="ar"] body {
  font-family: "Noto Kufi Arabic", "Manrope", system-ui, sans-serif;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--acid);
  color: #101114;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 12, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: max-content;
}

.brand-mark {
  font-size: 18px;
  font-weight: 800;
}

.brand-sub {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.language-toggle,
.nav-cta,
.button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.language-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta,
.button-primary {
  border-color: transparent;
  background: var(--acid);
  color: #101114;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button-outline {
  border-color: var(--line-dark);
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: start;
  overflow: hidden;
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 50% 56%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.58), rgba(3, 10, 18, 0.22) 46%, rgba(3, 10, 18, 0.03) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 112px));
  margin-inline-start: clamp(56px, 12vw, 188px);
  margin-inline-end: auto;
  padding: clamp(118px, 14vh, 158px) 0 260px;
  text-shadow: 0 4px 26px rgba(3, 10, 18, 0.38);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.03;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.language-toggle:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero-stats {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.62);
  backdrop-filter: blur(16px);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 22px;
  border-inline-end: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-inline-end: 0;
}

.hero-stats span {
  display: block;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
}

.hero-stats p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.intro-band,
.section {
  position: relative;
}

.intro-band {
  background: var(--paper);
  color: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 5vw, 78px);
  padding: 88px 0;
  align-items: center;
}

.intro-copy-block {
  display: grid;
  align-content: center;
}

.intro-copy-text {
  max-width: 620px;
  margin: 24px 0 0;
}

.intro-visual {
  display: grid;
  gap: 12px;
}

.intro-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #101114;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(20, 17, 12, 0.16);
}

.intro-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.intro-image:hover img,
.intro-image:focus-visible img {
  transform: scale(1.03);
}

.intro-image:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.intro-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fffaf0;
  overflow: hidden;
}

.intro-badges div {
  padding: 18px;
  border-inline-end: 1px solid var(--line-dark);
}

.intro-badges div:last-child {
  border-inline-end: 0;
}

.intro-badges span {
  color: var(--danger);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.intro-badges p {
  margin: 4px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.intro-copy-text,
.performance-copy > p,
.places-copy > p,
.service-grid > div > p,
.final-grid p,
.proof-copy > p {
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 740px;
  margin-bottom: 34px;
}

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

.ride-section,
.models-section,
.service-section {
  background: var(--paper);
  color: var(--ink);
}

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

.reason-card,
.model-card,
.service-panel,
.upgrade-strip,
.proof-media,
.color-grid figure {
  border-radius: 8px;
}

.reason-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: 360px minmax(260px, 1fr);
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(20, 17, 12, 0.08);
}

.reason-lightbox {
  display: block;
  width: 100%;
  height: 360px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.reason-card img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.reason-card img.surface-bike-image {
  object-position: center 72%;
}

.reason-lightbox:hover img,
.reason-lightbox:focus-visible img {
  transform: scale(1.03);
}

.reason-lightbox:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.reason-card div {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 8px;
  padding: 24px;
}

.reason-card h3 {
  margin: 0;
  align-self: start;
}

.reason-card p {
  margin: 0;
}

.reason-card p,
.model-card li {
  color: var(--muted-dark);
  line-height: 1.65;
}

.accent-card {
  background: #101114;
  color: #fff;
}

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

.proof-section,
.performance-section,
.places-section,
.interest-section,
.final-cta {
  background: #101114;
}

.performance-grid,
.places-grid,
.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.performance-grid {
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 4vw, 64px);
}

.proof-copy > p,
.performance-copy > p,
.places-copy > p,
.final-grid p {
  color: var(--muted);
}

.proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.proof-copy {
  max-width: 760px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
}

.proof-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.proof-metrics span {
  color: var(--acid);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
}

.proof-metrics p,
.fine-print {
  color: var(--muted);
}

.fine-print {
  font-size: 13px;
  line-height: 1.6;
}

.proof-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-card img {
  display: block;
  width: 100%;
  background: #dfe9f6;
}

.proof-card figcaption {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.proof-card strong {
  color: #fff;
  font-size: 18px;
}

.proof-card span {
  color: var(--muted);
  line-height: 1.65;
}

.proof-note {
  max-width: 760px;
  margin: 18px 0 0;
}

.proof-media img {
  border-radius: 6px;
}

.performance-lightbox {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.performance-lightbox:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.performance-lightbox:hover img,
.performance-lightbox:focus-visible img {
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.03);
}

.performance-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 58%;
  background: #08090b;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, filter 220ms ease;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.spec-list dt {
  color: var(--acid);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.model-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  background: #fffaf0;
  border: 1px solid var(--line-dark);
  padding: 18px;
}

.featured-model {
  background: #101114;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.model-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.model-topline p {
  margin: 0;
  font-weight: 800;
}

.model-topline span {
  color: var(--danger);
  font-weight: 800;
  white-space: nowrap;
}

.featured-model .model-topline span {
  color: var(--acid);
}

.model-card img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  background: #efeadf;
  border-radius: 6px;
}

.model-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-inline-start: 18px;
  flex: 1;
}

.featured-model li {
  color: var(--muted);
}

.upgrade-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background: #e6dccb;
  color: var(--ink);
}

.upgrade-strip p {
  margin: 0 8px 0 0;
  font-weight: 800;
}

.upgrade-strip span {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 700;
}

.spec-accordion {
  margin-top: 18px;
}

.spec-compare {
  margin-top: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fffaf0;
  overflow: hidden;
}

.spec-compare-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
}

.spec-compare-heading .section-kicker {
  margin: 0;
}

.spec-compare-heading h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.spec-table-scroll {
  overflow-x: auto;
}

.spec-compare-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.spec-compare-table th,
.spec-compare-table td {
  width: 20%;
  padding: 14px 16px;
  border-inline-start: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: start;
  vertical-align: top;
  line-height: 1.45;
}

.spec-compare-table tr:last-child th,
.spec-compare-table tr:last-child td {
  border-bottom: 0;
}

.spec-compare-table thead th {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.spec-compare-table tbody th {
  color: var(--danger);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-compare-table tbody td {
  color: var(--muted-dark);
  font-size: 14px;
}

.spec-compare-table th:first-child,
.spec-compare-table td:first-child {
  border-inline-start: 0;
}

.color-section {
  background: #17191d;
}

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

.color-grid figure {
  margin: 0;
  overflow: hidden;
  background: #0d0e11;
  border: 0;
}

.color-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.86 / 1;
  object-fit: cover;
  background: #0d0e11;
}

.color-grid figure:nth-child(-n + 5) img {
  transform: scale(1.055);
  transform-origin: center;
}

.color-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

.places-stack {
  display: grid;
  gap: 34px;
}

.places-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.places-copy .section-kicker,
.places-copy h2 {
  grid-column: 1;
}

.places-copy p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.places-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(170, 255, 54, 0.75) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.places-gallery::-webkit-scrollbar {
  height: 10px;
}

.places-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.places-gallery::-webkit-scrollbar-thumb {
  background: var(--acid);
  border-radius: 999px;
}

.place-tile {
  flex: 0 0 330px;
  position: relative;
  height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #0b0c0f;
  color: #fff;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.place-tile-wide {
  flex-basis: min(680px, 72vw);
}

.place-tile-tall {
  flex-basis: min(390px, 46vw);
}

.place-tile-landscape {
  flex-basis: min(560px, 62vw);
}

.place-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.place-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  opacity: 0.95;
}

.place-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 15px;
  font-weight: 800;
  text-align: start;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.place-tile:hover img,
.place-tile:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.place-tile:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
}

.lightbox-frame {
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  background: #050607;
  box-shadow: var(--shadow);
}

.lightbox-frame figcaption {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  inset-inline-end: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--acid);
  color: #101114;
}

.service-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fffaf0;
}

.service-panel div {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  border-inline-end: 1px solid var(--line-dark);
}

.service-panel div:last-child {
  border-inline-end: 0;
}

.service-panel span {
  color: var(--danger);
  font-size: 54px;
  font-weight: 800;
}

.service-panel p {
  margin: 4px 0 0;
  color: var(--muted-dark);
  font-weight: 800;
}

.size-accordion {
  grid-column: 1 / -1;
}

.size-accordion summary,
.spec-accordion summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #101114;
  color: #fffaf0;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(20, 17, 12, 0.1);
}

.size-accordion summary::-webkit-details-marker,
.spec-accordion summary::-webkit-details-marker {
  display: none;
}

.size-accordion summary::marker,
.spec-accordion summary::marker {
  content: "";
}

.size-accordion summary:focus-visible,
.spec-accordion summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.summary-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  color: #101114;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.size-accordion[open] .summary-icon,
.spec-accordion[open] .summary-icon {
  transform: rotate(45deg);
}

.size-details {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.size-chart-card,
.size-table-card {
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fffaf0;
  overflow: hidden;
}

.size-chart-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #111;
}

.size-chart-card figcaption {
  padding: 14px 16px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.size-tables {
  display: grid;
  gap: 14px;
}

.size-table-card {
  padding: 18px;
}

.size-table-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.table-scroll {
  overflow-x: auto;
}

.size-table-card table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
}

.size-table-card th,
.size-table-card td {
  padding: 12px 10px;
  border-top: 1px solid var(--line-dark);
  text-align: start;
  white-space: nowrap;
}

.size-table-card thead th {
  color: var(--muted-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.size-table-card tbody th {
  color: var(--danger);
  font-size: 18px;
}

.final-cta {
  padding: 90px 0;
}

.interest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-bottom: 84px;
}

.interest-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.interest-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.interest-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field,
.upgrade-field {
  display: grid;
  gap: 8px;
}

.field span,
.upgrade-field legend {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(185, 255, 74, 0.4);
  border-color: var(--acid);
}

.upgrade-field {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.upgrade-field legend {
  padding: 0 6px;
}

.upgrade-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.upgrade-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--acid);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.final-grid {
  justify-content: space-between;
}

.final-grid > div {
  max-width: 720px;
}

.final-button {
  min-height: 58px;
  padding-inline: 28px;
  direction: ltr;
  unicode-bidi: isolate;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #07080a;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(3, 10, 18, 0.58), rgba(3, 10, 18, 0.22) 46%, rgba(3, 10, 18, 0.03) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.46));
}

html[dir="rtl"] .hero-content {
  margin-inline-start: auto;
  margin-inline-end: clamp(56px, 12vw, 188px);
}

html[dir="rtl"] .upgrade-strip p {
  margin: 0 0 0 8px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .reason-grid,
  .color-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark {
    font-size: 15px;
  }

  .brand-sub,
  .nav-cta {
    display: none;
  }

  .language-toggle {
    min-height: 38px;
    padding: 8px 12px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: min(100% - 28px, 720px);
    margin-inline: auto;
    padding: 116px 0 260px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .hero-stats div {
    padding: 15px;
  }

  .hero-stats div:nth-child(2) {
    border-inline-end: 0;
  }

  .hero-stats div:nth-child(1),
  .hero-stats div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .proof-head,
  .performance-grid,
  .service-grid,
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    order: -1;
  }

  .intro-badges {
    grid-template-columns: 1fr;
  }

  .intro-badges div {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .intro-badges div:last-child {
    border-bottom: 0;
  }

  .places-copy {
    grid-template-columns: 1fr;
  }

  .places-copy .section-kicker,
  .places-copy h2,
  .places-copy p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-grid,
  .section {
    padding: 70px 0;
  }

  .reason-grid,
  .model-grid,
  .color-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .reason-card div {
    grid-template-rows: auto auto;
  }

  .reason-card img {
    height: 300px;
  }

  .reason-lightbox {
    height: 300px;
  }

  .proof-metrics,
  .service-panel {
    grid-template-columns: 1fr 1fr;
  }

  .proof-media {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .places-gallery {
    gap: 10px;
    padding-bottom: 16px;
  }

  .place-tile,
  .place-tile-wide,
  .place-tile-tall,
  .place-tile-landscape {
    flex-basis: min(82vw, 360px);
    height: 380px;
  }

  .service-panel div:nth-child(2),
  .service-panel div:nth-child(4) {
    border-inline-end: 0;
  }

  .service-panel div:nth-child(1),
  .service-panel div:nth-child(2),
  .service-panel div:nth-child(3),
  .service-panel div:nth-child(4) {
    border-bottom: 1px solid var(--line-dark);
  }

  .size-details {
    grid-template-columns: 1fr;
  }

  .size-chart-card img {
    max-height: 420px;
  }

  .final-grid {
    align-items: stretch;
  }

  .interest-grid {
    margin-bottom: 62px;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .hero-stats p {
    font-size: 12px;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .places-gallery {
    margin-inline: calc(var(--gutter) * -0.5);
    padding-inline: calc(var(--gutter) * 0.5);
  }
}
