:root {
  --bg: #f6efe4;
  --surface: rgba(255, 250, 244, 0.86);
  --surface-strong: #fff8ef;
  --text: #1d1a17;
  --muted: #655d55;
  --line: rgba(29, 26, 23, 0.12);
  --accent: #ff7a1a;
  --accent-deep: #cc5310;
  --dark: #1a2624;
  --teal: #5cc6b6;
  --shadow: 0 22px 60px rgba(34, 26, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(92, 198, 182, 0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.22), transparent 28%),
    linear-gradient(180deg, #faf4eb 0%, #f5ede0 48%, #fff8ee 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

textarea {
  resize: vertical;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 2.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 244, 235, 0.78);
  border-bottom: 1px solid rgba(29, 26, 23, 0.05);
  padding-top: env(safe-area-inset-top);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: clamp(96px, 10vw, 140px);
  height: auto;
  display: block;
}

.section-heading h2,
.hero h1,
.cta-panel h2,
.page-intro h1 {
  font-family: "Space Grotesk", sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a:not(.button) {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a.is-active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

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

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9448);
  box-shadow: 0 18px 30px rgba(255, 122, 26, 0.28);
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.hero {
  display: grid;
  gap: 1.3rem;
  padding: 4rem 0 3rem;
}

.hero-banner {
  width: fit-content;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(53, 161, 198, 0.35);
  border-radius: 999px;
  background: rgba(228, 255, 244, 0.72);
  font-weight: 800;
}

.hero-banner span {
  margin-left: 0.85rem;
  color: #1d7ae9;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-search-card {
  padding: 2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #4fb0c8, #4b9eb9);
}

.hero-switch-option {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.hero-switch-option strong {
  display: block;
  font-size: 1rem;
}

.hero-switch-option span {
  font-size: 0.92rem;
}

.hero-switch-option.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 24px rgba(27, 43, 54, 0.16);
}

.hero-switch-option.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.hero-panel-logo {
  width: clamp(130px, 16vw, 210px);
  margin: 2.2rem auto;
}

.hero-search-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(34, 26, 17, 0.14);
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.hero-search-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ca0b9, #4fb0c8);
  color: #fff;
  font-weight: 800;
}

.hero-search-copy {
  display: grid;
  gap: 0.1rem;
  flex: 1;
}

.hero-search-copy strong {
  font-size: 1rem;
}

.hero-search-copy span {
  color: #8b837b;
}

.hero-search-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.9rem;
  font-weight: 700;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-chip-row span {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: #edf6f6;
  color: #245261;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-offer {
  position: relative;
  padding: 1rem 0 0;
}

.hero-offer::before,
.hero-offer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(176, 245, 204, 0.45);
  z-index: -1;
}

.hero-offer::before {
  inset: -1rem auto auto 35%;
  width: 220px;
  height: 220px;
}

.hero-offer::after {
  right: -2rem;
  bottom: 0;
  width: 210px;
  height: 140px;
}

.hero-offer h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1;
  max-width: 12ch;
}

.hero-offer h1 span {
  color: #1d7ae9;
}

.hero-benefits {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #243231;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -0.12rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b8f4cf;
  color: #1d5b39;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-car-stage {
  position: relative;
  min-height: 220px;
  margin-top: 1rem;
}

.hero-car-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  height: 180px;
}

