:root {
  --ink: #f6f7f8;
  --muted: #a3a8ae;
  --dim: #767c84;
  --night: #07090b;
  --night-soft: #0d1115;
  --panel: #11161b;
  --panel-raised: #161c22;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.19);
  --amber: #ffb000;
  --amber-light: #ffd36a;
  --green: #29d366;
  --blue: #7dd9ff;
  --danger: #ff6b6b;
  --background: var(--night);
  --foreground: var(--ink);
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 176, 0, 0.08), transparent 26rem),
    var(--night);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  background: var(--amber);
  color: #090a0c;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 9, 11, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--amber);
  color: #090b0d;
  font-size: 17px;
  box-shadow: 0 0 0 5px rgba(255, 176, 0, 0.08);
}

.brand-text {
  line-height: 0.95;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c8ccd0;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--amber-light);
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0d1115;
}

.language-switch button {
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transition: 160ms ease;
}

.language-switch button.active {
  background: var(--ink);
  color: #080a0c;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--amber);
  color: #07090b;
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.header-call:hover {
  transform: translateY(-1px);
  background: var(--amber-light);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 74px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 570px;
  height: 570px;
  right: -190px;
  top: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 0, 0.18);
  box-shadow:
    0 0 0 80px rgba(255, 176, 0, 0.025),
    0 0 0 160px rgba(255, 176, 0, 0.018);
}

.hero-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--amber-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(56px, 7.2vw, 102px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--amber);
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #b9bec4;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #07090b;
  box-shadow: 0 12px 38px rgba(255, 176, 0, 0.17);
}

.button-primary:hover {
  background: var(--amber-light);
}

.button-whatsapp {
  border-color: rgba(41, 211, 102, 0.35);
  background: rgba(41, 211, 102, 0.08);
  color: #aaf1c4;
}

.button-whatsapp:hover {
  border-color: rgba(41, 211, 102, 0.7);
  background: rgba(41, 211, 102, 0.13);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button-small {
  min-height: 43px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 13px;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--dim);
  font-size: 12px;
}

.ride-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 48%),
    #0d1115;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.42);
}

.route-map {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background-image:
    linear-gradient(27deg, transparent 46%, rgba(125, 217, 255, 0.12) 47%, rgba(125, 217, 255, 0.12) 48%, transparent 49%),
    linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.04) 47%, rgba(255, 255, 255, 0.04) 48%, transparent 49%);
  background-size: 160px 130px, 130px 180px;
}

.route-line {
  position: absolute;
  width: 68%;
  height: 45%;
  left: 17%;
  top: 17%;
  border-left: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  border-radius: 0 0 0 80px;
  transform: rotate(-11deg);
  filter: drop-shadow(0 0 8px rgba(255, 176, 0, 0.38));
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 4px solid var(--night);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.32);
}

.route-line::before {
  left: -8px;
  top: -5px;
}

.route-line::after {
  right: -7px;
  bottom: -8px;
}

.ride-card-top {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(41, 211, 102, 0.25);
  border-radius: 999px;
  background: rgba(41, 211, 102, 0.08);
  color: #9ef0bd;
  font-size: 11px;
  font-weight: 800;
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(41, 211, 102, 0.1);
}

.card-city {
  color: #c1c5ca;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ride-summary {
  position: absolute;
  z-index: 3;
  inset: auto 22px 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(8, 11, 14, 0.88);
  backdrop-filter: blur(16px);
}

