/* ===== Reset & tokens ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #0e7490;        /* teal-blue primary */
  --blue-dark: #0b5a6e;
  --blue-600: #0891b2;
  --accent: #16a34a;       /* fresh green */
  --ink: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f6f9fb;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(14, 116, 144, .18);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, .25);
  --maxw: 1200px;
  font-family: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: .22s ease; white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -8px rgba(14,116,144,.6); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--blue-dark); }
.btn--white { background: #fff; color: var(--blue-dark); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar { background: var(--ink); color: #cbd5e1; font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left, .topbar__right { display: flex; gap: 16px; align-items: center; }
.topbar__right a:hover { color: #fff; }
.topbar__divider { opacity: .4; }
@media (max-width: 820px) { .topbar__left { display: none; } .topbar__inner { justify-content: center; } }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: .3s; }
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(15,23,42,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 22px; color: var(--ink); }
.logo__mark { width: 38px; height: 38px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-600), var(--blue)); color: #fff; border-radius: 11px; font-size: 20px; box-shadow: 0 6px 14px -6px rgba(14,116,144,.7); }
.logo__ab { color: var(--blue); margin-left: 3px; }
.logo--light, .logo--light .logo__text { color: #fff; }
.logo--light .logo__ab { color: #5eead4; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--slate); transition: .2s; }
.nav a:hover { color: var(--blue); }
.nav__cta { color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s; }

@media (max-width: 940px) {
  .hamburger { display: flex; }
  .nav { position: fixed; inset: 112px 0 auto 0; flex-direction: column; background: #fff; padding: 20px 24px 28px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-150%); transition: .35s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 10px; text-align: center; border-bottom: 0 !important; }
}

/* ===== Hero ===== */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,90,110,.92), rgba(8,145,178,.78)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; padding: 84px 24px 96px; }
.hero__badge { display: inline-block; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; }
.hero h1 span { color: #5eead4; }
.hero__lead { font-size: clamp(16px, 2vw, 19px); max-width: 620px; margin: 20px 0 30px; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong { font-size: 16px; }
.hero__trust-item span { font-size: 13.5px; color: rgba(255,255,255,.78); }
.hero__card { display: flex; justify-content: flex-end; }
.reco { background: #fff; color: var(--ink); border-radius: 20px; padding: 26px 30px; text-align: center; box-shadow: var(--shadow-lg); width: 200px; }
.reco__top { font-weight: 800; letter-spacing: .18em; color: var(--blue); font-size: 14px; }
.reco__stars { color: #f59e0b; font-size: 26px; margin: 8px 0 4px; }
.reco__year { font-size: 30px; font-weight: 800; font-family: 'Plus Jakarta Sans'; }
.reco__label { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; } .hero__card { justify-content: flex-start; } }

/* ===== Trustbar ===== */
.trustbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trustbar__inner { display: flex; align-items: center; gap: 30px; padding: 22px 24px; flex-wrap: wrap; justify-content: center; }
.trustbar__inner > span { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.trustbar__logos { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trustbar__logo { font-weight: 800; color: #94a3b8; font-size: 17px; letter-spacing: -.01em; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.section__head p { color: var(--slate); margin-top: 14px; font-size: 17px; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .28s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__img { height: 210px; background-size: cover; background-position: center; }
.card__body { padding: 26px 24px 28px; }
.card__body h3 { font-size: 22px; margin-bottom: 10px; }
.card__body p { color: var(--slate); font-size: 15.5px; }
.card__link { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 700; }
.card__link:hover { color: var(--blue-dark); }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ===== About ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__stat { position: absolute; right: -14px; bottom: -22px; background: var(--blue); color: #fff; padding: 18px 24px; border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.about__stat strong { display: block; font-size: 28px; font-family: 'Plus Jakarta Sans'; font-weight: 800; }
.about__stat span { font-size: 13px; opacity: .9; }
.about__content h2 { font-size: clamp(26px, 4vw, 38px); margin: 8px 0 18px; }
.about__content p { color: var(--slate); margin-bottom: 16px; }
.checklist { margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 500; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: #dcfce7; color: var(--accent); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
@media (max-width: 880px) { .about__inner { grid-template-columns: 1fr; gap: 60px; } }

/* ===== Grid section ===== */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; display: flex; flex-direction: column; gap: 4px; transition: .24s; }
.grid__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.grid__icon { font-size: 28px; margin-bottom: 8px; }
.grid__item strong { font-size: 16.5px; }
.grid__item small { color: var(--muted); font-size: 13.5px; }
@media (max-width: 940px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }

/* ===== Gallery ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { height: 240px; border-radius: 14px; background-size: cover; background-position: center; transition: .3s; box-shadow: var(--shadow); }
.gallery__item:hover { transform: scale(1.02); }
@media (max-width: 880px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery__grid { grid-template-columns: 1fr; } }

/* ===== Testimonials ===== */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); }
.testi__stars { color: #f59e0b; font-size: 19px; margin-bottom: 14px; }
.testi blockquote { font-size: 16px; color: var(--ink); font-style: italic; margin-bottom: 20px; }
.testi figcaption strong { display: block; }
.testi figcaption span { color: var(--muted); font-size: 14px; }
@media (max-width: 880px) { .testi__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ===== CTA banner ===== */
.ctabanner { background: linear-gradient(120deg, var(--blue-dark), var(--blue-600)); color: #fff; }
.ctabanner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 24px; flex-wrap: wrap; }
.ctabanner h2 { font-size: clamp(24px, 3.5vw, 34px); }
.ctabanner p { opacity: .9; margin-top: 6px; }

/* ===== Contact ===== */
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact__info h2 { font-size: clamp(26px, 4vw, 38px); margin: 8px 0 14px; }
.contact__info > p { color: var(--slate); margin-bottom: 26px; }
.contact__list { display: grid; gap: 18px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list li span { font-size: 20px; width: 44px; height: 44px; background: #fff; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow); }
.contact__list strong { display: block; font-size: 14px; color: var(--muted); font-weight: 600; }
.contact__list a:hover { color: var(--blue); }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; background: #fbfdfe; transition: .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,116,144,.12); background: #fff; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate); margin: 6px 0 20px; }
.checkbox input { margin-top: 3px; }
.form__note { margin-top: 14px; font-size: 14px; font-weight: 600; text-align: center; }
.form__note.ok { color: var(--accent); }
@media (max-width: 880px) { .contact__inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #cbd5e1; padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col a { display: block; color: #94a3b8; padding: 5px 0; font-size: 14.5px; transition: .2s; }
.footer__col a:hover { color: #fff; }
.footer__col--brand p { font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer__col--brand .logo { margin-bottom: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 13.5px; color: #94a3b8; flex-wrap: wrap; gap: 10px; }
.footer__links { display: flex; gap: 18px; }
.footer__links a:hover { color: #fff; }
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }

/* ===== Floating CTA ===== */
.floating-cta { position: fixed; right: 20px; bottom: 20px; z-index: 60; background: var(--accent); color: #fff; font-weight: 700; padding: 14px 22px; border-radius: 999px; box-shadow: 0 12px 28px -8px rgba(22,163,74,.6); transition: .25s; }
.floating-cta:hover { transform: translateY(-3px); }
@media (max-width: 600px) { .floating-cta { display: none; } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Säljchatt-widget ===== */
.slc { position: fixed; right: 20px; bottom: 20px; z-index: 80; font-family: 'Inter', sans-serif; }
.slc__bubble { display: flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; border: 0; cursor: pointer; padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: 0 14px 30px -8px rgba(22,163,74,.6); transition: .25s; }
.slc__bubble:hover { transform: translateY(-3px); }
.slc__bubble-icon { font-size: 18px; }
.slc__panel { position: absolute; right: 0; bottom: 70px; width: 360px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 120px); background: #fff; border-radius: 20px; box-shadow: 0 30px 70px -20px rgba(15,23,42,.45); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none; transition: .28s cubic-bezier(.16,1,.3,1); }
.slc__panel.open { opacity: 1; transform: none; pointer-events: auto; }
.slc__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: linear-gradient(120deg, var(--blue-dark), var(--blue-600)); color: #fff; }
.slc__avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--blue); font-weight: 800; display: grid; place-items: center; font-size: 18px; }
.slc__head strong { display: block; font-size: 15px; }
.slc__head span { font-size: 12.5px; opacity: .9; }
.slc__close { margin-left: auto; background: rgba(255,255,255,.18); border: 0; color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 14px; }
.slc__body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: #f6f9fb; }
.slc__msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; animation: slcIn .3s ease; }
.slc__msg--bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.slc__msg--user { background: var(--blue); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
@keyframes slcIn { from { opacity: 0; transform: translateY(8px); } }
.slc__foot { padding: 14px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; background: #fff; }
.slc__opt { background: #ecfeff; border: 1px solid #a5f3fc; color: var(--blue-dark); padding: 9px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: .18s; }
.slc__opt:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.slc__inputrow { display: flex; gap: 8px; width: 100%; }
.slc__inputrow input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 14.5px; font-family: inherit; }
.slc__inputrow input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,116,144,.12); }
.slc__inputrow button { background: var(--blue); color: #fff; border: 0; width: 44px; border-radius: 10px; font-size: 18px; cursor: pointer; }
.slc__done { width: 100%; text-align: center; background: #dcfce7; color: #166534; padding: 12px; border-radius: 12px; font-size: 14px; }
@media (max-width: 600px) { .slc__bubble-txt { display: none; } .slc__bubble { padding: 16px; } }