.hero-car-visual::before {
  content: "";
  position: absolute;
  left: 38px;
  right: 28px;
  bottom: 44px;
  height: 58px;
  border-radius: 34px 54px 18px 18px;
  background: linear-gradient(135deg, #8e1024, #d23649 60%, #821325);
  box-shadow: inset 0 -10px 16px rgba(0, 0, 0, 0.18);
}

.hero-car-visual::after {
  content: "";
  position: absolute;
  left: 94px;
  right: 92px;
  bottom: 88px;
  height: 44px;
  border-radius: 44px 56px 10px 10px;
  background: linear-gradient(135deg, #991429, #d93d50);
  clip-path: polygon(10% 100%, 22% 0, 85% 2%, 100% 100%);
}

.hero-car-window {
  position: absolute;
  left: 132px;
  right: 130px;
  bottom: 97px;
  height: 25px;
  border-radius: 18px 22px 8px 8px;
  background: rgba(221, 239, 244, 0.78);
  clip-path: polygon(8% 100%, 18% 8%, 84% 8%, 100% 100%);
}

.hero-car-wheel {
  position: absolute;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #202326;
  border: 8px solid #d7dddf;
  box-shadow: inset 0 0 0 8px #575f63;
}

.hero-car-wheel-left {
  left: 86px;
}

.hero-car-wheel-right {
  right: 70px;
}

.hero-stats article,
.info-card,
.review-card,
.process-grid article {
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.65);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #53493f;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.benefit-grid,
.process-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.info-card,
.process-grid article {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.info-card span,
.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 122, 26, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
}

.info-card h3,
.process-grid h3,
.experience-list h3,
.car-copy h3,
.review-card strong {
  margin: 1rem 0 0.55rem;
}

.info-card p,
.process-grid p,
.experience-copy p,
.experience-list p,
.car-copy p,
.review-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.car-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(29, 26, 23, 0.08);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.car-card.featured {
  transform: translateY(-10px);
}

.car-visual {
  position: relative;
  min-height: 220px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.car-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 28%;
  width: 68%;
  height: 64px;
  border-radius: 32px 44px 22px 26px;
  background: linear-gradient(135deg, #f8f8f8, #cdd6d6);
  box-shadow: inset 0 -10px 16px rgba(0, 0, 0, 0.08);
}

.car-visual::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 23%;
  width: 56%;
  height: 34px;
  border-radius: 18px 28px 12px 14px;
  background: rgba(21, 31, 30, 0.85);
}

.car-visual span {
  position: relative;
  z-index: 1;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.car-visual-photo {
  align-items: center;
  justify-content: center;
}

.car-visual-photo::before,
.car-visual-photo::after {
  content: none !important;
  display: none !important;
}

.car-visual-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 290px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
}

.car-visual-photo span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}

.hatchback {
  background:
    radial-gradient(circle at top left, rgba(92, 198, 182, 0.36), transparent 28%),
    linear-gradient(135deg, #d9faf4, #eef8ff);
}

.suv {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.3), transparent 26%),
    linear-gradient(135deg, #ffe4d0, #fff9ef);
}

.sedan {
  background:
    radial-gradient(circle at bottom left, rgba(26, 38, 36, 0.16), transparent 24%),
    linear-gradient(135deg, #e7ebf5, #faf4ea);
}

.car-copy {
  padding: 1.35rem;
}

.card-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-topline strong {
  color: var(--accent-deep);
  font-size: 1.05rem;
}

.car-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.car-copy li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(29, 26, 23, 0.06);
  color: #423931;
  font-size: 0.84rem;
  font-weight: 700;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  padding: 1.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(92, 198, 182, 0.14), rgba(255, 122, 26, 0.14));
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.experience-copy,
.experience-list article {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.82);
}

.experience-list {
  display: grid;
  gap: 1rem;
}

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

.review-card {
  padding: 1.4rem;
  border-radius: 26px;
}

.review-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--dark), #263533);
  color: #fff;
  box-shadow: 0 28px 50px rgba(19, 28, 27, 0.2);
}

.cta-panel .eyebrow {
  color: #ffb98a;
}

.cta-panel h2 {
  margin: 0;
  max-width: 16ch;
}

.site-footer {
  margin-top: 1rem;
  padding: 2rem 0 calc(1.1rem + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #172220, #263634);
  color: #fff;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 1.4rem;
  padding-bottom: 1.3rem;
}

.footer-brand .brand-logo {
  width: clamp(88px, 9vw, 120px);
  margin-bottom: 0.65rem;
}

.footer-brand p,
.footer-newsletter p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column h3 {
  margin: 0 0 0.95rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-form input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
}

.footer-form .button {
  min-height: 42px;
  padding: 0.7rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.1;
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.18);
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 122, 26, 0.16);
  border-color: rgba(255, 185, 138, 0.42);
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1.25rem;
  align-items: start;
  padding: 3rem 0 2rem;
}

.page-intro-copy {
  max-width: 760px;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.page-intro p,
.detail-card p,
.pricing-card p,
.stat-card p,
.faq-item p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.page-intro-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-intro-card,
.detail-card,
.pricing-card,
.stat-card,
.faq-item,
.contact-panel,
.booking-panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.page-intro-card {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.95), rgba(204, 83, 16, 0.92));
  color: #fff;
  box-shadow: 0 28px 60px rgba(204, 83, 16, 0.24);
}