.ride-summary-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ride-phone {
  display: block;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ride-phone:hover {
  color: var(--amber-light);
}

.ride-price-row {
  margin-top: 21px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.ride-price-row span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.ride-price-row strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.trust-strip {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 5px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

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

.trust-icon {
  color: var(--amber);
}

.trust-item strong {
  display: block;
  font-size: 14px;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12px;
}

.section {
  padding: 118px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-kicker {
  margin: 0 0 15px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-copy {
  max-width: 650px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pricing-section {
  background:
    radial-gradient(circle at 20% 100%, rgba(255, 176, 0, 0.065), transparent 30rem),
    var(--night-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: stretch;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.price-cell {
  min-height: 194px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.price-cell:last-child {
  border-right: 0;
}

.price-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.price-value {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price-value small {
  margin-left: 4px;
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 0;
}

.price-formula {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.65;
}

.estimator {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #171d23, #101419);
}

.estimator-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.estimator h3 {
  margin: 0;
  font-size: 20px;
}

.estimator-minutes {
  color: var(--amber);
  font-size: 16px;
  font-weight: 900;
}

.range {
  width: 100%;
  height: 6px;
  margin: 45px 0 18px;
  accent-color: var(--amber);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 10px;
}

.estimate-total {
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.estimate-total span {
  color: var(--muted);
  font-size: 12px;
}

.estimate-total strong {
  color: var(--amber-light);
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.example-price {
  margin: 18px 0 0;
  padding: 15px 16px;
  border: 1px solid rgba(125, 217, 255, 0.18);
  border-radius: 12px;
  background: rgba(125, 217, 255, 0.055);
  color: #bfeaff;
  font-size: 12px;
  line-height: 1.55;
}

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

.service-card {
  min-height: 285px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 0, 0.32);
  background: var(--panel-raised);
}

.service-number {
  color: var(--amber);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.service-card svg {
  margin: 42px 0 24px;
  color: var(--amber-light);
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-section {
  padding-top: 40px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  padding: 58px;
  border: 1px solid rgba(255, 176, 0, 0.23);
  border-radius: 32px;
  background:
    linear-gradient(125deg, rgba(255, 176, 0, 0.13), transparent 44%),
    var(--panel);
}

.contact-panel::after {
  content: "SWERTE";
  position: absolute;
  right: -24px;
  bottom: -45px;
  color: rgba(255, 255, 255, 0.022);
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.contact-panel h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(39px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-panel p {
  max-width: 570px;
  margin: 22px 0 0;
  color: #aeb4ba;
  line-height: 1.7;
}

.contact-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qr-card {
  position: relative;
  z-index: 2;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0c1014;
}

.qr-image-wrap {
  padding: 15px;
  border-radius: 15px;
  background: white;
}

.qr-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.qr-title {
  margin: 18px 0 0;
  font-size: 16px;
}

.qr-copy {
  margin: 7px 0 14px !important;
  color: var(--dim) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.download-vcard {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 800;
}

.blog-section {
  background: #090c0f;
}

.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.blog-top .section-heading {
  margin-bottom: 0;
}

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

.blog-card {
  min-height: 280px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.blog-date {
  color: var(--amber);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 31px 0 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.blog-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.blog-content {
  margin-top: auto !important;
  padding-top: 22px;
  color: #c8ccd1 !important;
  border-top: 1px solid var(--line);
}

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

.social-card {
  min-height: 92px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  color: #b8bdc2;
}

.social-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.social-card strong {
  display: block;
  font-size: 13px;
}

.social-card span {
  display: block;
  margin-top: 3px;
  color: var(--dim);
  font-size: 10px;
}

.site-footer {
  padding: 55px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 60px;
}

.footer-description {
  max-width: 390px;
  margin: 17px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
  color: #c2c6ca;
  font-size: 13px;
}

.footer-list a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #666d74;
  font-size: 10px;
}

.admin-page {
  min-height: 100vh;
  padding: 36px 0 80px;
  background:
    radial-gradient(circle at 80% 0, rgba(255, 176, 0, 0.07), transparent 32rem),
    var(--night);
}

.admin-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.admin-header {
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.admin-header h1 {
  margin: 24px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.05em;
}

.admin-header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-account {
  text-align: right;
  color: var(--muted);
  font-size: 12px;
}

.admin-account a {
  display: inline-block;
  margin-top: 9px;
  color: var(--amber);
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 20px;
  align-items: start;
}

.admin-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.admin-panel h2 {
  margin: 0 0 24px;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

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

.field label {
  color: #c3c7cc;
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #090c0f;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--amber);
}

.checkbox-field {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c4c8cd;
  font-size: 12px;
}

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

.admin-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.status-message {
  margin: 0 0 15px;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(255, 176, 0, 0.09);
  color: var(--amber-light);
  font-size: 12px;
}

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

.post-row {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c1014;
}

.post-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.post-row h3 {
  margin: 0;
  font-size: 15px;
}

.post-row p {
  margin: 6px 0 0;
  color: var(--dim);
  font-size: 11px;
}

.post-state {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.post-state.published {
  background: rgba(41, 211, 102, 0.09);
  color: #9cf0bb;
}

.row-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--amber-light);
  cursor: pointer;
  padding: 0;
  font-size: 11px;
  font-weight: 800;
}

.text-button.danger {
  color: #ff8e8e;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--dim);
  text-align: center;
  font-size: 12px;
}

.access-denied {
  width: min(620px, calc(100% - 40px));
  margin: 100px auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.access-denied h1 {
  margin: 0;
}

.access-denied p {
  color: var(--muted);
  line-height: 1.6;
}

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

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero {
    padding-top: 135px;
  }

  .ride-card {
    min-height: 430px;
  }

  .pricing-layout,
  .contact-panel,
  .admin-layout {
    grid-template-columns: 1fr;
  }

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

  .qr-card {
    max-width: 340px;
  }

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

@media (max-width: 700px) {
  .header-inner {
    width: min(100% - 24px, 1240px);
    height: 68px;
  }

  .brand-text small {
    display: none;
  }

  .header-call {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .header-call span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 55px;
  }

  .hero-inner,
  .trust-strip,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .admin-shell {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .ride-card {
    min-height: 390px;
    border-radius: 22px;
  }

  .ride-card-top {
    padding: 20px;
  }

  .ride-summary {
    inset: auto 14px 14px;
    padding: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 5px 0;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .price-cell {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-cell:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .blog-grid,
  .socials,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .contact-panel {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .contact-links {
    display: grid;
  }

  .blog-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 35px;
  }

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

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-account {
    text-align: left;
  }

  .admin-panel {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 9px;
  background: var(--amber);
  color: #07090b;
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-150%);
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--night-soft);
  color: var(--ink);
  cursor: pointer;
}

.language-link {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.language-link:hover {
  border-color: var(--line-strong);
  color: var(--amber-light);
}

.local-section {
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.014);
}

.local-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.local-copy {
  max-width: 720px;
  margin: 0;
}

.seo-content-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 52px;
}

.seo-content-grid p,
.article-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.seo-services {
  margin-top: 48px;
}

.service-hero {
  min-height: 640px;
  padding-bottom: 90px;
}

.keyword-card {
  min-height: 350px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 176, 0, 0.22), transparent 13rem),
    linear-gradient(145deg, #161c22, #0b0f13);
}

.keyword-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -85px;
  top: -90px;
  border: 1px solid rgba(255, 176, 0, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 176, 0, 0.035),
    0 0 0 92px rgba(255, 176, 0, 0.018);
}

.keyword-card p,
.keyword-card span {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.keyword-card strong {
  position: relative;
  margin: 8px 0 10px;
  color: var(--amber);
  font-size: clamp(55px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.article-section {
  border-top: 1px solid var(--line);
}

.article-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.article-copy {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.area-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.area-card h2 {
  margin: 0 0 21px;
  font-size: 20px;
}

.area-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.area-card li {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  color: #c8ccd1;
  font-size: 13px;
}

.area-card li:last-child {
  border-bottom: 0;
}

.area-card .icon {
  color: var(--amber);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-plus {
  color: var(--amber);
  font-size: 26px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.social-section {
  padding-top: 10px;
}

.social-placeholder {
  opacity: 0.72;
}

.social-card:hover:is(a) {
  border-color: var(--amber);
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 900;
}

.page-hero,
.article-page-header {
  padding: 165px 0 85px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 0, rgba(255, 176, 0, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.012);
}

.page-hero.compact {
  padding-bottom: 65px;
}

.page-hero h1,
.article-page-header h1 {
  max-width: 940px;
  margin: 17px 0 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.page-hero p:last-child,
.article-lead {
  max-width: 730px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-narrow {
  max-width: 850px;
}

.article-page-header time {
  display: block;
  margin-top: 25px;
  color: var(--dim);
  font-size: 12px;
}

.article-body,
.information-page .article-narrow {
  padding-top: 75px;
  padding-bottom: 100px;
}

.article-body > p {
  margin: 0;
  color: #c7cbd0;
  font-size: 17px;
  line-height: 1.95;
  white-space: pre-line;
}

.article-cta {
  margin-top: 60px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.article-cta h2 {
  margin: 0;
  font-size: 23px;
}

.information-page {
  padding: 0;
}

.information-page h2 {
  margin: 44px 0 12px;
  font-size: 23px;
}

.information-page h2:first-child {
  margin-top: 0;
}

.information-page p {
  color: var(--muted);
  line-height: 1.85;
}

.information-page a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.updated-note {
  margin-top: 50px;
  color: var(--dim) !important;
  font-size: 12px;
}

.footer-cookie-button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c2c6ca;
  cursor: pointer;
  text-align: left;
}

.footer-cookie-button:hover {
  color: var(--amber-light);
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: rgba(17, 22, 27, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.cookie-banner h2 {
  margin: 0;
  font-size: 17px;
}

.cookie-banner p {
  max-width: 610px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consent-dialog {
  width: min(570px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.consent-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(4px);
}

.consent-dialog form {
  padding: 26px;
}

.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dialog-heading h2 {
  margin: 0;
  font-size: 24px;
}

.dialog-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.consent-option {
  margin: 22px 0 0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.consent-option strong {
  display: block;
  font-size: 14px;
}

.consent-option p,
.consent-description {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.consent-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--amber);
}

.always-active {
  color: #9cf0bb;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.consent-dialog .button {
  margin-top: 20px;
}

.login-shell {
  width: min(500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 80px;
}

.login-card {
  margin-top: 65px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.login-card h1 {
  margin: 9px 0 28px;
  font-size: 38px;
  letter-spacing: -0.045em;
}

.login-password {
  margin-top: 16px;
}

.login-submit {
  width: 100%;
  margin-top: 22px;
}

.login-back {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.form-error,
.admin-warning {
  margin: 0 0 22px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 11px;
  background: rgba(255, 107, 107, 0.07);
  color: #ffb1b1;
  font-size: 12px;
}

.admin-warning p {
  margin: 9px 0 0;
  line-height: 1.6;
}

.admin-warning code {
  color: var(--amber-light);
}

.article-editor {
  min-height: 260px !important;
}

.row-actions form,
.admin-account form {
  margin: 0;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.error-card {
  width: min(620px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.error-card h1 {
  margin: 10px 0 15px;
  font-size: clamp(35px, 7vw, 58px);
  letter-spacing: -0.045em;
}

.error-card > p:not(.section-kicker) {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 2;
  }

  .main-nav {
    position: absolute;
    inset: 76px 18px auto;
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(13, 17, 21, 0.99);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }

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

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    grid-column: 3;
  }

  .local-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .area-card {
    max-width: 680px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .language-link,
  .menu-button,
  .header-call {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }

  .header-actions {
    gap: 7px;
  }

  .main-nav {
    inset: 68px 12px auto;
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .keyword-card {
    min-height: 280px;
    padding: 28px;
  }

  .faq-item summary {
    min-height: 72px;
    font-size: 14px;
  }

  .article-page-header,
  .page-hero {
    padding: 125px 0 62px;
  }

  .article-body,
  .information-page .article-narrow {
    padding-top: 55px;
    padding-bottom: 75px;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .text-button {
    grid-column: 1 / -1;
    padding: 8px 0;
  }

  .cookie-actions .button {
    min-width: 0;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 10px;
  }

  .login-card,
  .error-card {
    padding: 26px;
  }
}
