:root {
  color-scheme: dark;
  --surface-dim: #131313;
  --surface-lowest: #0e0e0e;
  --surface-low: #1c1b1b;
  --surface: #201f1f;
  --surface-high: #2a2a2a;
  --surface-highest: #353534;
  --surface-bright: #3a3939;
  --primary: #e31837;
  --primary-soft: #ffb3b1;
  --text: #e5e2e1;
  --muted: #c8c6c5;
  --rose-muted: #e6bdbb;
  --outline: rgba(173, 136, 134, 0.18);
  --glow: rgba(227, 24, 55, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-dim);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.carbon {
  background-color: var(--surface-lowest);
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.025) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.025) 75%);
  background-position: 0 0, 0 2px, 2px -2px, -2px 0;
  background-size: 4px 4px;
}

.nav {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(19, 19, 19, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(227, 24, 55, 0.1);
}

.nav-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 52px);
}

.brand {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  color: var(--primary);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(229, 226, 225, 0.72);
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.2em;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #92001d);
  color: #fffaf9;
}

.btn-secondary {
  background: rgba(58, 57, 57, 0.42);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--outline);
  backdrop-filter: blur(12px);
}

.btn-block {
  width: 100%;
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 4vw, 52px);
}

.container {
  margin: 0 auto;
  max-width: var(--max);
}

