:root {
  --bg: #f7f7f7;
  --surface: #ffffff;
  --surface-soft: #f5f7f3;
  --surface-warm: #fffaf1;

  --line: #e4e4e4;
  --line-soft: rgba(31, 43, 32, 0.08);
  --line-primary: rgba(232, 154, 28, 0.22);

  --text: #1f2b20;
  --text-soft: #667364;
  --text-muted: #8a9387;

  --primary: #E89A1C;
  --primary-dark: #c97f10;
  --primary-soft: rgba(232, 154, 28, 0.09);

  --dark: #111111;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-soft: 0 14px 34px rgba(31, 43, 32, 0.06);
  --shadow-hover: 0 18px 42px rgba(31, 43, 32, 0.09);

  --container: 1200px;
  --section-padding: 76px;
  --section-padding-sm: 56px;

  --transition: 0.18s ease;
}

/* =========================================================
   Base
========================================================= */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   Typography
========================================================= */

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.small-note {
  margin: 14px 0 5px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   Buttons
========================================================= */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(232, 154, 28, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-icon {
  gap: 10px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-icon:hover svg {
  transform: translateX(3px);
}

.full-btn {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

/* Hero button variation */

.hero-actions-modern {
  align-items: center;
}

.hero-actions-modern .btn-primary {
  padding-inline: 24px;
}

.hero-actions-modern .btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.hero-actions-modern .btn-secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
}

/* =========================================================
   Reusable layout
========================================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 42px;
  align-items: center;
}

/* =========================================================
   Reusable cards
========================================================= */

.card,
.service-list-card,
.split-cta-card,
.included-card,
.process-step,
.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.card,
.service-list-card,
.split-cta-card,
.included-card,
.process-step {
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.service-list-card:hover,
.included-card:hover,
.process-step:hover,
.split-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-primary);
}

/* =========================================================
   Forms
========================================================= */

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 154, 28, 0.12);
}

.success-box {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #b6e0c2;
  border-radius: 12px;
  background: #eaf6ed;
  color: #2e6b3e;
  font-size: 14px;
}

.contact-form button {
  margin-top: 10px;
}

.contact-form .small-note,
.form-note {
  text-align: center;
}

.dynamic-field {
  display: none;
  padding: 16px;
  margin: 0 0 16px;
  border: 1px solid rgba(232, 154, 28, 0.18);
  border-radius: 14px;
  background: rgba(232, 154, 28, 0.045);
}

/* =========================================================
   Icon list
========================================================= */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.icon-list strong {
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
}

.icon-list span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   Images
========================================================= */

.process-image {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Header
========================================================= */

.site-header {
  position: relative;
  z-index: 5000;
}

.header-main {
  position: relative;
  z-index: 5001;
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  overflow: visible;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 154, 28, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.logo-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.logo-text {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.logo-tagline {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Main navigation */

.main-nav {
  position: relative;
  z-index: 5002;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: visible;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.01em;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
}

.nav-icon-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 154, 28, 0.16);
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav-icon-link svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.3;
  stroke: currentColor;
}

.nav-icon-link:hover,
.nav-icon-link.active {
  background: rgba(232, 154, 28, 0.14);
  border-color: rgba(232, 154, 28, 0.28);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-icon-link::after {
  display: none !important;
}

/* Dropdown */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  overflow: visible;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-item > a svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  transition: transform var(--transition);
}

.has-dropdown:hover > a svg,
.has-dropdown:focus-within > a svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: -16px;
  z-index: 9999;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 48px rgba(31, 43, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.dropdown a:hover,
.dropdown a:focus {
  background: rgba(232, 154, 28, 0.08);
  color: var(--text);
}

/* Mobile menu button */

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--surface-soft);
  border-color: rgba(232, 154, 28, 0.22);
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   Hero
========================================================= */

.hero,
.page-hero {
  position: relative;
  z-index: 1;
  min-height: 420px;
  padding: 110px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-main {
  background: url('/img/header-main.webp') center/cover no-repeat;
}

.hero-contact {
  background: url('/img/header-contact.webp') center/cover no-repeat;
}

.hero-service {
  background: url('/img/header-service.webp') center/cover no-repeat;
}

.hero-flytt {
  background: url('/img/header-flytt.webp') center/cover no-repeat;
}

.hero-atervinning {
  background: url('/img/header-atervinning.webp') center/cover no-repeat;
}

.hero-kontorsrensning {
  background: url('/img/header-kontorsrensning-malmo.webp') center/cover no-repeat;
}

.hero-dodsbo {
  background: url('/img/header-dodsbo.webp') center/cover no-repeat;
}

.hero-flyttstad {
  background: url('/img/header-flyttstad.webp') center/cover no-repeat;
}

.hero-stadfirma {
  background: url('/img/header-stadfirma.webp') center/cover no-repeat;
}

.hero-hemstad {
  background: url('/img/header-hemstad.webp') center/cover no-repeat;
}

.hero-byggstad {
  background: url('/img/header-byggstad.webp') center/cover no-repeat;
}

.hero-kontorsstadning {
  background: url('/img/header-kontorsstadning.webp') center/cover no-repeat;
}

.hero-storstadning {
  background: url('/img/header-storstadning.webp') center/cover no-repeat;
}

.hero-fonsterputs {
  background: url('/img/header-fonsterputs.webp') center/cover no-repeat;
}

.hero-foretagsatervinning {
  background: url('/img/header-foretagsatervinning.webp') center/cover no-repeat;
}

.hero-kallare {
  background: url('/img/header-tomma-kallare.webp') center/cover no-repeat;
}

.hero-vind {
  background: url('/img/header-tomma-vind.webp') center/cover no-repeat;
}

.hero-aldreboende {
background: url('/img/header-boka-tomning-aldreboende.webp') center/cover no-repeat;
}

.hero-about {
  background: url('/img/header-about.webp') center/cover no-repeat;
}

.hero-offert {
  background: url('/img/header-offert.webp') center/cover no-repeat;
}

.hero-atervinning-mobler {
  background: url('/img/header-boka-mobler.webp') center/cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.42) 42%,
      rgba(0, 0, 0, 0.16) 72%,
      rgba(0, 0, 0, 0.04) 100%
    );
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero p,
.page-hero p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 150px;
}

/* =========================================================
   Trust strip
========================================================= */

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 0 34px;
  background: transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  min-height: 94px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 43, 32, 0.08);
  box-shadow: 0 16px 36px rgba(31, 43, 32, 0.08);
  backdrop-filter: blur(10px);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 154, 28, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg,
.trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 2.3;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.trust-item span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* =========================================================
   Content block
========================================================= */

.content-block {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.content-heading {
  max-width: 430px;
}

.content-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.content-text {
  max-width: 680px;
}

.content-text p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.pricing-section {
  padding: 72px 0;
  background: var(--surface);
}

.pricing-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(232, 154, 28, 0.2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, #ffffff 0%, #fffaf1 100%);
  box-shadow: var(--shadow-soft);
}

.pricing-content h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pricing-content p {
  color: var(--text-soft);
  line-height: 1.7;
}

.pricing-checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 11px;
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.45;
}

.pricing-checklist svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.pricing-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(232, 154, 28, 0.08);
  border: 1px solid rgba(232, 154, 28, 0.16);
  color: var(--text-soft);
  font-size: 14px;
}

.price-card {
  padding: 30px;
  border: 1px solid rgba(31, 43, 32, 0.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 43, 32, 0.08);
  text-align: center;
}

.price-card span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 8px 0 8px;
  color: var(--text);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    padding: 52px 0;
  }

  .pricing-feature {
    padding: 22px;
  }

  .price-card {
    padding: 24px;
  }
}


/* =========================================================
   Service list cards
========================================================= */

.service-list-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
}

.service-list-card {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 154, 28, 0.16);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--primary);
  stroke-width: 2.3;
}

.service-list-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.service-list-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.62;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 850;
}

.card-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform var(--transition);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* =========================================================
   Included checklist
========================================================= */

.included-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.included-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 154, 28, 0.16);
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.included-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.included-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.included-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: var(--text-soft);
  line-height: 1.55;
}

.included-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

/* =========================================================
   Process section
========================================================= */

.process-section {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  min-height: 100%;
  padding: 24px;
}

.process-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--primary-soft);
  border: 1px solid rgba(232, 154, 28, 0.16);
  flex-shrink: 0;
}

.process-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--primary);
  stroke-width: 2.3;
}

.process-icon span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(232, 154, 28, 0.22);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.62;
}

/* =========================================================
   Split CTA
========================================================= */

.split-cta {
  padding: var(--section-padding) 0;
  background: var(--surface);
}

.split-cta h2 {
  margin-top: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.split-cta p,
.split-cta-card p {
  color: var(--text-soft);
  line-height: 1.65;
}

.split-cta-card {
  padding: 28px;
  border-color: rgba(232, 154, 28, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-warm) 100%);
}

/* =========================================================
   CTA section
========================================================= */

.cta-section {
  padding: var(--section-padding) 0;
  background: var(--surface);
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-top: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cta-inner p {
  max-width: 560px;
  margin: 10px auto 24px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================================================
   FAQ / contact sections
========================================================= */

.faq-section,
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-soft);
  line-height: 1.65;
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
  background: var(--dark);
  color: #ddd;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 64px 0;
}

.footer-brand.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(232, 154, 28, 0.09);
  border: 1px solid rgba(232, 154, 28, 0.16);
  box-shadow: none;
}

.footer-brand .logo-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-brand .logo-copy {
  display: grid;
  gap: 2px;
}

