/* ==========================================================================
   AL PRESTIGE: BRAND DESIGN SYSTEM
   Skräddarsydd efter officiell logotyp: Petrol Navy, Slate Blue och Nordic Sparkle Teal
   ========================================================================== */

/* Self-hostade typsnitt (tidigare fonts.googleapis.com/fonts.gstatic.com).
   Variabla typsnitt, latin-only subset (täcker svenska å/ä/ö), en fil per
   familj täcker alla vikter 400–800 via wght-axeln. Se session.md. */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/outfit-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand Color Palette från logotypen */
  --color-brand-dark: #0e324c;          /* Huvudmörk (Petrol Navy) */
  --color-brand-primary: #153e5c;       /* Djup stålpetrol */
  --color-brand-secondary: #31637e;     /* Slate Blue (Stora stjärnan) */
  --color-brand-teal: #5ca4a9;          /* Sparkle Teal (Mellan/lilla stjärnan) */
  --color-brand-teal-light: #6da6a8;    /* Ljus teal */
  --color-brand-ice: #eef6f7;           /* Iskristall mjuk bakgrund */
  --color-brand-ice-subtle: #f5f9fa;    /* Subtil yta */
  
  /* Text & Ink */
  --color-ink: #0e324c;
  --color-ink-soft: #2c4a60;
  --color-ink-muted: #5e798e;
  --color-paper: #f7fafb;
  --color-paper-warm: #edf4f5;
  --color-white: #ffffff;
  
  /* Accent & Status Colors */
  --color-accent: #5ca4a9;
  --color-accent-hover: #488f94;
  --color-accent-bg: #e6f3f4;
  
  --color-leaf-500: #10b981;
  --color-leaf-600: #059669;
  --color-leaf-bg: #ecfdf5;
  
  --color-star-gold: #e8a735;
  --color-star-bg: #fffbf0;
  
  --color-border: rgba(14, 50, 76, 0.1);
  --color-border-hover: rgba(14, 50, 76, 0.25);
  
  /* Shadows & Glass */
  --shadow-sm: 0 2px 8px rgba(14, 50, 76, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 50, 76, 0.08);
  --shadow-lg: 0 16px 40px rgba(14, 50, 76, 0.12);
  --shadow-glow-teal: 0 0 35px rgba(92, 164, 169, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-paper);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Typography Helpers */
.font-display {
  font-family: var(--font-display);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-secondary);
}

.text-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

@media (min-width: 768px) {
  .text-lead {
    font-size: 1.25rem;
  }
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #0e324c, #1a4968);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: var(--color-brand-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.725rem;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247, 250, 251, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* Logo in Header */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-brand-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Horisontell logotyp: stjärnikon + tydligt ordmärke */
.logo-icon-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.logo-main-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-brand-dark);
  letter-spacing: 0.005em;
  line-height: 1.02;
}

.logo-sub-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-brand-teal);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* Mer luft åt logotypen när desktop-navet inte visas */
@media (max-width: 1319px) {
  .logo-main-text { font-size: 1.5rem; }
  .logo-icon-img { height: 44px; }
}

@media (max-width: 420px) {
  .logo-main-text { font-size: 1.2rem; }
  .logo-sub-text { font-size: 0.62rem; letter-spacing: 0.26em; }
  .logo-icon-img { height: 34px; }
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 1px;
}

@media (min-width: 1320px) {
  .nav-links {
    display: flex;
  }
}

/* Sista nav-posten ("Boka ...") är redundant med CTA-knappen intill, döljs i desktop-navet */
.nav-links > li:last-child {
  display: none;
}

.nav-link {
  padding: 8px 9px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-brand-dark);
  background: var(--color-brand-ice);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-brand-dark);
  padding: 7px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  background: var(--color-brand-ice);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-phone {
    display: inline-flex;
  }
}

