:root {
  --primary: #1a4b8c;
  --primary-dark: #0f3a6b;
  --primary-light: #2a6bb0;
  --secondary: #f8b81f;
  --secondary-dark: #e5a50a;
  --success: #28a745;
  --danger: #dc3545;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --border-radius: 8px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--gray-900);
  line-height: 1.6;
  background-color: var(--gray-100);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-cta .badge {
  background-color: var(--secondary);
  color: var(--gray-900);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gray-900);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-700);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-trust {
  display: flex;
  gap: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  font-size: 20px;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--gray-800);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.step p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Form Section */
.form-section {
  padding: 60px 0;
  background: var(--gray-100);
}

.form-container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 22px 30px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.form-header h2 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
}

.form-header p {
  opacity: 0.9;
  font-size: 14px;
}

form {
  padding: 20px 24px;
}

.form-panel {
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: visible;
}

.form-panel h3 {
  background: var(--gray-100);
  padding: 10px 16px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
  border-radius: 8px 8px 0 0;
}

.panel-icon {
  margin-right: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Airport autocomplete wrapper inside claim form */
.form-airport-wrap {
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-700);
}

.form-group input,
.form-group select {
  padding: 9px 12px;
  border: 2px solid #c6ccd2;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-family);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.rebooked-info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e40af;
  line-height: 1.5;
  margin: 0 16px;
}

/* Signature Pad */
.signature-area {
  padding: 0 20px 20px;
}

.signature-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.signature-label label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 14px;
}

.signature-hint {
  font-size: 12px;
  color: var(--gray-500);
}

.signature-pad-container {
  background: var(--white);
  border: 2px solid #c6ccd2;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 100%;
  height: 200px;
}

.signature-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  touch-action: none;
  cursor: crosshair;
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--gray-300);
}

.btn-small {
  padding: 6px 12px;
  font-size: 13px;
}

.terms-box {
  background: var(--gray-100);
  padding: 15px 20px;
  margin: 0 20px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  font-size: 14px;
  color: var(--gray-700);
}

.terms-box a {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.checkbox-wrapper {
  padding: 0 20px 20px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.1);
}

.checkbox-wrapper label {
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-wrapper a {
  color: var(--primary);
  text-decoration: underline;
}

.form-footer {
  text-align: center;
  margin-top: 30px;
}

.privacy-note {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 15px;
}

.btn-primary,
a.btn-primary {
  background: var(--secondary);
  color: var(--gray-900);
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
a.btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  width: 100%;
  max-width: 400px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--gray-800);
}

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

.testimonial-card {
  background: var(--gray-100);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 14px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--gray-800);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  background: var(--gray-100);
  padding: 30px;
  border-radius: 12px;
}

.about-stat {
  text-align: center;
}

.about-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 5px;
}

.about-label {
  font-size: 14px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--gray-800);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 28px;
  line-height: 1;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--gray-800);
}

.contact-item p {
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 3px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-form p {
  color: var(--gray-700);
  margin-bottom: 20px;
  font-size: 15px;
}

.simple-contact input,
.simple-contact textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-size: 15px;
}

.simple-contact input:focus,
.simple-contact textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.simple-contact button {
  width: 100%;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--gray-800);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-100);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

.faq-item p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 15px;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-800);
  font-size: 13px;
  color: var(--gray-500);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  color: var(--gray-500);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: sticky;
  top: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: var(--gray-800);
}

.modal-body {
  margin-top: 20px;
}

.modal-body h3 {
  color: var(--primary);
  margin: 20px 0 10px;
}

.modal-body h4 {
  color: var(--gray-800);
  margin: 15px 0 5px;
}

.modal-body ul {
  padding-left: 20px;
  margin: 10px 0;
  color: var(--gray-700);
}