.page-intro-card h2,
.booking-panel h3,
.contact-panel h3,
.pricing-card h3,
.detail-card h3,
.faq-item h3,
.stat-card h3 {
  margin-top: 0;
}

.page-intro-card ul,
.check-list,
.meta-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-intro-card li,
.check-list li,
.meta-list li,
.contact-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-top: 0.75rem;
}

.page-intro-card li::before,
.check-list li::before,
.meta-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.contact-panel-visual {
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: 0 18px 36px rgba(21, 30, 28, 0.08);
  background: #fff;
}

.contact-panel-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.detail-grid,
.pricing-grid,
.stat-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.fleet-grid-wide,
.contact-grid,
.booking-layout,
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

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

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

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

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(29, 26, 23, 0.12);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 16px;
}

.contact-form textarea {
  min-height: 140px;
}

.booking-estimate {
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(92, 198, 182, 0.1));
  border: 1px solid rgba(29, 26, 23, 0.08);
}

.booking-estimate-tag {
  margin: 0;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.booking-estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.booking-estimate-grid span,
.booking-estimate-total span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-estimate-grid strong,
.booking-estimate-total strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.booking-estimate-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(29, 26, 23, 0.08);
}

.booking-estimate-total strong {
  font-size: 1.65rem;
  color: var(--text);
}

.booking-estimate-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.pricing-card .price {
  display: block;
  margin: 0.6rem 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
}

.luxury {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #2d3740, #606f78);
}