.header-phone:hover {
  color: var(--color-brand-teal);
  background: var(--color-accent-bg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand-secondary));
  color: #fff;
  border-color: var(--color-brand-dark);
  box-shadow: 0 4px 14px rgba(14, 50, 76, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #164363, #3a7594);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 50, 76, 0.28);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-brand-teal), #488f94);
  color: #fff;
  border-color: var(--color-brand-teal);
  box-shadow: 0 4px 14px rgba(92, 164, 169, 0.3);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #488f94, #367277);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 164, 169, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--color-brand-dark);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--color-brand-secondary);
  background: var(--color-brand-ice);
  color: var(--color-brand-secondary);
}

.btn-white {
  background: #ffffff;
  color: var(--color-brand-dark);
}

.btn-white:hover {
  background: var(--color-brand-ice);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-brand-dark);
  cursor: pointer;
}

@media (min-width: 1320px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 890;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover {
  background: var(--color-brand-ice);
}

/* Sections */
.section {
  padding: 64px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
}

.section-dark {
  background: linear-gradient(160deg, #0b2233 0%, #0e324c 100%);
  color: #fff;
}

.section-warm {
  background: var(--color-brand-ice);
}

.section-white {
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 8px;
  color: var(--color-brand-dark);
}

.section-dark .section-title {
  color: #fff;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Hero Section */
.hero {
  padding: 40px 0 64px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(92, 164, 169, 0.12), transparent 55%), var(--color-paper);
}

@media (min-width: 992px) {
  .hero {
    padding: 60px 0 96px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: stretch;
  }
  /* Textkolumnen centreras vertikalt mot bilden */
  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  margin-bottom: 20px;
}

.stars {
  color: var(--color-star-gold);
  display: inline-flex;
  gap: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-brand-dark);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

.hero-title .highlight {
  color: var(--color-brand-secondary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(92, 164, 169, 0.35);
  border-radius: 4px;
  z-index: -1;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 540px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink-soft);
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-brand-ice);
  color: var(--color-brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Hero – konsekvent vertikal rytm mellan textblocken */
.hero-grid .rating-badge { margin-bottom: 24px; }
.hero-grid .hero-title { margin-bottom: 18px; }
.hero-grid .text-lead {
  max-width: 52ch;
  margin-bottom: 0;
}
.hero-grid .text-lead + .text-lead {
  margin-top: 14px;
}
.hero-grid .hero-usps {
  margin-top: 4px;
  row-gap: 12px;
}

/* Hero Media & Floating Badges */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
}

@media (min-width: 992px) {
  .hero-visual {
    display: flex;
  }
  .hero-image-wrapper {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    min-height: 460px;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual:hover .hero-img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-card-1 {
  bottom: 24px;
  left: -12px;
}

.floating-card-2 {
  top: 24px;
  right: -12px;
  animation-delay: -3s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-icon-rut {
  background: #eef6f7;
  color: var(--color-brand-secondary);
}

.floating-icon-guard {
  background: var(--color-leaf-bg);
  color: var(--color-leaf-600);
}

.floating-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-brand-dark);
}

.floating-sub {
  font-size: 0.775rem;
  color: var(--color-ink-muted);
}

/* Hero Stats Strip */
.stats-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brand-dark);
  margin-top: 2px;
}

.stat-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}

/* ==========================================================================
   INTERACTIVE PRIS- & RUT-KALKYLATOR
   ========================================================================== */
.calc-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-nav-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-brand-ice);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .calc-nav-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.calc-tab-btn {
  padding: 18px 12px;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
}

.calc-tab-btn:hover {
  color: var(--color-brand-dark);
  background: rgba(255, 255, 255, 0.6);
}

.calc-tab-btn.active {
  color: var(--color-brand-dark);
  background: #ffffff;
  border-bottom-color: var(--color-brand-teal);
}

.calc-body {
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .calc-body {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 44px;
    gap: 48px;
  }
}

.calc-pane {
  display: none;
}

.calc-pane.active {
  display: block;
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brand-dark);
  margin-bottom: 12px;
}

.calc-label-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-brand-secondary);
}