.modal-body p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ============================================= */
/* MOBILANPASSNING */
/* ============================================= */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-cta .badge {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .hero {
    padding: 40px 0 50px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-trust {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    max-width: 100%;
  }
  
  .form-header h2 {
    font-size: 24px;
  }
  
  .form-header p {
    font-size: 14px;
  }
  
  form {
    padding: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .signature-pad-container {
    height: 180px;
  }
  
  .signature-label {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .terms-box {
    margin: 0 15px 15px;
    padding: 12px 15px;
  }
  
  .checkbox-wrapper {
    padding: 0 15px 15px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-stats {
    padding: 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .modal-content {
    margin: 10% 15px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .signature-pad-container {
    height: 150px;
  }
  
  h2 {
    font-size: 28px !important;
    margin-bottom: 30px !important;
  }
  
  .form-panel h3 {
    font-size: 16px;
    padding: 12px 15px;
  }
  
  .btn-primary {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
}
/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* Logo as link — remove default anchor styling */
a.logo {
  text-decoration: none;
}

/* Nav active state — underline indicator */
.nav-menu a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

/* Nav CTA button in navbar */
.nav-cta .btn-small,
.nav-cta-item .btn-small {
  padding: 7px 16px;
  font-size: 14px;
  border-radius: 30px;
}

/* Small button variant */
.btn-small {
  padding: 8px 18px;
  font-size: 14px;
}

/* Hamburger button */
.nav-cta-mobile {
  display: none; /* shown only on mobile */
}

/* Mobile CTA hover — mörkare gul */
.nav-cta-mobile:hover {
  background: var(--secondary-dark) !important;
  color: var(--gray-900) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Hamburger → X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — full-bleed photo + frosted glass card
   ============================================================ */
.hero {
  min-height: 560px;
  background-image:
    linear-gradient(rgba(0, 0, 15, 0.45), rgba(0, 0, 15, 0.45)),
    url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 15%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* Remove old decorative circle on new hero */
.hero::before {
  display: none;
}

/* Wide card anchored to bottom of hero */
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 32px 36px 28px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 10;
}

.hero-card h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.25;
}

.hero-card .hero-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Inputs + button in a single row */
.hero-form-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Wrapper takes the flex slot so dropdown can overflow */
.hero-input-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Pill-shaped inputs inside hero card */
.hero-input {
  width: 100%;
  padding: 13px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-size: 15px;
  font-family: var(--font-family);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
}
.hero-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Hero CTA button — auto width, sits inline */
.hero-card .btn-primary.hero-check-btn {
  white-space: nowrap;
  border-radius: 50px;
  padding: 13px 28px;
  font-size: 15px;
  flex-shrink: 0;
}

/* Trust badges — single row below form */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 16px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-600);
}
.hero-badge-highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   INNER PAGE HERO — used on /om-oss, /sa-fungerar-det, etc.
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CTA BLOCK — yellow strip at bottom of inner pages
   ============================================================ */
.cta-block {
  background: var(--secondary);
  padding: 64px 0;
  text-align: center;
}
.cta-block-inner h2 {
  font-size: 32px;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.cta-block-inner p {
  font-size: 17px;
  color: var(--gray-800);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Blå knapp för gul bakgrund (cta-block) */
.btn-cta-dark {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn-cta-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* ============================================================
   VALUES GRID — /om-oss
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.value-card .value-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   COMPENSATION TABLE — /sa-fungerar-det
   ============================================================ */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comp-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}
.comp-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-700);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--gray-100); }
.comp-amount {
  font-weight: 700;
  color: var(--primary);
}
.comp-sek {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
  color: var(--gray-600);
}

/* ============================================================
   THANK YOU PAGE — /tack
   ============================================================ */
.tack-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.tack-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.tack-section h1 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}
.tack-section p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--gray-300);
  line-height: 1;
  margin-bottom: 16px;
}
.error-section h2 {
  font-size: 28px;
  color: var(--gray-800);
  margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Mobile CTA always visible in header — compact, no shadow, no underline */
  .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 5px 9px !important;
    margin-left: auto;
    margin-right: 8px;
    white-space: nowrap;
    box-shadow: none;
    text-decoration: none;
  }

  /* Hamburger visible — larger tap target */
  .nav-hamburger {
    display: flex;
    padding: 10px;
    margin-right: -4px;
  }

  /* Desktop nav hidden on mobile — drawer takes over */
  .nav-menu { display: none !important; }

  /* Hero — card at bottom, taller hero so more photo shows above */
  .hero {
    padding-bottom: 20px;
    min-height: 520px;
    background-position: center 20%;
    align-items: flex-end;
  }
  .hero-card {
    border-radius: 12px;
    padding: 24px 20px 20px;
  }
  .hero-card h1 {
    font-size: 22px;
  }
  .hero-form-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-input {
    width: 100%;
  }
  .hero-card .btn-primary.hero-check-btn {
    width: 100%;
    text-align: center;
  }

  /* Inner page hero */
  .page-hero {
    padding: 48px 0;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero p {
    font-size: 15px;
  }

  /* Values grid → single column */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* CTA block */
  .cta-block-inner h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-card h1 {
    font-size: 21px;
  }
  .page-hero h1 {
    font-size: 24px;
  }
  .tack-section h1, .error-section h2 {
    font-size: 26px;
  }
}

/* ── Dropdown navigation ──────────────────────────────────────────── */

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s;
}
.nav-link:hover,
.nav-link.active { color: var(--primary); }

