/* ==========================================================================
   BSK Design System — BestilStudenterkorsel.dk
   Brand: #1091EF (trust blue), #FF7F22 (orange CTA only), #0D0F1A (dark)
   Mobile-first. Inter font. Direkte, hype, ungdommelig.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 1rem; line-height: 1.6; color: #222; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; margin-top: 0; }

/* ── Variables ── */
:root {
  --blue: #1091EF;
  --blue-dark: #0b7dd4;
  --blue-light: #e8f4fd;
  --orange: #FF7F22;
  --orange-dark: #e66d10;
  --dark: #0D0F1A;
  --dark-2: #1a1d2e;
  --dark-3: #252840;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 20px rgba(16,145,239,0.2);
  --max-w: 1200px;
  --max-w-sm: 800px;
  --max-w-xs: 680px;
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container--sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 1.25rem; }
.container--xs { max-width: var(--max-w-xs); margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo span {
  color: var(--blue);
}

/* Desktop nav */
.site-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--orange);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
}

.site-nav__cta:hover {
  background: var(--orange-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

/* Hamburger → X animation */
.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__list li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu__list a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.mobile-menu__list a:hover { color: var(--blue); }

.mobile-menu__cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.3;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,127,34,0.3);
}
.btn--cta:hover { background: var(--orange-dark); color: #fff; box-shadow: 0 6px 24px rgba(255,127,34,0.4); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-dark); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: #fff; }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section {
  padding: 5rem 1.25rem;
}

.section--gray { background: var(--gray-50); }
.section--dark { background: var(--dark); color: #fff; }

.section__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section--dark .section__badge {
  background: rgba(16,145,239,0.2);
}

.section__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin: 0 0 3rem;
  line-height: 1.6;
}

.section--dark .section__subtitle { color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .section__title { font-size: 1.75rem; }
  .section__subtitle { font-size: 1rem; margin-bottom: 2rem; }
}

/* ==========================================================================
   HERO (Forside)
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  color: #fff;
  padding: 6rem 1.25rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Confetti/particle dots */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(16,145,239,0.15) 1px, transparent 1px),
    radial-gradient(circle at 85% 30%, rgba(255,127,34,0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(16,145,239,0.1) 1px, transparent 1px),
    radial-gradient(circle at 25% 70%, rgba(255,127,34,0.08) 1px, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(16,145,239,0.08) 1px, transparent 1px);
  background-size: 100% 100%;
  pointer-events: none;
}

.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(16,145,239,0.2);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16,145,239,0.3);
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero__title strong {
  color: var(--orange);
}

.hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: #fff;
  padding: 1.75rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-bar__text {
  text-align: left;
}

.trust-bar__number {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.trust-bar__label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
}

@media (max-width: 640px) {
  .trust-bar__inner { gap: 1.5rem; }
  .trust-bar__icon { width: 36px; height: 36px; font-size: 1rem; }
  .trust-bar__number { font-size: 1.1rem; }
  .trust-bar__label { font-size: 0.75rem; }
}

/* ==========================================================================
   FLEET / CARD GRID
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

.fleet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  overflow: hidden;
}

.fleet-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.fleet-card__image {
  width: 100%;
  height: 180px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gray-400);
}

.fleet-card__stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  z-index: 2;
}

.fleet-card__stamp--orange { background: linear-gradient(135deg, var(--orange), #ff9a4a); }
.fleet-card__stamp--blue { background: linear-gradient(135deg, var(--blue), #3daaf5); }

.fleet-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--gray-900);
}

.fleet-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0 0 1rem;
  flex: 1;
}

.fleet-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fleet-card__feature {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.fleet-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}

.fleet-card__link::after {
  content: '\2192';
  transition: transform 0.2s;
}

.fleet-card:hover .fleet-card__link::after {
  transform: translateX(4px);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-blue);
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(16,145,239,0.08);
  pointer-events: none;
}

.cta-banner__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner__text {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0 0 2rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .cta-banner { padding: 3.5rem 1.25rem; }
  .cta-banner__title { font-size: 1.75rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--gray-900);
  color: #fff;
  padding: 4rem 1.25rem 2rem;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__brand span { color: var(--blue); }

.footer__desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin: 0 0 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li { margin-bottom: 0.6rem; }

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer__legal a:hover { color: #fff; }

/* ==========================================================================
   PAGE HERO (undersider)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 4rem 1.25rem 3rem;
  text-align: center;
}

.page-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .page-hero { padding: 3rem 1.25rem 2rem; }
  .page-hero__title { font-size: 1.75rem; }
}

/* ==========================================================================
   CONTENT PAGES (om os, viden-artikler, juridisk)
   ========================================================================== */
.content-page {
  padding: 3rem 1.25rem 5rem;
}

.content-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.content-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--gray-900);
}

.content-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--gray-900);
}

