/* =====================================================================
   Idealiskt Städ & Fönsterputsning — huvudstilmall
   Palett hämtad från logotypen: marinblå/cyan + orange/gul accent
   ===================================================================== */

:root {
  /* Färger */
  --navy:        #0e3a5f;
  --navy-deep:   #0a2c49;
  --blue:        #1f7fc2;
  --blue-bright: #2ea3e0;
  --cyan:        #54c4ef;
  --cyan-soft:   #eaf6fd;
  --orange:      #f5921e;
  --orange-deep: #e07a08;
  --yellow:      #ffd21f;

  --ink:         #16293a;
  --text:        #44586a;
  --muted:       #8092a2;
  --line:        #e3ebf2;
  --bg:          #ffffff;
  --bg-soft:     #f4f8fc;

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 18px 50px -18px rgba(14,58,95,.28);
  --shadow-sm:   0 10px 30px -14px rgba(14,58,95,.25);

  --maxw:        1180px;
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.2; font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cfe0ee; }
.section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--blue-bright);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.section-intro { max-width: 640px; color: var(--text); }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px var(--blue); }
.btn--primary:hover { background: var(--navy); }
.btn--accent { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px var(--orange); }
.btn--accent:hover { background: var(--orange-deep); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--outline { background: #fff; border-color: var(--line); color: var(--navy); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

/* =====================================================================
   TOPBAR + HEADER
   ===================================================================== */
.topbar {
  background: var(--navy-deep);
  color: #b9cee0;
  font-size: 13.5px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 44px; flex-wrap: wrap;
}
.topbar a { color: #d9e7f3; }
.topbar a:hover { color: #fff; }
.topbar .tb-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-item svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.topbar .tb-social a { display: inline-grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar .tb-social a:hover { background: var(--blue); }
.topbar .tb-social svg { width: 14px; height: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -16px rgba(14,58,95,.4); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 90px; gap: 24px;
}

/* Logotyp (text-baserad tills riktig logga laddas upp) */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -8px var(--blue);
}
.logo__mark svg { width: 28px; height: 28px; color: #fff; }
.logo__text { line-height: 1.05; }
.logo__text b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.2px; }
.logo__text b .accent { color: var(--orange); }
.logo__text b .mid { color: var(--blue); }
.logo__text b .soft { color: var(--navy); }
.logo__text small { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 15px; color: var(--ink);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); }
.nav-link.active::after { content:""; position:absolute; left:14px; right:24px; bottom:2px; height:3px; border-radius:3px; background: var(--orange); }
.caret { width:7px; height:7px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform: rotate(45deg); margin-top:-3px; transition: transform .2s; opacity:.65; }
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(-135deg); margin-top:2px; }
.mega-toggle { display:none; }

/* Mega-dropdown (desktop) */
.mega {
  position:absolute; top: calc(100% + 8px); left:50%; transform: translateX(-50%) translateY(8px);
  background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow: var(--shadow);
  padding:14px; width:max-content; max-width:92vw; z-index:60;
  opacity:0; visibility:hidden; pointer-events:none; transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.mega::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0); }
.mega__grid { display:grid; grid-template-columns:1fr 1fr; gap:4px; }
.mega__grid--cities { grid-template-columns:1fr; }
.mega__card { display:flex; align-items:center; gap:12px; padding:11px 14px; border-radius:12px; min-width:235px; transition: background .15s; }
.mega__card:hover { background: var(--cyan-soft); }
.mega__ic { width:40px; height:40px; flex:none; border-radius:10px; background:var(--cyan-soft); color:var(--blue); display:grid; place-items:center; transition: background .15s; }
.mega__card:hover .mega__ic { background:#fff; }
.mega__ic svg { width:22px; height:22px; }
.mega__card b { display:block; font-size:14.5px; color:var(--ink); }
.mega__card small { display:block; font-size:12px; color:var(--muted); line-height:1.35; }

.header-cta { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 0 auto; position: relative; transition: .25s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(84,196,239,.35), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #eaf4fb;
  overflow: hidden;
}
.hero::after {
  content:""; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%23ffffff' fill-opacity='0.07'/%3E%3C/svg%3E");
  pointer-events:none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 70px; padding-bottom: 80px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 7px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
  color: #fff; margin-bottom: 22px;
}
.hero__badge b { color: var(--yellow); }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); line-height: 1.07; letter-spacing: -.5px; }
.hero h1 .hl { color: var(--yellow); }
.hero p.lead { font-size: 18px; color: #d4e6f4; margin: 22px 0 32px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero__trust .t { }
.hero__trust .t b { display:block; color: var(--yellow); font-size: 26px; font-weight: 800; }
.hero__trust .t span { font-size: 13.5px; color: #bfd8ea; }

/* Hero offer-cirkel (som i referensen) */
.hero__visual { position: relative; min-height: 380px; display: grid; place-items: center; }
.hero__circle {
  position: relative; width: 360px; max-width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(160deg, var(--cyan), var(--blue-bright));
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  display: grid; place-items: center; text-align: center; color: #fff;
}
.hero__circle .illus { width: 62%; opacity: .95; }
.hero__circle img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:50%; }
.hero__discount {
  position: absolute; top: -10px; right: -6px; width: 118px; height: 118px; border-radius: 50%;
  background: var(--yellow); color: var(--navy); display: grid; place-items: center; text-align: center;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,.45); font-weight: 700; line-height: 1.05;
  border: 6px solid #fff;
}
.hero__discount b { display:block; font-size: 30px; font-weight: 800; }
.hero__discount small { font-size: 10px; letter-spacing: .5px; text-transform: uppercase; }
.hero__rut {
  position: absolute; bottom: 4px; left: -10px;
  background: #fff; color: var(--navy); padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow); font-size: 14px; font-weight: 600; display:flex; align-items:center; gap:10px;
}
.hero__rut svg { width: 26px; height: 26px; color: var(--orange); }