.chevron {
  font-size: .55rem;
  vertical-align: middle;
  margin-left: 3px;
  display: inline-block;
  transition: transform .2s;
}
.has-dropdown:hover .chevron,
.has-dropdown.open   .chevron { transform: rotate(180deg); }

/* Desktop dropdown */
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  /* padding-top bridges the visual gap — hover area is seamless */
  padding: 8px 0 6px;
  margin-top: 4px;
  list-style: none;
  z-index: 300;
  transition: opacity 0.12s, visibility 0.12s;
  transition-delay: 0.25s;
}
/* Invisible bridge above dropdown so gap doesn't break hover */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: .875rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #f0f4f8;
  color: var(--primary);
}

/* Show on hover (desktop) — no delay when appearing */
@media (min-width: 769px) {
  .has-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }
}

/* CTA nav button */
.nav-cta-item { margin-left: 8px; }
.nav-cta-btn  { white-space: nowrap; }

/* ── Article page layout ──────────────────────────────────────────── */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding: 40px 0 64px;
}
@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 48px;
  }
  /* Sidebar goes BELOW article content on mobile, not above */
  .article-sidebar { order: 2; position: static; }
  /* Hide sidebar CTA on mobile — bottom banner covers it */
  .article-sidebar { display: none; }
}

/* Article meta strip: updated date + reading time */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -8px 0 24px;
  padding: 10px 0 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-500);
}
.article-meta-item { white-space: nowrap; }
.article-meta-sep { color: var(--gray-400); }
.article-author-link {
  color: var(--primary-600, #1a4b8c);
  text-decoration: none;
  font-weight: 500;
}
.article-author-link:hover { text-decoration: underline; }

/* Table of Contents */
.article-toc {
  background: var(--gray-100);
  border-left: 4px solid var(--primary-600, #1a4b8c);
  padding: 18px 22px;
  margin: 0 0 32px;
  border-radius: 4px;
}
.article-toc-title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-700, #374151);
  margin: 0 0 10px;
}
.article-toc ol {
  margin: 0;
  padding-left: 22px;
  list-style: decimal;
}
.article-toc li {
  margin: 4px 0;
  line-height: 1.5;
}
.article-toc a {
  color: var(--primary-700, #1a3a6b);
  text-decoration: none;
}
.article-toc a:hover { text-decoration: underline; }

/* H2 anchor offset for sticky nav (scroll margin) */
.article-body h2[id] { scroll-margin-top: 90px; }

/* Sticky mobile CTA */
.article-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
}
.article-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.article-sticky-cta-text strong { font-size: 15px; color: var(--gray-800, #1f2937); }
.article-sticky-cta-text span { display: block; font-size: 13px; color: var(--gray-600); }
.article-sticky-cta-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .article-sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* Author page */
.author-hero {
  background: var(--gray-100);
  padding: 56px 0 40px;
}
.author-hero-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.author-avatar {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}
.author-hero h1 { margin: 0 0 6px; }
.author-role {
  color: var(--gray-600);
  font-weight: 500;
  margin: 0 0 8px;
}
.author-credentials {
  color: var(--gray-500);
  font-size: 15px;
  margin: 0;
  max-width: 640px;
}
.author-bio { padding: 48px 0; }
.author-bio p { max-width: 720px; margin-bottom: 16px; line-height: 1.7; }
.author-articles {
  padding: 48px 0 72px;
  background: var(--gray-50, #fafafa);
}
.author-article-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.author-article-item a {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.author-article-item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.author-article-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--primary-700, #1a3a6b);
}
.author-article-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}

/* Article images always responsive */
.article-body img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  /* Smaller H1 on mobile */
  .article-body h1 { font-size: 1.5rem; line-height: 1.25; margin-bottom: 16px; }
  .article-body h2 { font-size: 1.15rem; margin: 28px 0 10px; }
  .article-body h3 { font-size: 1rem; }

  /* Tighter layout padding */
  .article-layout { padding: 16px 0 40px; }

  /* CTA banner more compact */
  .cta-banner { padding: 28px 20px; }
  .cta-banner h2 { font-size: 1.2rem; }

  /* Blockquote slimmer */
  .article-body blockquote { padding: 12px 14px; font-size: .9rem; }

  /* Breadcrumb wrap */
  .breadcrumb { white-space: normal; line-height: 1.8; }
}

.article-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin: 36px 0 12px;
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 28px 0 10px;
}
.article-body p  { margin-bottom: 16px; line-height: 1.8; color: var(--gray-700); }
.article-body ul,
.article-body ol { margin: 0 0 16px 24px; color: var(--gray-700); line-height: 1.8; }
.article-body li { margin-bottom: 6px; }
.article-body a  { color: var(--primary-light); }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: var(--gray-900); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .9rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-body th {
  background: var(--primary); color: #fff; padding: 10px 14px; text-align: left;
}
.article-body td {
  padding: 9px 14px; border-bottom: 1px solid var(--gray-200);
}
.article-body tr:nth-child(even) td { background: var(--gray-100); }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  margin: 24px 0;
  padding: 14px 20px;
  background: #ebf4ff;
  color: var(--gray-700);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--primary-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 6px; }