.eyebrow {
  color: var(--primary);
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.display {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(48px, 9vw, 108px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.headline {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.red {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(227, 24, 55, 0.34);
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  max-width: 620px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 52px) 70px;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(0.9) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media::after {
  background:
    linear-gradient(90deg, var(--surface-dim) 0%, rgba(19, 19, 19, 0.72) 36%, transparent 78%),
    linear-gradient(0deg, var(--surface-dim) 0%, transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 840px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-index {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(74px, 12vw, 150px);
  font-weight: 900;
  letter-spacing: -0.07em;
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  user-select: none;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
}

.media-frame {
  aspect-ratio: 16 / 10;
  background: var(--surface-high);
  overflow: hidden;
  position: relative;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 700ms ease, opacity 700ms ease;
  width: 100%;
}

.media-frame:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.play {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(227, 24, 55, 0.42);
  display: grid;
  height: 72px;
  inset: 50% auto auto 50%;
  place-items: center;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 72px;
}

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

.stat {
  background: var(--surface-low);
  box-shadow: inset 3px 0 0 var(--primary);
  padding: 18px;
}

.stat b {
  color: var(--primary-soft);
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
}

.stat span,
.metric span,
.date-card span {
  color: var(--rose-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.schedule {
  display: grid;
  gap: 14px;
}

.schedule-row {
  align-items: center;
  background: var(--surface-low);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  padding: 22px;
  transition: background 180ms ease;
}

.schedule-row:hover {
  background: var(--surface-high);
}

.date-block {
  min-width: 92px;
  text-align: center;
}

.date-block b {
  color: #fff;
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.date-block span,
.availability {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.toolbar {
  align-items: center;
  background: var(--surface-low);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 34px;
  padding: 8px;
}

.chip {
  background: var(--surface-high);
  border: 0;
  border-radius: 4px;
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 11px 14px;
  text-transform: uppercase;
}

.chip.is-active {
  background: var(--primary);
  color: #fff;
}

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

.car-card {
  background: var(--surface-low);
  color: var(--text);
  display: block;
  overflow: hidden;
  transition: background 180ms ease, transform 180ms ease;
}

.car-card:hover {
  background: var(--surface-high);
  transform: translateY(-3px);
}

.car-card img {
  aspect-ratio: 4 / 3;
  filter: grayscale(0.75);
  object-fit: cover;
  transition: filter 500ms ease, transform 500ms ease;
  width: 100%;
}

.car-card:hover img {
  filter: grayscale(0.1);
  transform: scale(1.04);
}

.car-card-body {
  padding: 20px;
}

.card-title {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.telemetry {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.telemetry-row {
  display: grid;
  gap: 6px;
}

.telemetry-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bar {
  background: var(--surface-highest);
  height: 4px;
  overflow: hidden;
}

.bar i {
  background: var(--primary);
  display: block;
  height: 100%;
}

.price {
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-hero {
  min-height: 860px;
}

.hud {
  bottom: 40px;
  display: flex;
  gap: 14px;
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  z-index: 2;
}

.metric {
  background: rgba(42, 42, 42, 0.48);
  backdrop-filter: blur(12px);
  min-width: 126px;
  padding: 20px;
}

.metric b {
  color: #fff;
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 30px;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: 2fr 1fr 1fr;
}

.gallery img {
  height: 260px;
  object-fit: cover;
  width: 100%;
}

.gallery img:first-child {
  grid-row: span 2;
  height: 534px;
}

.checkout-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
}

.form-section {
  margin-bottom: 42px;
}

.form-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.step {
  align-items: center;
  background: var(--surface-highest);
  border-radius: 999px;
  color: var(--primary-soft);
  display: grid;
  font-weight: 900;
  height: 32px;
  place-items: center;
  width: 32px;
}

.date-grid,
.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.date-card {
  background: var(--surface-lowest);
  border: 0;
  box-shadow: inset 0 -2px 0 transparent;
  color: var(--text);
  cursor: pointer;
  min-height: 112px;
  padding: 18px;
  text-align: left;
}

.date-card.is-selected {
  background: var(--surface-low);
  box-shadow: inset 0 -2px 0 var(--primary);
}

.date-card b {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 32px;
  margin: 6px 0;
}

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

.field label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select {
  background: var(--surface-lowest);
  border: 0;
  border-bottom: 1px solid var(--outline);
  color: var(--text);
  outline: 0;
  padding: 14px 4px;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--primary);
}

.summary {
  background: var(--surface-low);
  position: sticky;
  top: 92px;
}

.summary img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.summary-body {
  padding: 24px;
}

.line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}

.line.total {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.note {
  background: var(--surface-low);
  color: var(--muted);
  line-height: 1.6;
  padding: 18px;
}

.footer {
  background: var(--surface-lowest);
  color: rgba(229, 226, 225, 0.66);
  padding: 34px clamp(18px, 4vw, 52px);
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.footer p {
  margin: 8px 0 0;
}

.newsletter-form {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-content {
  background: var(--surface-low);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 860px;
  padding: clamp(24px, 4vw, 42px);
}

.page-content h2,
.page-content h3 {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-transform: uppercase;
}

.admin-main {
  padding: 116px clamp(18px, 4vw, 52px) 72px;
}

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

.admin-card,
.admin-panel {
  background: var(--surface-low);
  padding: 22px;
}

.admin-card b {
  color: #fff;
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.admin-card span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 10px;
  text-transform: uppercase;
}

.admin-panels {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 26px;
}

.admin-table {
  border-collapse: collapse;
  width: 100%;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--rose-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--text);
  font-size: 14px;
}

.admin-table tr {
  background: rgba(255, 255, 255, 0.018);
}

.admin-table tr + tr td {
  box-shadow: inset 0 10px 0 var(--surface-low);
}

.badge {
  background: var(--surface-highest);
  color: var(--primary-soft);
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 8px;
  text-transform: uppercase;
}

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

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  background: var(--surface-lowest);
  border: 0;
  border-bottom: 1px solid var(--outline);
  color: var(--text);
  outline: 0;
  padding: 12px 4px;
}

.admin-form label {
  color: var(--muted);
  display: grid;
  font-size: 10px;
  font-weight: 900;
  gap: 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.import-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.import-options label {
  align-items: center;
  background: var(--surface-lowest);
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 12px;
}

.status-message {
  background: rgba(227, 24, 55, 0.14);
  color: #fff;
  margin: 18px 0;
  padding: 14px 16px;
}

.public-status {
  margin: 92px auto 0;
  max-width: var(--max);
  width: calc(100% - clamp(36px, 8vw, 104px));
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .split,
  .checkout-grid,
  .footer-grid,
  .admin-panels,
  .gift-block,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hud {
    display: none;
  }

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

  .gallery img,
  .gallery img:first-child {
    height: 260px;
  }
}

/* ─── Media badge ──────────────────────────────────────────── */
.media-badge {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 900;
  left: 14px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  position: absolute;
  text-transform: uppercase;
}

/* ─── Schedule CTA wrap ────────────────────────────────────── */
.availability-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

/* ─── Gift block ───────────────────────────────────────────── */
.gift-block {
  align-items: center;
  background: var(--surface-low);
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  position: relative;
}

.gift-card-wrap {
  display: flex;
  justify-content: center;
  perspective: 900px;
}

.gift-card {
  background: linear-gradient(135deg, #1c1b1b 0%, #0e0e0e 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px var(--glow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 28px 32px;
  position: relative;
  rotate: 2deg;
  transition: rotate 500ms ease, transform 500ms ease, box-shadow 500ms ease;
  width: 100%;
}

.gift-card:hover {
  box-shadow: 0 48px 100px rgba(0,0,0,0.6), 0 0 80px var(--glow);
  rotate: 0deg;
  transform: translateY(-4px);
}

.gift-card-top {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.gift-card-brand {
  color: rgba(255,255,255,0.36);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gift-card-divider {
  background: rgba(255,255,255,0.08);
  height: 1px;
  margin: 10px 0;
  width: 100%;
}

.gift-card-title {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.gift-card-glow {
  background: radial-gradient(circle, rgba(227,24,55,0.22), transparent 70%);
  border-radius: 50%;
  height: 200px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  background: var(--surface-high);
  padding: 40px;
  position: relative;
}

.testimonial-quote {
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 72px;
  left: 18px;
  line-height: 1;
  opacity: 0.18;
  position: absolute;
  top: 12px;
}

.testimonial-author {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-avatar {
  background: var(--surface-highest);
  border: 1px solid rgba(227, 24, 55, 0.28);
  border-radius: 50%;
  flex-shrink: 0;
  height: 44px;
  width: 44px;
}

.testimonial-name {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-role {
  color: var(--rose-muted);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-container {
  max-width: 860px;
}

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

.faq-item {
  background: var(--surface-low);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-item summary {
  color: #fff;
  cursor: pointer;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  list-style: none;
  padding: 22px 24px;
  position: relative;
  text-transform: uppercase;
  transition: color 160ms ease;
  user-select: none;
}

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

.faq-item summary::after {
  color: var(--primary);
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 24px 22px;
}

.faq-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Package cards ────────────────────────────────────────── */
.packages-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  background: var(--surface-low);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.package-card:hover {
  background: var(--surface-high);
  box-shadow: inset 0 -3px 0 var(--primary);
}

.package-header {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.package-laps {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.package-laps small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 4px;
}

.package-details {
  flex: 1;
}

.package-footer {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
}

/* Pagination Styles */
.pagination-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.pagination-wrapper nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pagination-wrapper nav span,
.pagination-wrapper nav a {
  padding: 6px 12px;
  font-size: 13px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  min-width: 36px;
  text-align: center;
}

.pagination-wrapper nav a:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

.pagination-wrapper nav span[aria-current="page"] {
  background: #e31837;
  color: white;
  border-color: #e31837;
  font-weight: 600;
}

.pagination-wrapper nav span[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f3f4f6;
}

@media (max-width: 620px) {
  .nav-actions .btn-secondary {
    display: none;
  }

  .hero {
    align-items: end;
  }

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

  .stats-grid,
  .fleet-grid,
  .date-grid,
  .field-grid,
  .newsletter-form,
  .import-options,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  
  .pagination-wrapper nav span,
  .pagination-wrapper nav a {
    padding: 5px 9px;
    font-size: 12px;
    min-width: 32px;
  }
}