/* =====================================================================
   INFO BAR (4 färgade rutor)
   ===================================================================== */
.infobar { margin-top: -1px; }
.infobar .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.infobar .cell { padding: 34px 30px; color: #eaf4fb; min-height: 168px; }
.infobar .cell:nth-child(1){ background: var(--navy-deep); }
.infobar .cell:nth-child(2){ background: var(--blue); }
.infobar .cell:nth-child(3){ background: var(--blue-bright); }
.infobar .cell:nth-child(4){ background: var(--yellow); color: var(--navy); }
.infobar .cell h3 { color: #fff; font-size: 17px; margin-bottom: 12px; }
.infobar .cell:nth-child(4) h3 { color: var(--navy); }
.infobar .cell svg { width: 30px; height: 30px; margin-bottom: 14px; opacity:.95; }
.infobar .cell p { font-size: 14px; opacity: .95; }
.infobar .hours-row { display:flex; justify-content:space-between; font-size:14px; padding:4px 0; border-bottom:1px dashed rgba(255,255,255,.2);}
.infobar .hours-row span:first-child{ color: var(--yellow); }
.infobar .more { display:inline-block; margin-top:14px; font-size:12.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.infobar .more::after{ content:" →"; }

/* =====================================================================
   FEATURES (Vad gör oss speciella)
   ===================================================================== */
.features-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; margin-top: 36px; }
.feature {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start;
}
.feature .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cyan-soft); color: var(--blue); flex: none;
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h4 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; }

/* =====================================================================
   STEPS (Så jobbar vi)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 50px; }
.step { text-align: center; position: relative; }
.step__num { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin-bottom: 18px; }
.step__circle {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(160deg, var(--cyan-soft), #fff);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.step__circle svg { width: 56px; height: 56px; }
.step h4 { font-style: italic; font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14px; }
.steps .step:not(:last-child)::before {
  content:""; position:absolute; top: 96px; left: calc(50% + 90px); width: calc(100% - 30px); height:2px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 8px, transparent 8px 16px);
}

/* =====================================================================
   SERVICES (Tjänster — kort)
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__media {
  height: 180px; display: grid; place-items: center; color: #fff; position: relative;
  background: linear-gradient(150deg, var(--blue), var(--cyan));
}
.svc-card:nth-child(2n) .svc-card__media { background: linear-gradient(150deg, var(--navy), var(--blue-bright)); }
.svc-card:nth-child(3n) .svc-card__media { background: linear-gradient(150deg, var(--blue-bright), var(--cyan)); }
.svc-card__media svg { width: 64px; height: 64px; opacity: .95; }
.svc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-card__media .ph-note {
  position:absolute; bottom:8px; right:10px; font-size:10.5px; letter-spacing:.5px;
  background: rgba(0,0,0,.18); padding:3px 8px; border-radius: 20px;
}
.svc-card__body { padding: 24px 24px 28px; }
.svc-card__body h3 { font-size: 19px; margin-bottom: 10px; }
.svc-card__body p { font-size: 14.5px; margin-bottom: 16px; }
.svc-card__link { color: var(--blue); font-weight: 600; font-size: 14.5px; }
.svc-card__link::after { content:" →"; transition: margin .15s; }
.svc-card:hover .svc-card__link::after { margin-left: 4px; }

/* =====================================================================
   PRICE / ESTIMATE
   ===================================================================== */