/* Sidebar */
.article-sidebar { position: sticky; top: 96px; }

.cta-box {
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.cta-box h3 { font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.cta-box p  { font-size: .875rem; opacity: .9; margin-bottom: 20px; line-height: 1.55; color: #fff; }
.cta-box .btn-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--gray-900);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: .95rem;
}
.cta-box .btn-cta:hover { background: var(--secondary-dark); }

/* Related articles (sidebar) */
.related-articles {
  margin-top: 24px;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 20px 20px 16px;
}
.related-articles h3 { font-size: .95rem; margin-bottom: 12px; color: var(--gray-900); }
.related-articles ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.related-articles li { border-top: 1px solid var(--gray-200); padding-top: 8px; }
.related-articles li:first-child { border-top: none; padding-top: 0; }
.related-articles a { font-size: .875rem; color: var(--primary); text-decoration: none; line-height: 1.4; display: block; }
.related-articles a:hover { text-decoration: underline; }

/* CTA banner (bottom of article) */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  margin-top: 48px;
}
.cta-banner h2 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.cta-banner p  { opacity: .9; margin-bottom: 28px; font-size: 1rem; color: #fff; }
.cta-banner .btn-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--gray-900);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
}
.cta-banner .btn-cta:hover { background: var(--secondary-dark); }