.mpv {
  background:
    radial-gradient(circle at bottom left, rgba(92, 198, 182, 0.16), transparent 24%),
    linear-gradient(135deg, #f2f7d7, #fff8e8);
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .hero-layout,
  .experience-layout,
  .fleet-grid,
  .fleet-grid-wide,
  .review-grid,
  .benefit-grid,
  .process-grid,
  .page-intro,
  .detail-grid,
  .pricing-grid,
  .stat-grid,
  .faq-grid,
  .contact-grid,
  .booking-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-offer {
    padding-top: 0;
  }

  .hero-car-stage {
    min-height: 200px;
  }

  .car-card.featured {
    transform: none;
  }

  .trust-strip,
  .cta-panel,
  .split-heading {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .nav {
    min-height: 76px;
  }

  .menu-toggle {
    display: inline-block;
  }

  body.js-ready .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.js-ready .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 0.8rem 1.1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-switch {
    grid-template-columns: 1fr;
  }

  .hero-search-card {
    padding: 1.25rem;
  }

  .hero-search-row {
    padding: 0.75rem 0.85rem;
  }

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

  .hero-actions,
  .page-intro-actions {
    width: 100%;
  }

  .hero-actions .button,
  .page-intro-actions .button,
  .split-heading .button,
  .footer-form .button {
    width: 100%;
  }

  .booking-estimate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .brand-logo {
    width: 104px;
  }

  .section {
    padding: 1.6rem 0;
  }

  .hero {
    padding: 2rem 0 1.5rem;
    gap: 1.1rem;
  }

  .hero-banner {
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero-banner span {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .hero h1,
  .page-intro h1,
  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-text,
  .page-intro p {
    font-size: 0.98rem;
  }

  .availability-card,
  .page-intro-card,
  .cta-panel {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .hero-search-card {
    padding: 1rem;
  }

  .hero-panel-logo {
    width: 120px;
    margin: 1.5rem auto;
  }

  .hero-stats article,
  .info-card,
  .process-grid article,
  .review-card,
  .detail-card,
  .pricing-card,
  .faq-item,
  .contact-panel,
  .booking-panel,
  .stat-card {
    padding: 1rem;
  }

  .availability-card h2,
  .page-intro-card h2 {
    font-size: 1.45rem;
  }

  .booking-form input,
  .booking-form select,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    padding: 0.8rem 0.9rem;
  }

  .trust-strip {
    padding: 1rem;
  }

  .hero-search-row {
    gap: 0.7rem;
  }

  .hero-search-icon {
    width: 44px;
    height: 44px;
  }

  .hero-search-copy strong {
    font-size: 0.94rem;
  }

  .hero-search-copy span {
    font-size: 0.88rem;
  }

  .card-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .car-visual {
    min-height: 180px;
  }

  .mini-features li,
  .car-copy li {
    width: 100%;
    text-align: center;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-icon {
    min-width: 40px;
    min-height: 40px;
  }

  .hero-benefits li {
    padding-left: 2.5rem;
    font-size: 0.96rem;
  }

  .hero-benefits li::before {
    width: 30px;
    height: 30px;
    top: 0;
  }

  .hero-car-stage {
    min-height: 160px;
  }

  .hero-car-visual {
    width: 100%;
    height: 145px;
  }

  .hero-car-visual::before {
    left: 22px;
    right: 20px;
    bottom: 34px;
    height: 48px;
  }

  .hero-car-visual::after {
    left: 62px;
    right: 62px;
    bottom: 72px;
    height: 36px;
  }

  .hero-car-window {
    left: 88px;
    right: 86px;
    bottom: 79px;
    height: 22px;
  }

  .hero-car-wheel {
    width: 52px;
    height: 52px;
    border-width: 6px;
    box-shadow: inset 0 0 0 6px #575f63;
  }

  .hero-car-wheel-left {
    left: 56px;
  }

  .hero-car-wheel-right {
    right: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Restored homepage hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-text {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-stats article {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--muted);
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2rem -1rem auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 198, 182, 0.35), transparent 70%);
}

.availability-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(26, 38, 36, 0.95), rgba(39, 54, 51, 0.95));
  color: #fff;
  box-shadow: 0 28px 60px rgba(19, 28, 27, 0.28);
}

.card-label {
  margin: 0;
  color: #ffb98a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.availability-card h2 {
  margin: 0.7rem 0 1.25rem;
  font-size: 1.9rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.booking-form input,
.booking-form select {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
}

.booking-form option {
  color: #111;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.mini-features li {
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-intro-actions {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 2rem 0 1.5rem;
    gap: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .availability-card {
    padding: 1.15rem;
    border-radius: 24px;
  }

  .availability-card h2 {
    font-size: 1.45rem;
  }

  .hero-actions .button {
    width: auto;
  }
}

.app-launch-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(134, 234, 210, 0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 144, 62, 0.16), transparent 32%),
    linear-gradient(135deg, #f7fbf7, #edf7f2 54%, #f6f2ea);
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: 0 26px 60px rgba(21, 32, 30, 0.08);
}

.app-launch-copy h2 {
  margin: 0.4rem 0 0;
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.app-launch-copy > p:not(.eyebrow) {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.app-launch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.app-launch-points span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 34, 32, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.app-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.app-download-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.app-qr-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: 0 18px 38px rgba(21, 32, 30, 0.06);
}

.app-qr-box {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 0.9rem;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 248, 0.92));
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.app-qr-box img {
  width: min(92px, 100%);
  height: auto;
  object-fit: contain;
}

.app-qr-copy strong {
  display: block;
  margin: 0;
  font-size: 1.05rem;
}

.app-qr-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.store-badge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.store-badge {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: 0 18px 38px rgba(21, 32, 30, 0.06);
  text-decoration: none;
}

.store-platform {
  display: inline-flex;
  align-self: start;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 93, 53, 0.08);
  color: #0e5d35;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-badge img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

.store-badge small {
  color: #c95b14;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.app-device-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.2rem;
}

.app-device-wrap::before,
.app-device-wrap::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4e5757, #202727);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.app-device-wrap::before {
  top: 5.2rem;
  height: 3.6rem;
}

.app-device-wrap::after {
  top: 9.5rem;
  height: 5.2rem;
}

.app-device {
  position: relative;
  overflow: hidden;
  width: min(100%, 398px);
  padding: 1rem 1rem 1.1rem;
  border-radius: 52px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #050707, #1b2121 74%, #0a0d0d);
  box-shadow:
    0 34px 72px rgba(18, 26, 25, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.22);
}

.app-device::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #030505, #0d1212);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 4px 8px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.app-device::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 3;
}

.app-device-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.65rem 1rem 0.95rem;
  color: #fff;
}

.app-device-top strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.app-device-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.app-device-pill {
  align-self: flex-start;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.app-device-body {
  position: relative;
  border-radius: 32px;
  padding: 1.2rem;
  background: linear-gradient(180deg, #0e5d35, #10683d 26%, #fbfcfb 26%, #fbfcfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(13, 21, 20, 0.1);
}

.app-device-note {
  margin: 0;
  padding: 1.2rem 0 1.5rem;
  color: #f7fffb;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.app-device-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.app-device-cards article {
  min-height: 190px;
  padding: 1.2rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f3f7f5);
  box-shadow: 0 16px 30px rgba(21, 30, 28, 0.1);
}

.app-device-cards h3 {
  margin: 0;
  font-size: 1.35rem;
}

.app-device-cards p {
  margin: 0.7rem 0 0;
  color: #5b6a67;
  font-size: 0.94rem;
  line-height: 1.6;
}

.app-device-cards span {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 144, 62, 0.14);
  color: #c95b14;
  font-size: 0.8rem;
  font-weight: 800;
}

.app-device-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.app-device-footer span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 93, 53, 0.08);
  color: #0e5d35;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .app-launch-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .store-badge-list,
  .app-device-cards {
    grid-template-columns: 1fr;
  }

  .app-qr-card {
    grid-template-columns: 1fr;
  }

  .app-launch-actions {
    width: 100%;
  }

  .app-launch-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 560px) {
  .app-launch-panel {
    padding: 1.1rem;
    border-radius: 28px;
  }

  .app-launch-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .app-launch-actions .button {
    width: 100%;
  }

  .store-badge {
    width: 100%;
  }

  .app-device {
    padding: 0.85rem 0.85rem 0.95rem;
    border-radius: 42px;
  }

  .app-device-body {
    padding: 1rem;
    border-radius: 24px;
  }

  .app-device::before {
    width: 112px;
    height: 20px;
  }

  .app-device-top {
    padding-top: 1.45rem;
  }

  .app-device-cards article {
    min-height: auto;
  }
}