/* Custom Sliders */
.range-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #d8e5e9;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-brand-dark);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(14, 50, 76, 0.3);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--color-brand-teal);
}

.range-slider:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 164, 169, 0.35);
  border-radius: var(--radius-full);
}

.range-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(92, 164, 169, 0.35), 0 2px 8px rgba(14, 50, 76, 0.3);
}

.range-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(92, 164, 169, 0.35);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.775rem;
  color: var(--color-ink-muted);
  font-weight: 600;
}

/* Fristående m²-kalkylator (tjänstesidor) */
.sqm-calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

@media (min-width: 820px) {
  .sqm-calc {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding: 36px;
  }
}

.sqm-calc-result {
  background: linear-gradient(160deg, #0b2233 0%, #0e324c 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.sc-result-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.sc-result-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 6px 0 2px;
}

.sc-result-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Prisexempeltabell (flyttstädning, storstädning m.fl.) */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.95rem;
}

.price-table thead th {
  background: var(--color-brand-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  text-align: left;
}

.price-table thead th:last-child {
  text-align: right;
}

.price-table tbody th,
.price-table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
}

.price-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.price-table tbody td {
  text-align: right;
  font-weight: 800;
  color: var(--color-brand-secondary);
  font-family: var(--font-display);
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-paper-warm);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-ink-muted);
  margin-top: 12px;
}

/* Garantibadge, placeras nära pris/CTA */
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-brand-ice);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 20px;
}

.guarantee-badge .guarantee-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.guarantee-badge p {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  line-height: 1.5;
  margin: 0;
}

.guarantee-badge strong {
  color: var(--color-brand-dark);
}

/* Frequency Selectors / Radio Pills */
.freq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 600px) {
  .freq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.freq-pill {
  position: relative;
  cursor: pointer;
}

.freq-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.freq-box {
  border: 1px solid var(--color-border);
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  transition: all var(--transition-fast);
}

.freq-pill:hover .freq-box {
  border-color: var(--color-border-hover);
}

.freq-pill input:checked + .freq-box {
  background: #ffffff;
  border-color: var(--color-brand-secondary);
  box-shadow: 0 0 0 2px var(--color-brand-secondary);
}

.freq-title {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-brand-dark);
}

.freq-price {
  display: block;
  font-size: 0.75rem;
  color: var(--color-brand-teal);
  font-weight: 700;
  margin-top: 4px;
}

/* Window Counters */
.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.counter-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.counter-info p {
  font-size: 0.8rem;
  color: var(--color-ink-muted);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-counter {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-counter:hover {
  background: var(--color-brand-secondary);
  color: #ffffff;
}

.counter-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  min-width: 24px;
  text-align: center;
}

/* Calculator Result Box (Right Column) */
.calc-result-box {
  background: linear-gradient(150deg, #0e324c 0%, #1c4b69 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.calc-result-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(92, 164, 169, 0.25);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.calc-result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.result-service-name {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-teal-light);
}

.result-main-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-top: 8px;
}

.result-main-price span {
  font-size: 1.15rem;
  font-weight: 600;
  color: #87ced3;
}

.result-badge-rut {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: rgba(92, 164, 169, 0.22);
  border: 1px solid rgba(92, 164, 169, 0.5);
  color: #b0e5e8;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.calc-breakdown {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.calc-breakdown-row.highlight {
  color: #ffffff;
  font-weight: 700;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.calc-included-list {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.calc-included-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-included-items {
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

/* ==========================================================================
   CONDITIONS SECTION (Det som är lika oavsett vad du bokar)
   ========================================================================== */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .conditions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.condition-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-fast);
}

.condition-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-brand-teal);
  transform: translateY(-2px);
}

.condition-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.condition-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-brand-teal-light);
  margin-top: 4px;
  margin-bottom: 12px;
}

.condition-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  border-color: var(--color-brand-secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 50, 76, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-brand-dark);
  margin-bottom: 6px;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brand-secondary);
  margin-bottom: 14px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  margin-bottom: 20px;
}