/* Article FAQ */
.article-faq { margin-top: 44px; }
.article-faq h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
}
.faq-question {
  padding: 10px 18px;
  font-weight: 500;
  cursor: pointer;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 14px 18px;
  background: var(--gray-100);
  font-size: .9rem;
  line-height: 1.75;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
}

/* Mobile dropdown toggle — override to display-based (no hover delay on mobile) */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: var(--gray-100);
    padding: 4px 0 4px 16px;
    min-width: 0;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .nav-cta-item { margin: 8px 0 4px; }
}

/* ============================================================
   MOBILE NAV DRAWER — slide-in panel system
   ============================================================ */

/* Drawer hidden always — only shown on mobile when .open */
.nav-drawer {
  display: none;
}

@media (max-width: 768px) {
  .nav-drawer {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    overflow: hidden;
    z-index: 98;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-drawer.open { display: block; }

  /* ── Panels ── */
  .nav-panel {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-panel-main {
    transform: translateX(0);
  }
  .nav-panel-main.slide-out {
    transform: translateX(-30%);
  }
  .nav-panel-sub {
    transform: translateX(100%);
  }
  .nav-panel-sub.slide-in {
    transform: translateX(0);
  }

  /* ── Sub-panel header (back + title) ── */
  .nav-panel-header {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 16px 0 4px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
  }
  .nav-panel-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    flex-shrink: 0;
  }
  .nav-panel-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
  }

  /* ── Rows (shared by links and trigger buttons) ── */
  .nav-drawer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    height: 56px;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: none;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
  }
  .nav-drawer-row:hover  { background: #f4f6f8; }
  .nav-drawer-row:active { background: var(--gray-100); }
  .nav-drawer-row.active { color: var(--primary); }

  /* "Allt om X" row — tydligare, primärfärg */
  .nav-drawer-row-all {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    height: 52px;
    background: #eef2f7;
    border-bottom: 2px solid var(--gray-200);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .nav-drawer-row-all:hover {
    background: #e0e8f3;
    color: var(--primary-dark);
  }

  /* Right-pointing arrow on trigger rows */
  .nav-drawer-arrow {
    font-size: 22px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1;
  }

}

/* ── Blog index page ───────────────────────────────────────────────────── */

.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 56px 0 48px;
  margin-bottom: 48px;
}
.blog-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.blog-hero-sub {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 560px;
  line-height: 1.55;
}

/* Blog category filter */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.blog-filter-btn {
  padding: 7px 16px;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
}

.blog-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Category badge on card */
.blog-card-category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  background: #eff6ff;
  border-radius: 4px;
  padding: 3px 8px;
  margin: 16px 22px 0;
}

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

.blog-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-date {
  font-size: .78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 18px;
}

.blog-card-read {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: auto;
}

.blog-card:hover .blog-card-read {
  text-decoration: underline;
}

/* ── Flygbolag index ──────────────────────────────────────────────────────── */
.airline-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 56px 0 48px;
  margin-bottom: 48px;
}
.airline-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.airline-hero-sub {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 600px;
  line-height: 1.55;
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.airline-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.airline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.airline-card-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.airline-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.airline-card:hover .airline-card-img {
  transform: scale(1.04);
}

.airline-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.airline-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.airline-card-tagline {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 14px;
}
.airline-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}

/* Airline link grid (used on pillar pages) */
.airline-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.airline-link-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s;
}
.airline-link-card:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.airline-link-name { font-weight: 600; font-size: .95rem; color: var(--gray-900); }
.airline-link-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.4; }
.airline-link-arrow { font-size: .85rem; color: var(--primary); margin-top: auto; padding-top: 8px; }

@media (max-width: 900px) { .airline-link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .airline-link-grid { grid-template-columns: 1fr; } }

@media (max-width: 1024px) {
  .airline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .airline-grid { grid-template-columns: 1fr; }
}