.install-popup {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 1000;
  width: min(360px, calc(100vw - 2rem));
}

.install-popup-card {
  position: relative;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(23, 34, 32, 0.08);
  box-shadow: 0 24px 60px rgba(17, 27, 26, 0.22);
  backdrop-filter: blur(14px);
}

.install-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 34, 32, 0.08);
  color: #172220;
  font-size: 1.2rem;
  cursor: pointer;
}

.install-popup-eyebrow {
  margin: 0 0 0.35rem;
  color: #c95b14;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.install-popup-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.install-popup-card > p:last-of-type {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.install-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.install-popup-actions .button {
  min-height: 46px;
}

@media (max-width: 560px) {
  .install-popup {
    inset: auto 0.75rem 0.75rem 0.75rem;
    width: auto;
  }

  .install-popup-actions {
    flex-direction: column;
  }

  .install-popup-actions .button {
    width: 100%;
  }
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.auth-panel,
.auth-side-card,
.empty-state-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.auth-panel h2,
.auth-side-card h3,
.empty-state-card h3 {
  margin-top: 0;
}

.auth-helper {
  margin: 1rem 0 0;
  color: var(--muted);
}

.auth-helper a,
.detail-card a,
.empty-state-card a {
  color: var(--accent-deep);
  font-weight: 800;
}

.flash-message {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
}

.flash-message p {
  margin: 0;
}

.flash-message p + p {
  margin-top: 0.45rem;
}

.flash-success {
  background: rgba(92, 198, 182, 0.14);
  border-color: rgba(23, 114, 93, 0.18);
  color: #195b4f;
}

.flash-error {
  background: rgba(204, 83, 16, 0.1);
  border-color: rgba(204, 83, 16, 0.16);
  color: #8e3d0f;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.account-actions-stack {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.account-stat {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.history-table-shell {
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(29, 26, 23, 0.08);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow);
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.history-table th,
.history-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(29, 26, 23, 0.08);
  text-align: left;
  vertical-align: top;
}

.history-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.history-table td span,
.history-table td small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pending {
  background: rgba(255, 122, 26, 0.12);
  color: #b24c12;
}

.status-confirmed {
  background: rgba(92, 198, 182, 0.15);
  color: #15594d;
}

.status-cancelled {
  background: rgba(167, 54, 43, 0.12);
  color: #8c2e25;
}

.empty-state-card {
  text-align: center;
}

.empty-state-card p {
  max-width: 50ch;
  margin: 0 auto 1.25rem;
  color: var(--muted);
}

.auth-gate-card {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .auth-grid,
  .account-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .account-actions .button {
    width: 100%;
  }
}