.service-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 500px) {
  .service-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
  font-weight: 600;
}

.service-check-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  flex-shrink: 0;
}

.service-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* Smaller Services Mini Cards */
.mini-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .mini-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mini-service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.mini-service-card:hover {
  border-color: var(--color-brand-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mini-service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.mini-service-sub {
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin-top: 4px;
  margin-bottom: 16px;
}

.mini-service-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mini-service-link:hover {
  color: var(--color-brand-teal);
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
}

.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-dark), var(--color-brand-secondary));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(14, 50, 76, 0.25);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

/* ==========================================================================
   STOCKHOLM LOCATIONS GRID
   ========================================================================== */
.locations-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.loc-pill-btn {
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.loc-pill-btn:hover, .loc-pill-btn.active {
  background: var(--color-brand-dark);
  color: #fff;
  border-color: var(--color-brand-dark);
}

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

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.location-item {
  display: block;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  color: inherit;
}

.location-item:hover {
  border-color: var(--color-brand-secondary);
  background: var(--color-brand-ice);
  transform: translateY(-2px);
}

.location-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-brand-dark);
}

.location-sub {
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  margin-top: 2px;
}

/* ==========================================================================
   MULTI-STEP BOOKING & QUOTE FORM
   ========================================================================== */
.booking-container {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-header {
  background: var(--color-brand-ice);
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 50, 76, 0.1);
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.step-bubble.active {
  background: var(--color-brand-dark);
  color: #ffffff;
}

.step-bubble.completed {
  background: var(--color-leaf-600);
  color: #ffffff;
}

.booking-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brand-dark);
}

.booking-body {
  padding: 36px 32px;
}

@media (max-width: 600px) {
  .booking-body {
    padding: 24px 20px;
  }
}

.form-step-pane {
  display: none;
}

.form-step-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (min-width: 600px) {
  .form-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.form-label span.req {
  color: var(--color-brand-teal);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-brand-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-brand-secondary);
  box-shadow: 0 0 0 3px rgba(92, 164, 169, 0.2);
}

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

@media (min-width: 500px) {
  .form-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-paper);
}

.checkbox-card:hover {
  border-color: var(--color-border-hover);
}

.checkbox-card input:checked ~ .checkbox-card-content h3 {
  color: var(--color-brand-secondary);
}

.checkbox-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brand-secondary);
}

.checkbox-card-content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin: 0;
  line-height: 1.35;
}

.checkbox-card-content p {
  font-size: 0.775rem;
  color: var(--color-ink-muted);
}

/* Form Action Buttons */
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* Success Confirmation Screen */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-brand-ice);
  color: var(--color-brand-secondary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-brand-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-brand-ice);
  color: var(--color-brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--color-brand-dark);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  border-top: 1px solid var(--color-brand-ice);
  margin-top: -6px;
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   CHECKLIST MODAL ("Vad ingår i städningen?")
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 50, 76, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 20px 28px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-brand-dark);
}

.btn-modal-close {
  background: var(--color-brand-ice);
  color: var(--color-brand-dark);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 28px;
}

.checklist-room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .checklist-room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.room-box {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.room-box h3 {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-brand-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-ink-soft);
}

.room-box li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(160deg, #0b2233 0%, #0e324c 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Floating Sticky Mobile CTA bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  z-index: 800;
  box-shadow: 0 -4px 16px rgba(14, 50, 76, 0.08);
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
    gap: 10px;
  }
}

.mobile-sticky-bar .btn {
  flex: 1;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--color-brand-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 4px solid var(--color-brand-teal);
  animation: toastSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   SKIP LINK (tangentbords-/skärmläsartillgänglighet)
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 2000;
  background: var(--color-brand-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--color-brand-teal);
  outline-offset: 2px;
}

/* Tydlig tangentbordsfokus-markering överlag */
a:focus-visible,
button:focus-visible,
.location-item:focus-visible,
.calc-tab-btn:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid var(--color-brand-teal);
  outline-offset: 2px;
}

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