/* Rutt page */
.rutt-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rutt-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rutt-info-card--highlight { border-color: var(--primary); background: var(--primary-lightest, #f0f4ff); }
.rutt-info-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-500); }
.rutt-info-value { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.rutt-rights-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 600px; }
.rutt-rights-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; color: var(--gray-700); }
.rutt-rights-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rutt-airlines { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.rutt-airline-tag { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 6px 14px; font-size: .875rem; font-weight: 500; color: var(--gray-800); text-decoration: none; }
.rutt-airline-tag--link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.rutt-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rutt-link-card { display: flex; justify-content: space-between; align-items: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--border-radius); padding: 14px 18px; text-decoration: none; transition: border-color .15s, box-shadow .15s; }
.rutt-link-card:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.rutt-link-route { font-weight: 600; color: var(--gray-900); font-size: .95rem; }
.rutt-link-amount { font-size: .85rem; color: var(--primary); font-weight: 600; white-space: nowrap; margin-left: 12px; }

@media (max-width: 900px) { .rutt-info-grid { grid-template-columns: repeat(2, 1fr); } .rutt-link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rutt-info-grid { grid-template-columns: 1fr; } .rutt-link-grid { grid-template-columns: 1fr; } }

/* CTA strip at bottom of blog listing */
.blog-cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  margin-bottom: 64px;
  padding: 28px 32px;
}
.blog-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-cta-strip strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.blog-cta-strip span {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.blog-cta-strip .btn-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--gray-900);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-cta-strip .btn-cta:hover { background: var(--secondary-dark); }

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .blog-hero h1 { font-size: 1.75rem; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-hero { padding: 36px 0 32px; margin-bottom: 32px; }
  .blog-hero h1 { font-size: 1.5rem; }
  .blog-cta-strip { padding: 20px; }
  .blog-cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Ersättningskalkylator ─────────────────────────────────────────────────── */

.checker-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  padding: 40px 48px 48px;
}