.content-page p {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.content-page ul, .content-page ol {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.content-page li { margin-bottom: 0.4rem; }

.content-page strong { color: var(--gray-900); }

.content-page a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-page a:hover { color: var(--blue-dark); }

/* Highlight box */
.highlight-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: var(--gray-700);
  margin: 0;
}

/* Feature list with checkmarks */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--gray-900);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
}

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

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.4;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item__question[aria-expanded="true"]::after {
  content: '\2212';
}

.faq-item__answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item__answer.is-open {
  display: block;
}

/* ==========================================================================
   VOGNTYPE DETAIL PAGE
   ========================================================================== */
.detail-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 4rem 1.25rem 3.5rem;
}

.detail-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .detail-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .detail-hero__inner > div:first-child { order: 1; }
  .detail-hero__image { order: 0; height: 200px !important; }
}

.detail-hero__stamp {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.detail-hero__stamp--orange { background: linear-gradient(135deg, var(--orange), #ff9a4a); }
.detail-hero__stamp--blue { background: linear-gradient(135deg, var(--blue), #3daaf5); }

.detail-hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.detail-hero__desc {
  font-size: 1.15rem;
  opacity: 0.8;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.detail-hero__image {
  background: var(--dark-3);
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

@media (max-width: 640px) {
  .detail-hero__title { font-size: 1.75rem; }
  .detail-hero__desc { font-size: 1rem; }
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .features-grid--3col {
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--max-w);
  }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: var(--shadow); }

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-form {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

/* Progress bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.booking-progress__step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}

.booking-progress__step--active {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.booking-progress__step--done {
  background: var(--blue);
  color: #fff;
}

.booking-progress__step-label {
  position: absolute;
  top: calc(100% + 6px);
  font-size: 0.7rem;
  color: var(--gray-400);
  white-space: nowrap;
  font-weight: 500;
}

.booking-progress__step--active .booking-progress__step-label { color: var(--blue); }

.booking-progress__line {
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  max-width: 80px;
  border-radius: 3px;
  transition: background 0.3s;
}

.booking-progress__line--done { background: var(--blue); }

/* Step content */
.booking-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.booking-step__subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0 0 2rem;
}

/* Form fields */
.form-field { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(16,145,239,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Vehicle selection cards in booking */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .vehicle-grid { grid-template-columns: 1fr; }
}

.vehicle-option {
  position: relative;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}

.vehicle-option:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(16,145,239,0.12);
}

.vehicle-option--selected {
  border-color: var(--blue);
  box-shadow: 0 2px 16px rgba(16,145,239,0.2);
  background: var(--blue-light);
}

.vehicle-option__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all 0.2s;
}

.vehicle-option--selected .vehicle-option__check {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.vehicle-option__emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.vehicle-option__name { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.2rem; }
.vehicle-option__desc { font-size: 0.8rem; color: var(--gray-500); margin: 0; }

/* Summary */
.booking-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.booking-summary__row:last-child { border-bottom: none; }
.booking-summary__label { color: var(--gray-500); }
.booking-summary__value { font-weight: 600; color: var(--gray-900); }

.booking-summary__total {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Actions */
.booking-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.booking-actions .btn { flex: 1; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.contact-card__text {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.7;
}

.contact-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================================================
   VIDEN HUB
   ========================================================================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .article-grid { grid-template-columns: 1fr; }
}

.article-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.article-card__tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.article-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.article-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.article-card__link::after { content: ' \2192'; }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8rem;
}

.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs__item { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs__item::after { content: '/'; color: rgba(255,255,255,0.3); }
.breadcrumbs__item:last-child::after { display: none; }
.breadcrumbs a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs__current { color: rgba(255,255,255,0.9); }

/* ==========================================================================
   AVAILABILITY NOTICE
   ========================================================================== */
.availability-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16,145,239,0.1);
  border: 1px solid rgba(16,145,239,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
}

/* ==========================================================================
   GENERIC CONTENT AREA (for page.php)
   ========================================================================== */
.content-area {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.content-area h1 { margin-top: 0; }

.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content a { color: var(--blue); }
.entry-content a:hover { color: var(--blue-dark); }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* Cross-link grid (3 columns on desktop) */
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cross-links-grid { grid-template-columns: 1fr; }
}

/* ── Price Table (by-sider) ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.price-table thead th {
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-600);
}

.price-table tbody tr:hover {
  background: var(--blue-light);
}

.price-table a {
  color: var(--blue);
  font-weight: 600;
}

.price-table a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .price-table { font-size: 0.85rem; }
  .price-table th,
  .price-table td { padding: 0.5rem 0.5rem; }
}

/* ── City links (vogntype → by-sider) ── */
.city-links-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.city-links-list li {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: border-color 0.2s;
}
.city-links-list li:hover {
  border-color: var(--blue);
}
.city-links-list a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.city-links-list a:hover {
  text-decoration: underline;
}
.city-links-list__region {
  color: #6b7280;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}