.footer-brand .logo-text {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.footer-brand .logo-tagline {
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-text {
  max-width: 380px;
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.4;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.45;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #242424;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   Legacy support
   Behålls tills alla gamla sektioner är bekräftat borta.
========================================================= */

.services {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.booking-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.booking-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-primary);
}

.service-card h3,
.booking-box h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.service-card p,
.booking-box p {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-card a {
  color: var(--primary);
  font-weight: 800;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 154, 28, 0.16);
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.why {
  padding: var(--section-padding) 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.why-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  margin-bottom: 12px;
}

.why-item h4 {
  margin: 8px 0;
  font-weight: 800;
}

.why-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.booking-choice {
  padding: var(--section-padding) 0;
  background: var(--surface);
}

.booking-inner {
  display: flex;
  gap: 30px;
}

.booking-box {
  flex: 1;
  text-align: center;
}

.nav-cta {
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 13px;
  background: var(--primary);
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  box-shadow: 0 10px 22px rgba(232, 154, 28, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1000px) {
  .services-grid,
  .service-list-grid,
  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
    padding: 52px 0 46px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-text {
    max-width: 560px;
  }
}

/* =========================================================
   Modern mobile menu
========================================================= */

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: auto;
    min-height: 70px;
    padding: 13px 20px;
    gap: 14px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .logo-icon img {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .logo-tagline {
    font-size: 11.5px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(31, 43, 32, 0.1);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .main-nav > a,
  .nav-item > a,
  .nav-icon-link {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    font-size: 15px;
    font-weight: 560;
    letter-spacing: -0.01em;
  }

  .main-nav > a:hover,
  .nav-item > a:hover,
  .nav-icon-link:hover,
  .nav-icon-link.active {
    background: rgba(232, 154, 28, 0.08);
    transform: none;
  }

  .nav-item {
    width: 100%;
    min-height: auto;
    display: block;
  }

  .nav-item > a {
    justify-content: space-between;
  }

  .nav-item > a svg {
    width: 16px;
    height: 16px;
  }

  .has-dropdown.is-open > a {
    background: rgba(232, 154, 28, 0.08);
    color: var(--text);
  }

  .has-dropdown.is-open > a svg {
    transform: rotate(180deg);
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 100%;
    margin: 2px 0 8px;
    padding: 4px 0 4px 12px;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(232, 154, 28, 0.22);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 520;
  }

  .dropdown a:hover {
    background: rgba(232, 154, 28, 0.08);
    color: var(--text);
  }

  .nav-icon-link {
    height: auto;
    justify-content: flex-start;
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .nav-icon-link svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
  }

  .nav-icon-link::after {
    content: attr(data-mobile-label);
    display: inline !important;
    font-size: 15px;
    font-weight: 560;
  }

  .grid-2,
  .content-grid,
  .split-cta-inner {
    grid-template-columns: 1fr;
  }

  .booking-inner {
    flex-direction: column;
  }

  .hero,
  .page-hero {
    min-height: 360px;
    padding: 82px 0;
  }

  .content-block,
  .service-list-section,
  .process-section,
  .split-cta,
  .cta-section,
  .faq-section,
  .contact-section,
  .included-section,
  .services,
  .why,
  .booking-choice {
    padding-top: var(--section-padding-sm);
    padding-bottom: var(--section-padding-sm);
  }

  .content-grid {
    gap: 24px;
  }

  .content-heading,
  .content-text {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .hero,
  .page-hero {
    min-height: 320px;
    padding: 74px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .services-grid,
  .service-list-grid,
  .trust-grid,
  .process-grid,
  .footer-inner,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -22px;
    padding-bottom: 30px;
  }

  .trust-grid {
    gap: 10px;
  }

  .trust-item {
    min-height: auto;
    padding: 14px 15px;
    gap: 12px;
    border-radius: 16px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .trust-icon svg,
  .trust-item svg {
    width: 20px;
    height: 20px;
  }

  .trust-item strong {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .trust-item span {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .card,
  .service-list-card,
  .split-cta-card,
  .included-card,
  .process-step,
  .service-card,
  .booking-box {
    padding: 20px;
  }

  .service-card-icon,
  .process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .service-card-icon svg,
  .process-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-list-card h3,
  .process-step h3 {
    font-size: 19px;
  }

  .service-list-card p,
  .process-step p {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .content-grid {
    gap: 18px;
  }

  .content-text p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .site-footer {
    margin-top: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 34px;
  }

  .footer-brand.logo {
    margin-bottom: 14px;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-col li {
    margin-bottom: 8px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .footer-contact {
    margin-top: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: left;
    padding: 18px 0;
  }
}

@media (max-width: 380px) {
  .logo-tagline {
    display: none;
  }

  .logo-text {
    font-size: 1.04rem;
  }
}

/* =========================================================
   Motion preference
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.icon-success {
  color: #2e8b57;
}

.clean-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.check-row svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.check-row.negative svg {
  color: #b93b3b;
}

.check-row.negative {
  background: #fff7f7;
  border-color: #f1caca;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.info-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .check-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }
}