  :root{
    --navy:#16265a;
    --red:#e5271c;
    --gold:#f5b301;
    --ink:#1c2333;
    --muted:#5d6577;
    --line:#e7eaf1;
    --bg:#ffffff;
    --soft:#f4f7fc;
    --sky:#eef4fb;
    --card:#ffffff;
    --shadow:0 10px 30px rgba(22,38,90,.08);
    --shadow-lg:0 18px 50px rgba(22,38,90,.14);
    --radius:20px;
    --bar-h:64px;
    --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
  body{
    font-family:var(--sans);
    color:var(--ink);
    background:var(--bg);
    line-height:1.6;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
    /* tie space to real bar height incl. notch inset so final CTA/footer is never hidden */
    padding-bottom:calc(var(--bar-h) + env(safe-area-inset-bottom));
  }
  img{display:block;max-width:100%;height:auto}
  svg{display:block}
  a{color:inherit;text-decoration:none}
  .wrap{width:100%;max-width:1120px;margin:0 auto;padding:0 20px}
  .center{text-align:center}

  /* ---------- Top brand bar ---------- */
  .topbar{
    display:flex;align-items:center;justify-content:space-between;
    gap:12px;padding:12px 20px;
    max-width:1120px;margin:0 auto;
  }
  .brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.2px}
  .brand img{width:34px;height:34px;object-fit:contain}
  .brand .bn{font-size:15px;color:var(--navy);line-height:1.1}
  .brand .bn small{display:block;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--muted)}
  .top-call{
    display:inline-flex;align-items:center;gap:7px;
    font-weight:800;color:var(--navy);font-size:14px;
    padding:9px 14px;border:1.5px solid var(--line);border-radius:999px;
    white-space:nowrap;
  }
  .top-call .dot{width:8px;height:8px;border-radius:50%;background:#2ecc71;box-shadow:0 0 0 4px rgba(46,204,113,.15)}

  /* ---------- Hero ---------- */
  .hero{background:linear-gradient(180deg,var(--sky) 0%,var(--sky) 60%,#fff 100%);padding-top:6px}
  .hero-photo{position:relative;max-width:1120px;margin:0 auto}
  .hero-photo>img{
    width:100%;
    aspect-ratio:2/1;      /* full wide banner, ingen sidebeskjæring */
    object-fit:cover;
    object-position:center;
    border-radius:0 0 26px 26px;
  }

  /* rating card overlapping bottom of photo */
  .rating-card{
    position:relative;
    margin:-40px 20px 0;
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
    padding:16px 18px;
    display:flex;align-items:center;gap:14px;
    max-width:520px;
  }
  .rating-card .score{
    flex:0 0 auto;text-align:center;padding-right:14px;border-right:1px solid var(--line)
  }
  .rating-card .score b{font-size:26px;color:var(--navy);line-height:1;display:block}
  .rating-card .score span{font-size:11px;color:var(--muted);font-weight:600}
  .stars{color:var(--gold);font-size:15px;letter-spacing:1px;line-height:1}
  .rating-card .quote{font-size:13.5px;color:var(--ink);line-height:1.45}
  .rating-card .quote em{font-style:italic;color:var(--navy);font-weight:600}
  .rating-card .quote small{display:block;color:var(--muted);font-style:normal;font-weight:600;margin-top:3px;font-size:11.5px}

  /* headline */
  .headline{padding:26px 20px 8px;max-width:760px;margin:0 auto;text-align:center}
  [data-h1]{
    font-size:40px;line-height:1.05;color:var(--navy);
    font-weight:850;letter-spacing:-1px;
  }
  .headline .tagline{
    display:inline-block;margin-top:8px;font-size:13px;font-weight:800;
    letter-spacing:2.5px;text-transform:uppercase;color:var(--red);
  }
  .subhead{
    margin:14px auto 0;max-width:600px;font-size:17px;color:var(--muted);line-height:1.5
  }
  .subhead [data-heading]{color:var(--navy);font-weight:800}

  /* benefit bullets */
  .benefits{
    list-style:none;max-width:560px;margin:22px auto 0;padding:0 20px;
    display:grid;gap:10px;
  }
  .benefits li{
    display:flex;align-items:center;gap:11px;
    font-size:15px;font-weight:600;color:var(--ink);
  }
  .benefits li .chk{
    flex:0 0 22px;width:22px;height:22px;border-radius:50%;
    background:var(--navy);color:#fff;
    display:flex;align-items:center;justify-content:center;
  }
  .benefits li .chk svg{width:13px;height:13px}

  /* primary CTA button */
  .cta-wrap{padding:24px 20px 8px;max-width:560px;margin:0 auto}
  .btn-call{
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:3px;width:100%;
    background:var(--red);color:#fff;
    border-radius:16px;padding:15px 18px;
    font-weight:800;box-shadow:0 12px 26px rgba(229,39,28,.30);
  }
  .btn-call .lbl{font-size:12.5px;font-weight:700;opacity:.92;letter-spacing:.4px;text-transform:uppercase}
  .btn-call .num{display:flex;align-items:center;gap:9px;font-size:23px;font-weight:850;letter-spacing:.3px}
  .btn-call .num svg{width:21px;height:21px}
  .cta-note{text-align:center;font-size:12.5px;color:var(--muted);margin-top:11px}

  /* ---------- Trust strip ---------- */
  .stats{background:var(--navy);color:#fff;margin-top:30px;padding:26px 0}
  .stats .grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px 12px;text-align:center}
  .stats b{display:block;font-size:24px;color:#fff;line-height:1}
  .stats .g{color:var(--gold)}
  .stats span{font-size:12px;color:#c6cee4;font-weight:600;letter-spacing:.3px}
  .stats b.small{font-size:19px;letter-spacing:.5px}
  .stats b.icn{display:flex;align-items:center;justify-content:center}
  .stats b.icn svg{width:22px;height:22px;color:var(--gold)}

  /* ---------- Section shells ---------- */
  section.block{padding:44px 0}
  .eyebrow{
    text-align:center;font-size:12px;font-weight:800;letter-spacing:2.5px;
    text-transform:uppercase;color:var(--red);margin-bottom:8px;
  }
  h2.sec{
    text-align:center;font-size:26px;line-height:1.2;color:var(--navy);
    font-weight:850;letter-spacing:-.5px;max-width:640px;margin:0 auto;
  }
  .sec-sub{text-align:center;color:var(--muted);max-width:560px;margin:12px auto 0;font-size:15px}

  /* services */
  .services{margin-top:26px;display:grid;gap:14px}
  .svc{
    background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
    box-shadow:var(--shadow);padding:20px 18px;display:flex;gap:14px;align-items:flex-start;
  }
  .svc .ic{
    flex:0 0 46px;width:46px;height:46px;border-radius:13px;
    background:var(--sky);display:flex;align-items:center;justify-content:center;color:var(--navy);
  }
  .svc .ic svg{width:24px;height:24px}
  .svc h3{font-size:17px;color:var(--navy);font-weight:800;line-height:1.25}
  .svc p{font-size:14px;color:var(--muted);margin-top:5px;line-height:1.5}

  /* photo gallery */
  .gallery{margin-top:26px;display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
  .gallery figure{
    position:relative;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);
    border:1px solid var(--line);background:var(--soft);
  }
  .gallery img{width:100%;height:150px;object-fit:cover}
  .gallery figcaption{
    position:absolute;left:0;right:0;bottom:0;
    background:linear-gradient(0deg,rgba(16,26,62,.88),rgba(16,26,62,0));
    color:#fff;font-size:12.5px;font-weight:700;padding:20px 12px 9px;
    text-shadow:0 1px 3px rgba(0,0,0,.35);
  }

  /* steps */
  .steps{margin-top:28px;display:grid;gap:16px;counter-reset:step}
  .step{
    background:var(--soft);border-radius:var(--radius);padding:20px 18px 20px 20px;
    display:flex;gap:15px;align-items:flex-start;border:1px solid var(--line);
  }
  .step .n{
    flex:0 0 40px;width:40px;height:40px;border-radius:50%;
    background:var(--navy);color:#fff;font-weight:850;font-size:17px;
    display:flex;align-items:center;justify-content:center;
  }
  .step h3{font-size:16px;color:var(--navy);font-weight:800}
  .step p{font-size:14px;color:var(--muted);margin-top:4px}

  /* testimonials */
  .quotes{margin-top:26px;display:grid;gap:14px}
  .qcard{
    background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
    padding:20px 18px;box-shadow:var(--shadow);
  }
  .qcard .stars{margin-bottom:9px}
  .qcard p{font-size:15px;color:var(--ink);line-height:1.55}
  .qcard .who{
    margin-top:12px;display:flex;align-items:center;gap:11px;
  }
  .qcard .av{
    width:38px;height:38px;border-radius:50%;flex:0 0 38px;
    background:var(--navy);color:#fff;font-weight:800;font-size:15px;
    display:flex;align-items:center;justify-content:center;
  }
  .qcard .who b{font-size:14px;color:var(--navy);display:block}
  .qcard .who span{font-size:12px;color:var(--muted)}

  /* final CTA */
  .final{
    background:linear-gradient(160deg,#16265a 0%,#1d2f6e 100%);
    color:#fff;text-align:center;border-radius:26px;
    padding:40px 22px;margin:0 20px;box-shadow:var(--shadow-lg);
  }
  .final h2{font-size:25px;font-weight:850;line-height:1.2;letter-spacing:-.4px}
  .final p{color:#c6cee4;max-width:440px;margin:12px auto 22px;font-size:15px}
  .final .btn-call{max-width:440px;margin:0 auto}
  .final .avail{margin-top:14px;font-size:13px;color:#aab6d8;font-weight:600;display:flex;align-items:center;justify-content:center;gap:8px}
  .final .avail .live{width:9px;height:9px;border-radius:50%;background:#2ecc71;box-shadow:0 0 0 4px rgba(46,204,113,.22)}

  /* footer */
  footer{background:var(--soft);border-top:1px solid var(--line);padding:34px 0 30px;margin-top:44px}
  .foot-brand{display:flex;align-items:center;gap:10px;justify-content:center;margin-bottom:14px}
  .foot-brand img{width:30px;height:30px;object-fit:contain}
  .foot-brand b{color:var(--navy);font-size:16px;font-weight:850}
  footer .info{text-align:center;color:var(--muted);font-size:13px;line-height:1.7}
  footer .info a{color:var(--navy);font-weight:700}
  footer .disc{text-align:center;color:#9aa2b4;font-size:11.5px;margin-top:16px;max-width:520px;margin-left:auto;margin-right:auto}

  /* sticky mobile call bar */
  .sticky{
    position:fixed;left:0;right:0;bottom:0;z-index:50;
    background:rgba(255,255,255,.96);backdrop-filter:saturate(180%) blur(8px);
    border-top:1px solid var(--line);
    padding:9px 14px calc(9px + env(safe-area-inset-bottom));
    box-shadow:0 -8px 24px rgba(22,38,90,.10);
  }
  .sticky a{
    display:flex;align-items:center;justify-content:center;gap:9px;
    background:var(--red);color:#fff;font-weight:850;font-size:17px;
    border-radius:14px;padding:13px;letter-spacing:.3px;
    box-shadow:0 8px 18px rgba(229,39,28,.28);
  }
  .sticky a svg{width:20px;height:20px}

  /* ---------- Responsive ---------- */
  @media (max-width:360px){
    /* keep the -40px rating-card overlap from crowding on 320px screens */
    .rating-card{margin-left:14px;margin-right:14px;padding:14px;gap:11px}
    .rating-card .score{padding-right:11px}
    .rating-card .score b{font-size:23px}
    [data-h1]{font-size:34px}
  }
  @media (min-width:600px){
    .stats .grid{grid-template-columns:repeat(4,1fr)}
    .gallery{grid-template-columns:repeat(3,1fr)}
    .gallery img{height:170px}
  }
  /* ---------- Article / prose ---------- */
  .article{max-width:760px;margin:24px auto 0;text-align:left}
  .article p{color:var(--muted);font-size:15.5px;line-height:1.75;margin-top:14px}
  .article p:first-child{margin-top:0}
  .article p.lead{font-size:17px;color:var(--ink);line-height:1.65}
  .article strong{color:var(--navy);font-weight:700}
  .article h3{font-size:18px;color:var(--navy);font-weight:800;margin-top:26px;letter-spacing:-.2px}

  /* ---------- Situasjoner (cases) ---------- */
  .cases{margin-top:26px;display:grid;gap:14px}
  .case{background:var(--soft);border:1px solid var(--line);border-radius:var(--radius);padding:20px 18px}
  .case h3{font-size:16px;color:var(--navy);font-weight:800;display:flex;align-items:center;gap:10px;line-height:1.3}
  .case h3 .b{flex:0 0 8px;width:8px;height:8px;border-radius:50%;background:var(--red)}
  .case p{font-size:14px;color:var(--muted);margin-top:8px;line-height:1.6}

  /* ---------- FAQ ---------- */
  .faq{max-width:760px;margin:26px auto 0;display:grid;gap:12px;text-align:left}
  .faq details{background:var(--card);border:1px solid var(--line);border-radius:14px;overflow:hidden;box-shadow:var(--shadow)}
  .faq summary{list-style:none;cursor:pointer;padding:16px 18px;font-weight:800;color:var(--navy);
    font-size:15.5px;display:flex;justify-content:space-between;align-items:center;gap:12px;line-height:1.35}
  .faq summary::-webkit-details-marker{display:none}
  .faq summary::after{content:"+";font-size:24px;color:var(--red);font-weight:400;line-height:1;flex:0 0 auto}
  .faq details[open] summary::after{content:"\2013"}
  .faq details[open] summary{border-bottom:1px solid var(--line)}
  .faq .a{padding:14px 18px 18px;color:var(--muted);font-size:14.5px;line-height:1.7}

  @media (min-width:600px){
    .cases{grid-template-columns:repeat(2,1fr)}
  }
  @media (min-width:820px){
    body{padding-bottom:0}
    .sticky{display:none}
    [data-h1]{font-size:56px}
    .hero-photo>img{aspect-ratio:2/1;height:auto;object-fit:cover}
    .rating-card{margin-left:auto;margin-right:auto;margin-top:-56px}
    .headline{padding-top:30px}
    .services{grid-template-columns:repeat(2,1fr)}
    .steps{grid-template-columns:repeat(3,1fr)}
    .quotes{grid-template-columns:repeat(3,1fr)}
    h2.sec{font-size:32px}
    .final h2{font-size:30px}
    section.block{padding:60px 0}
    .top-call{font-size:15px;padding:10px 18px}
  }

  /* ---------- Подстановка города/ключа (выделение) ---------- */
  .js-city{font-weight:700}
  .article .js-city,.media__txt .js-city,.case .js-city,.faq .a .js-city,.sec-sub .js-city{color:var(--navy)}
  .kw{font-weight:700;color:var(--navy)}

  /* ---------- Media rows (article + photo) ---------- */
  .media{display:grid;grid-template-columns:1fr;gap:16px;align-items:center;margin-top:24px}
  .media__img img{width:100%;border-radius:16px;box-shadow:var(--shadow);border:1px solid var(--line);aspect-ratio:6/5;object-fit:cover}
  .media__txt h3{font-size:19px;color:var(--navy);font-weight:800;letter-spacing:-.2px}
  .media__txt p{color:var(--muted);font-size:15px;line-height:1.7;margin-top:9px}

  /* ---------- Quality icon tiles (erstatter fotogalleri) ---------- */
  .iconrow{margin-top:26px;display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
  .itile{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:22px 16px;text-align:center}
  .itile .ic{width:52px;height:52px;border-radius:14px;background:var(--sky);color:var(--navy);display:flex;align-items:center;justify-content:center;margin:0 auto 12px}
  .itile .ic svg{width:26px;height:26px}
  .itile h3{font-size:15.5px;color:var(--navy);font-weight:800;line-height:1.25}
  .itile p{font-size:13px;color:var(--muted);margin-top:5px;line-height:1.5}

  @media (min-width:820px){
    .media{grid-template-columns:1fr 1fr;gap:34px}
    .media--rev .media__img{order:2}
    .iconrow{grid-template-columns:repeat(4,1fr)}
  }

  /* Kontaktskjema */
  .contact{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:28px 22px;max-width:600px;margin:0 auto;box-shadow:0 12px 34px rgba(28,35,51,.09)}
  .contact h2{font-size:26px;margin:0 0 6px;color:var(--ink);text-align:center}
  .contact>p{font-size:15px;color:var(--ink);opacity:.7;margin:0 0 20px;line-height:1.5;text-align:center}
  .cform{display:grid;grid-template-columns:1fr;gap:12px}
  .cf-field{width:100%;font:inherit;font-size:16px;color:var(--ink);background:#fff;border:1.5px solid var(--line);border-radius:12px;padding:14px 15px;transition:border-color .12s ease,box-shadow .12s ease}
  .cf-field::placeholder{color:#9aa3b2}
  .cf-field:focus{outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(229,39,28,.14)}
  textarea.cf-field{resize:vertical;min-height:112px}
  .cf-hp{position:absolute!important;left:-9999px;width:1px;height:1px;opacity:0}
  .cf-submit{display:flex;align-items:center;justify-content:center;min-height:52px;font:inherit;font-weight:800;font-size:16px;color:#fff;background:var(--red);border:0;border-radius:12px;padding:16px;cursor:pointer;box-shadow:0 8px 20px rgba(229,39,28,.28);transition:filter .12s ease,transform .06s ease}
  .cf-submit:hover{filter:brightness(.94)}
  .cf-submit:active{transform:translateY(1px)}
  .cf-submit:disabled{opacity:.6;cursor:default;box-shadow:none}
  .cf-note{font-size:14.5px;margin:4px 0 0;text-align:center;font-weight:600;line-height:1.45}
  .cf-note.ok{color:#0f7a3d;background:#e7f7ee;border:1px solid #b7e6ca;border-radius:12px;padding:13px 15px}
  .cf-note.err{color:#b3261e;background:#fdeceb;border:1px solid #f5c6c3;border-radius:12px;padding:13px 15px}
  @media (min-width:560px){
    .cform{grid-template-columns:1fr 1fr}
    .cform > input[type="email"],
    .cform > textarea,
    .cform > .cf-submit,
    .cform > .cf-note{grid-column:1 / -1}
  }
  @media (min-width:820px){ .contact{padding:36px 42px} }

  /* spinner под кнопкой */
  .cf-spin{width:22px;height:22px;border:2.5px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;display:inline-block;animation:cf-spin .6s linear infinite}
  @keyframes cf-spin{to{transform:rotate(360deg)}}

  /* экран успеха вместо формы */
  .cf-success{display:none;text-align:center;padding:10px 0 4px}
  .contact.sent > h2,
  .contact.sent > p,
  .contact.sent > .cform{display:none}
  .contact.sent .cf-success{display:block}
  .cf-check{width:78px;height:78px;border-radius:50%;background:#e7f7ee;display:grid;place-items:center;margin:4px auto 16px;animation:cf-pop .35s ease}
  .cf-check svg{width:40px;height:40px;fill:none;stroke:#0f9d58;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
  .cf-check svg path{stroke-dasharray:32;stroke-dashoffset:32;animation:cf-draw .45s .15s forwards ease}
  @keyframes cf-pop{0%{transform:scale(.5);opacity:0}60%{transform:scale(1.08)}100%{transform:scale(1);opacity:1}}
  @keyframes cf-draw{to{stroke-dashoffset:0}}
  .cf-success h3{font-size:21px;margin:0 0 6px;color:var(--ink)}
  .cf-success p{font-size:15px;color:var(--ink);opacity:.75;margin:0 auto;max-width:32em;line-height:1.5}
  @media (prefers-reduced-motion:reduce){
    .cf-spin{animation-duration:1.2s}
    .cf-check{animation:none}
    .cf-check svg path{animation:none;stroke-dashoffset:0}
  }