/* Progress */
.checker-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.step-dot span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e8edf5;
  color: #8a9ab5;
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.step-dot label {
  font-size: .72rem;
  color: #8a9ab5;
  white-space: nowrap;
  transition: color .25s;
}
.step-dot.current span { background: var(--primary); color: #fff; }
.step-dot.current label { color: var(--primary); font-weight: 600; }
.step-dot.done span { background: #22c55e; color: #fff; }
.step-dot.done label { color: #22c55e; }
.step-line {
  flex: 1;
  height: 2px;
  background: #e8edf5;
  min-width: 40px;
  max-width: 80px;
  margin-bottom: 22px;
}

/* Steg-paneler */
.checker-step { display: none; }
.checker-step.active { display: block; }

.step-title { font-size: 1.4rem; margin: 0 0 8px; color: var(--primary-dark); }
.step-sub   { color: #4b5e7a; margin: 0 0 28px; }

/* Flygplats-inputs */
.airport-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}
.airport-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.airport-input-wrap { position: relative; }
.airport-input-wrap input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d4dce9;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.airport-input-wrap input:focus { border-color: var(--primary); }
.airport-arrow {
  font-size: 1.4rem;
  color: var(--primary);
  padding-bottom: 10px;
  text-align: center;
}
.airport-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid #d4dce9;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 200;
  display: none;
  overflow: hidden;
}
.airport-dropdown.open { display: block; }
.airport-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: .93rem;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: background .15s;
}
.airport-option:hover { background: #f0f4fa; }
.airport-option .iata {
  font-weight: 700;
  color: var(--primary);
  min-width: 36px;
}
.airport-option .aname { color: #2d3e56; }

/* Issue-grid (steg 2) */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.issue-card {
  border: 2px solid #d4dce9;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .1s;
}
.issue-card:hover { border-color: var(--primary); background: #f4f7fd; }
.issue-card.selected { border-color: var(--primary); background: #eef3fb; }
.issue-icon { font-size: 2rem; margin-bottom: 10px; }
.issue-label { font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; font-size: .95rem; }
.issue-desc  { font-size: .8rem; color: #5a7090; }

/* Detail-grid (steg 3) */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.delay-card, .notice-card {
  border: 2px solid #d4dce9;
  border-radius: 12px;
  padding: 24px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.delay-card:hover, .notice-card:hover { border-color: var(--primary); background: #f4f7fd; }
.delay-card.selected, .notice-card.selected { border-color: var(--primary); background: #eef3fb; }
.detail-icon  { font-size: 1.8rem; margin-bottom: 10px; }
.detail-label { font-weight: 600; color: var(--primary-dark); font-size: .9rem; }

/* Knappar */
.step-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }

.btn-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--gray-900);
  border: none;
  padding: 13px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
}
.btn-cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-cta:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-back {
  background: none;
  border: none;
  color: #5a7090;
  font-size: .9rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.btn-back:hover { color: var(--primary); }

/* Resultat */
.result-eligible, .result-not-eligible {
  text-align: center;
  padding: 16px 0 8px;
}
.result-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
}
.result-icon--no { background: #ef4444; }
.result-eligible h2 { font-size: 1.6rem; color: var(--primary-dark); margin: 0 0 12px; }
.result-not-eligible h2 { font-size: 1.4rem; color: var(--primary-dark); margin: 0 0 12px; }
.result-eligible h2 strong { color: #22c55e; }
.result-sub { color: #4b5e7a; margin: 0 0 12px; }
.result-disclaimer { font-size: .8rem; color: #7a90aa; margin: 0 0 24px; }
.result-cta { display: inline-block; margin-bottom: 12px; }
.result-fine { font-size: .8rem; color: #7a90aa; margin: 0; }

/* Info-ruta under wizarden */
.checker-info {
  max-width: 720px;
  margin: 40px auto 64px;
}
.checker-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.checker-info-item {
  background: #f4f7fd;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.ci-icon { font-size: 1.8rem; margin-bottom: 12px; }
.checker-info-item h3 { font-size: 1rem; color: var(--primary-dark); margin: 0 0 8px; }
.checker-info-item p  { font-size: .85rem; color: #4b5e7a; margin: 0; line-height: 1.6; }

/* Mobil */
@media (max-width: 700px) {
  .checker-wrap { padding: 24px 20px 32px; margin: 24px 0 0; border-radius: 12px; }
  .airport-row { grid-template-columns: 1fr; }
  .airport-arrow { display: none; }
  .issue-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .checker-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .checker-progress { gap: 0; }
  .step-dot label { display: none; }
  .step-line { min-width: 24px; }
  .step-title { font-size: 1.2rem; }
}

/* ============================================================
   HOMEPAGE — hero amount highlight
   ============================================================ */
.hero-amount {
  color: var(--primary);
}
.hero-amount-sub {
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gray-600);
  vertical-align: middle;
}

/* ============================================================
   HOMEPAGE — Eligibility section
   ============================================================ */
.eligibility-section {
  padding: 80px 0;
  background: var(--gray-100);
}
.eligibility-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 40px;
}
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eligibility-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 22px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.eligibility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.11);
}
.eli-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.eli-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}
.eligibility-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.eligibility-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}
.eli-amount {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 16px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .eligibility-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE — Zero-risk section
   ============================================================ */
.zero-risk-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.zero-risk-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.zero-risk-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.zero-risk-text p {
  font-size: 1rem;
  opacity: .9;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--white);
}
.zero-risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zero-risk-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  opacity: .92;
  color: var(--white);
}
.zero-risk-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}
.zero-risk-box {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 36px 44px;
  text-align: center;
  min-width: 220px;
}
.zr-label {
  font-size: .85rem;
  opacity: .8;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.zr-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.zr-sub {
  font-size: .8rem;
  opacity: .75;
  color: var(--white);
}
@media (max-width: 768px) {
  .zero-risk-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .zero-risk-box { min-width: 0; padding: 28px 24px; }
  .zr-amount { font-size: 3rem; }
}

/* ============================================================
   HOMEPAGE — Why choose us
   ============================================================ */
.why-section {
  padding: 80px 0;
  background: var(--white);
}
.why-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 44px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.why-item p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}