.price-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
.price-card {
  background: var(--navy); color: #d6e6f3; border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow);
}
.price-card h2 { color: var(--yellow); font-size: 28px; margin-bottom: 6px; }
.price-card label { display: block; font-size: 14px; margin: 18px 0 8px; color: #cfe0ee; }
.price-card select, .price-card input[type="number"] {
  width: 100%; padding: 13px 16px; border-radius: 30px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff; font-family: inherit; font-size: 15px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px;
}
/* Synliga alternativ i öppen dropdown (annars vit text på vit bakgrund) */
.price-card select option { color: #16293a; background: #fff; }
.price-card .checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 6px; }
.price-card .check { display:flex; align-items:center; gap:10px; font-size:14px; cursor:pointer; }
.price-card .check input { width:18px; height:18px; accent-color: var(--cyan); }
.price-card .rooms { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.price-card .sum-box {
  margin-top: 22px; background: var(--yellow); color: var(--navy); border-radius: 30px;
  padding: 14px 22px; font-weight: 700; font-size: 18px; display:flex; justify-content:space-between; align-items:center;
}
.price-card .sum-box small { font-weight:600; font-size:13px; }
.price-side h2 { font-size: clamp(26px,3.5vw,38px); margin-bottom: 16px; }
ul.ticks { margin: 20px 0 28px; }
ul.ticks li { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; font-size:15px; }
ul.ticks svg { width:22px; height:22px; min-width:22px; color: var(--orange); flex:none; margin-top:2px; }

/* =====================================================================
   CTA-BAND (gul)
   ===================================================================== */
.cta-band {
  background: var(--yellow); color: var(--navy);
}
.cta-band .container { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:30px 24px; flex-wrap:wrap; }
.cta-band p { font-size: clamp(18px,2.4vw,26px); font-weight: 700; font-style: italic; }
.cta-band p span { color: var(--blue); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align:center; }
.stat b { display:block; font-size: clamp(32px,4vw,46px); color: var(--yellow); font-weight:800; }
.stat span { color:#bcd3e6; font-size:14.5px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quotes { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.quote {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  position:relative; box-shadow: var(--shadow-sm);
}
.quote .stars { color: var(--orange); margin-bottom: 14px; letter-spacing:2px; }
.quote p { font-size: 15px; font-style: italic; color: var(--text); margin-bottom: 20px; }
.quote .who { display:flex; align-items:center; gap:12px; }
.quote .ava { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--cyan),var(--blue)); color:#fff; display:grid; place-items:center; font-weight:700; }
.quote .who b { color: var(--ink); font-size:15px; display:block; }
.quote .who span { font-size:13px; color: var(--muted); }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(84,196,239,.3), transparent 60%),
    linear-gradient(120deg, var(--navy), var(--blue));
  color:#fff; padding: 70px 0 80px; text-align:center;
}
.page-hero h1 { color:#fff; font-size: clamp(32px,4.5vw,48px); }
.page-hero p { color:#cfe2f1; max-width:600px; margin: 14px auto 0; }
.breadcrumb { margin-top: 18px; font-size: 14px; color:#bcd3e6; }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { color: var(--yellow); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.about-media {
  border-radius: var(--radius); min-height: 420px; position:relative; overflow:hidden;
  background: linear-gradient(150deg, var(--cyan), var(--blue)); display:grid; place-items:center; color:#fff;
}
.about-media svg { width: 120px; height:120px; opacity:.9; }
.about-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.about-media .ph-note { position:absolute; bottom:12px; left:12px; font-size:12px; background:rgba(0,0,0,.2); padding:5px 12px; border-radius:20px;}
.about-media .exp-badge {
  position:absolute; bottom:-26px; right:24px; background: var(--yellow); color: var(--navy);
  width:130px; height:130px; border-radius:50%; display:grid; place-items:center; text-align:center;
  box-shadow: var(--shadow); border:6px solid #fff;
}
.about-media .exp-badge b { font-size:34px; font-weight:800; display:block; }
.about-media .exp-badge small { font-size:11px; text-transform:uppercase; letter-spacing:.5px; }
.values { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:30px; }
.value { display:flex; gap:14px; }
.value .ic { width:46px;height:46px;border-radius:12px;background:var(--cyan-soft);color:var(--blue);display:grid;place-items:center;flex:none;}
.value .ic svg{width:24px;height:24px;}
.value h4{font-size:16px;margin-bottom:4px;}
.value p{font-size:14px;}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
.contact-info .ci {
  display:flex; gap:16px; align-items:flex-start; padding: 20px 0; border-bottom:1px solid var(--line);
}
.contact-info .ci:last-child{border-bottom:0;}
.contact-info .ic { width:50px;height:50px;border-radius:14px;background:var(--cyan-soft);color:var(--blue);display:grid;place-items:center;flex:none;}
.contact-info .ic svg{width:24px;height:24px;}
.contact-info h4{font-size:16px;margin-bottom:3px;}
.contact-info p, .contact-info a{font-size:15px;color:var(--text);}
.contact-info a:hover{color:var(--blue);}
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:14px; font-weight:600; color:var(--ink); margin-bottom:7px; }
.field input, .field select, .field textarea {
  width:100%; padding:13px 16px; border:1px solid var(--line); border-radius: var(--radius-sm);
  font-family:inherit; font-size:15px; color:var(--ink); background:#fff; transition:border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--blue); box-shadow:0 0 0 3px rgba(46,163,224,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size:13px; color:var(--muted); margin-top:6px; }
.form-alert { font-size:14px; font-weight:600; padding:12px 16px; border-radius:12px; margin-bottom:18px; }
.form-alert--ok  { background:#e7f6ec; color:#1c7a3e; border:1px solid #b6e3c4; }
.form-alert--err { background:#fdecec; color:#c0392b; border:1px solid #f3c2bd; }
.map-embed { margin-top: 50px; border-radius: var(--radius); overflow:hidden; height: 360px; border:1px solid var(--line);
  background: repeating-linear-gradient(45deg,#eef4f9,#eef4f9 16px,#e6eef6 16px,#e6eef6 32px);
  display:grid; place-items:center; color: var(--muted); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--navy-deep); color:#9fbad2; padding: 70px 0 0; }
.footer .cols { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color:#fff; font-size:16px; margin-bottom:20px; }
.footer a { color:#9fbad2; font-size:14.5px; }
.footer a:hover { color:#fff; }
.footer li { margin-bottom: 11px; }
.footer .logo__text b { color:#fff; }
.footer .logo__text small { color:#7fa0bd; }
.footer p { font-size:14.5px; margin-top:16px; }
.footer .f-contact li { display:flex; gap:10px; align-items:flex-start; }
.footer .f-contact svg { width:18px;height:18px;color:var(--cyan);flex:none;margin-top:3px;}
.footer .f-social { display:flex; gap:10px; margin-top:18px; }
.footer .f-social a { width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.07);display:grid;place-items:center;}
.footer .f-social a:hover{ background: var(--blue);}
.footer .f-social svg{width:18px;height:18px;}
.footer .bottom { border-top:1px solid rgba(255,255,255,.08); padding:22px 0; font-size:13.5px; text-align:center; }
.footer .bottom span { color: var(--orange); }

/* =====================================================================
   REVEAL animation
   ===================================================================== */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
/* ---- Tablet / liten laptop (≤ 980px) ---- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 54px; padding-bottom: 70px; gap: 48px; }
  .hero__text { text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; min-height: 0; }
  .hero__circle { width: min(340px, 78vw); }
  .infobar .grid { grid-template-columns: 1fr 1fr; }
  .features-wrap, .price-wrap, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .steps .step::before { display: none; }
  .svc-grid, .quotes { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---- Mobil (≤ 720px): meny, en kolumn ---- */
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .topbar { font-size: 13px; }
  .topbar .tb-group.tb-left { display: none; }
  .topbar .container { justify-content: center; min-height: 40px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 20px 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; max-height: 80vh; overflow-y: auto; }
  .nav-item { position: relative; border-bottom: 1px solid var(--line); }
  .nav-item:last-child { border-bottom: 0; }
  .nav-link { padding: 14px 6px; border-radius: 0; }
  .nav-link.active::after { display: none; }
  .caret { display: none; }
  /* Mega-toggle som expanderbar knapp */
  .mega-toggle {
    display: block; position: absolute; top: 6px; right: 0; width: 44px; height: 44px;
    background: transparent; border: 0; cursor: pointer;
  }
  .mega-toggle::before, .mega-toggle::after {
    content:""; position:absolute; top:50%; left:50%; width:11px; height:2px; background: var(--ink); transition:.2s;
  }
  .mega-toggle::before { transform: translate(-50%,-50%); }
  .mega-toggle::after  { transform: translate(-50%,-50%) rotate(90deg); }
  .nav-item.open .mega-toggle::after { transform: translate(-50%,-50%) rotate(0); }
  .mega {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 8px; width: auto; max-width: none;
    display: none;
  }
  .nav-item.open .mega { display: block; }
  /* På mobil: neutralisera desktop-dropdownens hover/focus-transform (annars
     skjuts undermenyn -50% i sidled och hamnar utanför skärmen) */
  .has-mega:hover .mega,
  .has-mega:focus-within .mega { transform: none; opacity: 1; visibility: visible; }
  .mega__grid, .mega__grid--cities { grid-template-columns: 1fr; gap: 2px; }
  .mega__card { min-width: 0; padding: 10px 12px; }
  .header-cta .btn { display: none; }
  /* Hero-brickor: håll ALLTID innanför cirkeln på mobil (kan aldrig spilla utanför) */
  .hero { overflow: hidden; }
  .hero__circle { width: min(330px, 80vw); }
  .hero__discount { width: 96px; height: 96px; top: 6px; right: 6px; left: auto; border-width: 5px; }
  .hero__discount b { font-size: 24px; }
  .hero__discount small { font-size: 9.5px; }
  .hero__rut { left: 50%; right: auto; top: auto; bottom: 10px; transform: translateX(-50%); white-space: nowrap; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .infobar .grid { grid-template-columns: 1fr; }
  .infobar .cell { min-height: 0; padding: 28px 26px; }
  .svc-grid, .quotes, .steps, .stats, .values, .form-row, .footer .cols { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
  .price-card .rooms { grid-template-columns: repeat(3, 1fr); }
  .price-card { padding: 28px 22px; }
  .cta-band .container { flex-direction: column; text-align: center; gap: 18px; }
  .page-hero { padding: 54px 0 60px; }
  .map-embed { height: 280px; margin-top: 36px; }
}

/* ---- Liten telefon (≤ 480px): finjustering ---- */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .topbar .tb-item svg { display: none; }
  .logo__mark { width: 42px; height: 42px; }
  .logo__text b { font-size: 17px; }
  .logo__text small { font-size: 10px; letter-spacing: 2px; }
  .hero__circle { width: min(300px, 82vw); }
  .hero__discount { width: 82px; height: 82px; top: 4px; right: 4px; left: auto; border-width: 4px; }
  .hero__discount b { font-size: 21px; }
  .hero__discount small { font-size: 8.5px; }
  .hero__rut { left: 50%; right: auto; top: auto; transform: translateX(-50%); bottom: 8px; font-size: 12.5px; padding: 9px 14px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .hero__trust { gap: 20px; }
  .hero__trust .t b { font-size: 22px; }
  .price-card .rooms { grid-template-columns: 1fr; }
  .price-card .checks { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .btn { padding: 13px 22px; }
  .quote, .svc-card__body { padding: 24px 20px; }
}

/* ---- Riktigt smal (≤ 360px) ---- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .logo__text b { font-size: 15.5px; }
  .hero__circle { width: min(280px, 84vw); }
  .hero__discount { width: 74px; height: 74px; }
  .hero__discount b { font-size: 19px; }
  .topbar .tb-social { display: none; }
}

/* =====================================================================
   KOMPONENTER för tjänst-/ort-sidor (PHP-mallar)
   ===================================================================== */
/* Topbar erbjudande-pill */
.tb-offer { background: var(--orange); color:#fff !important; padding:4px 13px; border-radius:20px; font-weight:600; font-size:12.5px; line-height:1.6; }
.tb-offer:hover { background: var(--orange-deep); }

/* Split: bild + text */
.split { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.split__media { border-radius:var(--radius); overflow:hidden; min-height:400px; position:relative; background:linear-gradient(150deg,var(--blue),var(--cyan)); box-shadow:var(--shadow-sm); }
.split__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.split--rev .split__media { order:2; }

/* Pris-pill inline */
.price-pill { display:inline-flex; align-items:center; gap:9px; background:var(--cyan-soft); color:var(--navy); font-weight:700; padding:11px 20px; border-radius:30px; font-size:15px; margin-top:6px; }
.price-pill svg { width:18px; height:18px; color:var(--orange); }

/* Områdes-chips */
.local-areas { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.chip { background:var(--cyan-soft); color:var(--blue); padding:7px 15px; border-radius:20px; font-size:13.5px; font-weight:600; }

/* "Det här ingår" — tvåkolumns */
.incl-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px 34px; margin-top:26px; }
.incl-grid li { display:flex; gap:12px; align-items:flex-start; font-size:15px; }
.incl-grid svg { width:22px; height:22px; min-width:22px; color:var(--orange); margin-top:2px; }

/* Relaterade länkar (orter/tjänster) */
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.related-card { display:flex; align-items:center; gap:13px; padding:18px 20px; border:1px solid var(--line); border-radius:14px; background:#fff; transition:.18s; font-weight:600; color:var(--ink); }
.related-card:hover { border-color:transparent; box-shadow:var(--shadow-sm); transform:translateY(-3px); color:var(--blue); }
.related-card .ic { width:44px; height:44px; border-radius:11px; background:var(--cyan-soft); color:var(--blue); display:grid; place-items:center; flex:none; }
.related-card .ic svg { width:22px; height:22px; }

/* Pristabell */
.price-table-wrap { overflow-x:auto; }
.price-table { width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; min-width:480px; }
.price-table th, .price-table td { padding:15px 22px; text-align:left; border-bottom:1px solid var(--line); font-size:15px; }
.price-table th { background:var(--bg-soft); color:var(--ink); font-weight:700; }
.price-table tr:last-child td { border-bottom:0; }
.price-table td:last-child, .price-table th:last-child { text-align:right; font-weight:700; color:var(--navy); white-space:nowrap; }
.price-note { font-size:13px; color:var(--muted); margin-top:14px; }

/* FAQ */
.faq { max-width:820px; margin:0 auto; }
.faq__item { border:1px solid var(--line); border-radius:14px; margin-bottom:14px; background:#fff; overflow:hidden; }
.faq__q { width:100%; text-align:left; background:none; border:0; padding:20px 24px; font-family:inherit; font-size:16.5px; font-weight:600; color:var(--ink); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq__q::after { content:"+"; font-size:24px; color:var(--blue); transition:transform .2s; flex:none; }
.faq__item.open .faq__q::after { transform:rotate(45deg); }
.faq__a { max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq__a p { padding:0 24px 22px; font-size:15px; }

/* Portfolio / referenser */
.gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.gallery__item { border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3; position:relative; background:linear-gradient(150deg,var(--blue),var(--cyan)); box-shadow:var(--shadow-sm); }
.gallery__item img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.gallery__item:hover img { transform:scale(1.06); }
.gallery__item span { position:absolute; left:14px; bottom:12px; z-index:1; color:#fff; font-weight:600; font-size:14px; text-shadow:0 2px 8px rgba(0,0,0,.5); }

/* Responsivt för mallarna */
@media (max-width: 980px) {
  .split, .split--rev .split__media { grid-template-columns:1fr; }
  .split--rev .split__media { order:0; }
  .split__media { min-height:300px; order:-1; }
  .related-grid, .gallery { grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px) {
  .incl-grid { grid-template-columns:1fr; }
  .related-grid, .gallery { grid-template-columns:1fr; }
  .tb-offer { display:none; }
}

/* =====================================================================
   PROSE — text-tunga sidor (integritetspolicy, villkor m.m.)
   ===================================================================== */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 22px; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 22px 0 8px; }
.prose p { margin-bottom: 14px; font-size: 15.5px; }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.prose ul li { margin-bottom: 8px; font-size: 15.5px; }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }

/* Legal-rad i footer */
.footer .legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; padding: 0 0 4px; font-size: 13px; }
.footer .legal a { color: #9fbad2; }
.footer .legal a:hover { color: #fff; }

/* Uppladdad logotyp (ersätter text-loggan) */
.logo__img { height: 72px; width: auto; display: block; }
.logo__img--footer { height: 70px; background: #fff; padding: 8px 14px; border-radius: 14px; }
@media (max-width: 720px) { .logo__img { height: 58px; } }
@media (max-width: 480px) { .logo__img { height: 50px; } }
