:root{
  --bg: #f3f6fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .08);
  --blue: #1e73ff;
  --blue2:#0f55d6;
  --shadow: 0 14px 40px rgba(15, 23, 42, .14);
  --shadow2: 0 10px 24px rgba(15, 23, 42, .10);
  --radius: 16px;
  --radius2: 14px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(#e9f0ff 0%, var(--bg) 14%, var(--bg) 100%);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.topbar{
  position:absolute;
  top:0; left:0; right:0;
  z-index:30;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand .logo{
  width:46px;
  height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, #2a7bff 0%, #0b4dd2 100%);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  box-shadow: 0 10px 22px rgba(30,115,255,.25);
}
.brand span{ font-size:20px; }
.menu{
  display:flex;
  align-items:center;
  gap:26px;
  color:#0b2b55;
  font-weight:500;
}
.menu a{ opacity:.85; }
.menu a:hover{ opacity:1; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%);
  color:#fff;
  font-weight:700;
  box-shadow: 0 14px 28px rgba(30,115,255,.25);
  border:1px solid rgba(255,255,255,.15);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 34px rgba(30,115,255,.28); }
.btn:active{ transform: translateY(0); }

/* =========================
   HERO – GEMENSAM BAS
========================= */
.hero{
  position:relative;
  min-height:520px;
  padding-top:80px;
  overflow:hidden;
  border-bottom-left-radius:24px;
  border-bottom-right-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
}

/* Overlay (styr mörkhet här) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  z-index:1;
}

/* Innehållet ovanpå overlay */
.hero-content{
  position:relative;
  z-index:2;
  padding:56px 0 120px;
  width:100%;
}

/* Bakåtkompatibilitet (om någon sida fortfarande använder hero-inner) */
.hero-inner{
  position:relative;
  z-index:2;
  padding:56px 0 120px;
}

.hero h1{
  margin:0 0 12px;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height:1.05;
  color:#fff;
  font-weight:900;
  letter-spacing:-0.6px;
  text-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.hero p{
  margin:0 0 22px;
  color: rgba(255,255,255,.88);
  font-size:16px;
  max-width:520px;
  font-weight:500;
  text-shadow: 0 16px 30px rgba(0,0,0,.25);
}


.service-strip{
  position:relative;
  margin-top:-70px;
  z-index:20;
}
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.service-card{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow2);
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-height:82px;
}
.icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(30,115,255,.18), rgba(30,115,255,.06));
  border: 1px solid rgba(30,115,255,.22);
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.service-card h3{
  margin:0;
  font-size:16px;
  font-weight:800;
  color:#0b2b55;
}
.service-card small{
  display:block;
  margin-top:4px;
  color: var(--muted);
  font-weight:500;
}

.section{ padding:64px 0; }
.section-title{
  text-align:center;
  margin:0 0 10px;
  font-size:32px;
  font-weight:900;
  color:#0b2b55;
  letter-spacing:-0.3px;
}
.section-sub{
  text-align:center;
  margin:0 auto 26px;
  color: var(--muted);
  max-width:620px;
  font-weight:500;
}

.value-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.value-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding:22px 18px;
  text-align:center;
}
.value-card .bigicon{
  width:56px;
  height:56px;
  margin:0 auto 10px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(30,115,255,.20), rgba(30,115,255,.06));
  border: 1px solid rgba(30,115,255,.22);
  display:grid;
  place-items:center;
}
.value-card h4{
  margin:6px 0 8px;
  font-size:16px;
  font-weight:900;
  color:#0b2b55;
}
.value-card p{
  margin:0;
  color: var(--muted);
  font-size:13px;
  font-weight:500;
}

.divider-title{
  text-align:center;
  font-size:22px;
  font-weight:900;
  color:#0b2b55;
  margin:6px 0 18px;
}

.tabs{
  display:flex;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow: var(--shadow2);
  overflow:hidden;
  width: min(980px, 100%);
  margin:0 auto 18px;
}
.tab{
  border:0;
  font-family: inherit;
  flex:1;
  padding:12px 14px;
  text-align:center;
  font-weight:800;
  color:#0b2b55;
  cursor:pointer;
  user-select:none;
  background:#fff;
  border-right:1px solid var(--line);
}
.tab:last-child{ border-right:none; }
.tab:focus-visible{ outline: 3px solid rgba(30,115,255,.55); outline-offset: -3px; }
.tab.active{
  background: linear-gradient(180deg, rgba(30,115,255,.16), rgba(30,115,255,.05));
  position:relative;
}
.tab.active::after{
  content:"";
  position:absolute;
  left:16px; right:16px;
  bottom:0;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
}

.slider{
  width: min(980px, 100%);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  min-height:270px;
  position:relative;
}
.slide-media{
  background:
    radial-gradient(600px 220px at 30% 30%, rgba(255,255,255,.25), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(30,115,255,.18), rgba(15,85,214,.05));
  border-right:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}
.media-box{
  width:100%;
  height:200px;
  border-radius:14px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .05), rgba(15,23,42,.02)),
    url("../images/hero-goteborg.jpg") center/cover no-repeat;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 36px rgba(15,23,42,.12);
}
.slide-body{
  padding:28px 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.slide-body h3{
  margin:0;
  font-size:20px;
  font-weight:900;
  color:#0b2b55;
}
.slide-body p{
  margin:0 0 10px;
  color: var(--muted);
  font-weight:500;
  font-size:14px;
}
.dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:14px;
}
.dot{
  width:8px; height:8px;
  padding:0;
  cursor:pointer;
  appearance:none;
  border-radius:999px;
  background: rgba(15,23,42,.18);
  border:1px solid rgba(15,23,42,.10);
}
.dot.active{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  border-color: rgba(30,115,255,.35);
  transform: scale(1.05);
}
.dot:focus-visible{ outline: 3px solid rgba(30,115,255,.55); outline-offset: 3px; }

.arrow{
  padding:0;
  font-family: inherit;
  appearance:none;
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 12px 22px rgba(15,23,42,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
  user-select:none;
}
.arrow.left{ left:12px; }
.arrow.right{ right:12px; }
.arrow:hover{ transform: translateY(-50%) scale(1.02); }
.arrow:focus-visible{ outline: 3px solid rgba(30,115,255,.55); outline-offset: 3px; }

.cta{
  text-align:center;
  padding:50px 0 68px;
}
.cta h2{
  margin:0 0 10px;
  font-size:28px;
  font-weight:900;
  color:#0b2b55;
  letter-spacing:-0.2px;
}
.cta p{
  margin:0 0 18px;
  color: var(--muted);
  font-weight:500;
}

footer{
  padding:18px 0 26px;
  color: rgba(100,116,139,.9);
  font-weight:500;
  font-size:12px;
  text-align:center;
}

/* Responsive */
@media (max-width: 980px){
  .menu{ display:none; }
  .menu-toggle{ display:flex; }
  .service-grid{ grid-template-columns: 1fr; }
  .value-grid{ grid-template-columns: 1fr; }
  .slider{ grid-template-columns: 1fr; }
  .slide-media{ border-right:none; border-bottom:1px solid var(--line); }
  .arrow{ display:none; }
}
.hero-services{
  background-image: url('../images/hero-services.webp');
  min-height: 550px;
}


/* =========================
   SERVICES – CARDS
========================= */

.section-head {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-head p {
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
}

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

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

/* 4 columns (if screen is wide enough) */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 18px 16px;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
}

.service-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.service-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

/* Inline SVG icon */
.service-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    opacity: 0.95;
}

.service-icon path {
    fill: currentColor;
}

.service-card ul {
    margin: 0;
    padding-left: 18px;
}

.service-card li {
    margin: 8px 0;
    line-height: 1.35;
}

.services-cta {
    margin-top: 26px;
    text-align: center;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
}

.services-cta p {
    margin: 0 0 12px;
    opacity: 0.95;
}


/* =========================
   TJÄNSTER – LANDING LAYOUT
========================= */



.hero-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 24px;
        text-align: left;
        align-items: start;
    }
    .hero.hero-split .hero-content { text-align: left; }
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 14px 0 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.btn-ghost {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
    opacity: 0.95;
}

.card {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 18px 16px;
}

.card h2, .card h3 { margin-top: 0; }

.muted { opacity: 0.88; }
.tiny { font-size: 0.9rem; }

.feature-card .mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.mini-tile {
    border-radius: 14px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}

.mini-tile strong { display: block; margin-bottom: 4px; }
.mini-tile span { display: block; opacity: 0.85; font-size: 0.95rem; }

.section-dark { padding: 64px 0; }
.section-soft { padding: 64px 0; }

.section-head.align-left { text-align: left; margin-left: 0; }
.section-head.align-left p { max-width: 720px; }

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

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

.step-card {
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}

.center-actions { text-align: center; margin-top: 18px; }

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 900px) {
    .two-col { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.checklist li {
    position: relative;
    padding-left: 26px;
    margin: 10px 0;
    opacity: 0.95;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.95;
}

.result {
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

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

.price-card {
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.price-card.featured {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.price-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.9rem;
    white-space: nowrap;
}

.faq {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 14px 14px;
    list-style: none;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "＋";
    float: right;
    opacity: 0.8;
}

.faq-item[open] summary::after { content: "－"; }

.faq-body {
    padding: 0 14px 14px;
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.contact-form .form-row {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.20);
    color: inherit;
    padding: 10px 12px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { opacity: 0.7; }

.btn-full { width: 100%; }



/* =========================
   TJÄNSTER – EXTRA INNEHÅLL
========================= */

.service-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

@media (min-width: 900px) {
    .service-blocks { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.service-block {
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
}

@media (min-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
}


/* =========================
   TJÄNSTER – CLEAN HERO HELPERS
========================= */

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 14px 0 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.btn-ghost {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
    opacity: 0.95;
}


/* =========================
   TJÄNSTER – SERVICE BLOCKS
========================= */

.service-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
}

@media (min-width: 900px) {
    .service-blocks { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.service-block {
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}


/* =========================
   TJÄNSTER – WHY GRID
========================= */

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
}

@media (min-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
}



/* =========================
   TOPBAR – LIGHT ON HERO
========================= */

/* Topbar sits over hero image: make text light for contrast */
.topbar .brand,
.topbar .brand span,
.topbar .menu,
.topbar .menu a{
  color:#fff;
}

/* Keep CTA button readable, and links slightly softer until hover */
.topbar .menu a{ opacity:.92; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.topbar .menu a:hover{ opacity:1; }

/* Optional: subtle glass effect so menu is always readable */
.topbar{
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================
   HERO – CENTER CONTENT
========================= */

.hero .hero-content{
  text-align:center;
}

.hero .hero-actions{
  justify-content:center;
}

.hero .hero-badges{
  justify-content:center;
}


/* =========================
   HOME HERO – CENTER
========================= */

.hero .hero-content{
  text-align:center;
}

.hero .hero-cta{
  display:flex;
  justify-content:center;
  margin-top:18px;
}


/* =========================
   HERO LEAD CENTER FIX
========================= */

.hero .lead{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}



/* =========================
   SERVICE BOX STYLING
========================= */

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

@media(min-width:768px){
  .service-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(min-width:1100px){
  .service-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}

.service-box{
  padding:28px;
  border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  transition:all 0.25s ease;
}

.service-box:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.06);
}



/* =========================
   SMALL INFO BOXES
========================= */

.info-box{
  margin-top:12px;
  padding:16px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  font-size:0.95rem;
  line-height:1.6;
}



/* =========================
   FORCE VISIBLE INFO BOXES
========================= */

.service-box .info-box{
  display:block;
  margin-top:14px;
  padding:18px;
  border-radius:14px;
  background:rgba(0,0,0,0.35);   /* darker so it clearly shows */
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
}

.service-box{
  background:rgba(255,255,255,0.03);
}



/* =========================
   BOXES – WHITE THEME + ICONS
========================= */

.service-box{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(0,0,0,0.10) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.service-box:hover{
  background:#ffffff !important;
  border-color: rgba(0,0,0,0.14) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}

.service-box .info-box{
  background:#f6f7f9 !important;
  border:1px solid rgba(0,0,0,0.10) !important;
  color:#111111 !important;
}

.service-box__head{
  display:flex;
  align-items:center;
  gap:12px;
}

.box-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  border:1px solid rgba(0,0,0,0.06);
  flex:0 0 34px;
}

.box-icon svg{
  width:18px;
  height:18px;
}

.box-icon svg path{
  fill: currentColor;
}

.service-box h3{
  margin:0;
}


/* =========================
   SERVICES – MATCH BLUE ICON CARDS
========================= */

.service-value-grid{
  margin-top: 26px;
}

/* If value-grid is 3 cards already, keep it; ensure services can show 3 columns nicely */
@media (min-width: 1100px){
  .service-value-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =========================
   TJÄNSTER – VALUE CARD HELPERS
========================= */

.section-title { margin: 0; }
.section-sub { opacity: 0.9; margin-top: 8px; }

.bullet{
  margin: 12px 0 0;
  padding-left: 18px;
}

.bullet li{
  margin: 8px 0;
  line-height: 1.4;
}

.plan-grid{
  margin-top: 20px;
}

.plan-card .plan-top{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.plan-card .plan-price{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  white-space: nowrap;
}

.value-card.featured{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

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


/* =========================
   TJÄNSTER – FINAL STYLE ADJUSTMENTS
========================= */

#tjanster .value-card{
  text-align: right;
}

#tjanster .value-card,
#tjanster .value-card h4,
#tjanster .value-card p,
#tjanster .value-card li,
#tjanster .value-card span{
  font-family: inherit;
}

#tjanster .value-card .bigicon{
  margin-left: auto;
  margin-right: 0;
}

#tjanster .bullet{
  padding-right: 18px;
  padding-left: 0;
}

#tjanster .bullet li{
  list-style-position: inside;
}



/* =========================
   TJÄNSTER – LEFT ALIGN FIX
========================= */

#tjanster .value-card{
  text-align: left !important;
}

#tjanster .value-card .bigicon{
  margin-left: 0 !important;
  margin-right: auto !important;
}

#tjanster .bullet{
  padding-left: 18px !important;
  padding-right: 0 !important;
}



/* =========================
   TJÄNSTER – SECTION ALIGNMENTS
========================= */

/* Right align specific headings */
#tjanster .support-right,
#tjanster .web-right{
  text-align: right;
}

/* Align whole Supportavtal and Web sections text right */
.support-right,
.web-right{
  text-align: right;
}

/* =========================
   TJÄNSTER – RIGHT ALIGN BOX TEXT ONLY
========================= */

/* Right align text inside Supportavtal boxes */
#tjanster .plan-grid .value-card{
  text-align: right;
}

/* Right align text inside Hemsidor för företag boxes */
#tjanster .section-dark .plan-grid .value-card{
  text-align: right;
}

/* Keep headings normal (left) */
#tjanster .plan-grid .value-card h4{
  text-align: left;
}



/* =========================
   TJÄNSTER – FORCE LEFT ALIGN
========================= */

#tjanster .plan-grid .value-card,
#tjanster .section-dark .plan-grid .value-card{
  text-align: left !important;
}



/* =========================
   TJÄNSTER – PREMIUM SPACING
========================= */

/* More breathing room inside cards */
#tjanster .value-card{
  padding: 36px 34px;
  border-radius: 18px;
}

/* Better heading spacing */
#tjanster .value-card h4{
  margin-bottom: 14px;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

/* Improve paragraph readability */
#tjanster .value-card p{
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Improve bullet spacing */
#tjanster .bullet{
  margin-top: 14px;
}

#tjanster .bullet li{
  margin: 10px 0;
  line-height: 1.6;
}

/* More spacing between card rows */
#tjanster .value-grid{
  gap: 28px;
}



/* =========================
   TJÄNSTER – SUBTLE SHADOW
========================= */

#tjanster .value-card{
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

#tjanster .value-card:hover{
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}



/* =========================
   INDEX – MATCH SERVICE SHADOW
========================= */

.value-card{
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover{
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}



/* =========================
   CENTER ICONS IN BOXES
========================= */

.value-card .bigicon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 0 auto 18px auto;
}



/* =========================
   CENTER HEADINGS IN BOXES
========================= */

.value-card h4{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}



/* =========================
   TJÄNSTER – CENTER ICON + HEADING
========================= */

#tjanster .value-card .bigicon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 0 auto 18px auto;
}

#tjanster .value-card h4{
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}



/* =========================
   CENTER SECTION TITLES – TJANSTER
========================= */

#tjanster .section-title{
  text-align: center;
}



/* =========================
   TJÄNSTER – FINAL UNIFIED TYPOGRAPHY
========================= */

/* All service boxes: left aligned body text */
#tjanster .value-card{
  text-align: left !important;
}

/* Center ONLY headings inside boxes */
#tjanster .value-card h4{
  text-align: center !important;
  font-size: 1.15rem !important;
  font-weight: 600;
}

/* Ensure consistent font + size everywhere inside cards */
#tjanster .value-card,
#tjanster .value-card p,
#tjanster .value-card li,
#tjanster .value-card span{
  font-family: inherit !important;
  font-size: 1rem !important;
}

/* Keep bullets clean */
#tjanster .bullet{
  padding-left: 18px;
}



/* =========================
   VALUE CARDS – ICON ABOVE HEADING (CONSISTENT)
========================= */

.value-card h4{
  display: block;
}

.value-card .bigicon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 0 auto 18px auto;
}


/* =========================
   TJÄNSTER – RIGHT ALIGN WEBSITES BOX TEXT
========================= */

/* Target the Hemsidor för företag section plan grid */
#tjanster .section-dark .plan-grid .value-card{
  text-align: right;
}

/* Keep heading centered even if body is right aligned */
#tjanster .section-dark .plan-grid .value-card h4{
  text-align: center !important;
}



/* =========================
   TJÄNSTER – UNIFIED HEADING SIZE
========================= */

#tjanster .value-card h4{
  font-size: 1.15rem !important;
  font-weight: 600;
}



/* =========================
   TJÄNSTER – PREMIUM RIGHT BULLETS (HEMSIDOR)
========================= */

/* Target only website pricing boxes */
#tjanster .section-dark .plan-grid .value-card .bullet{
  list-style-position: outside;
  padding-right: 22px;
  padding-left: 0;
  margin-top: 16px;
}

#tjanster .section-dark .plan-grid .value-card .bullet li{
  text-align: right;
  margin: 10px 0;
  line-height: 1.65;
}

/* Slight visual balance tweak */
#tjanster .section-dark .plan-grid .value-card{
  padding: 38px 36px;
}



/* =========================
   TJÄNSTER – PREMIUM RIGHT BULLETS (SUPPORTAVTAL)
========================= */

/* Target Supportavtal pricing boxes */
#tjanster .plan-grid .value-card .bullet{
  list-style-position: outside;
  padding-right: 22px;
  padding-left: 0;
  margin-top: 16px;
}

#tjanster .plan-grid .value-card .bullet li{
  text-align: right;
  margin: 10px 0;
  line-height: 1.65;
}

/* Slight padding balance */
#tjanster .plan-grid .value-card{
  padding: 38px 36px;
}



/* =========================
   FIX – PREMIUM RIGHT BULLETS (SCOPED BY SECTION IDS)
========================= */

/* Supportavtal */
#supportavtal .value-card{
  text-align: right;
  padding: 38px 36px;
}

#supportavtal .bullet{
  list-style-position: outside;
  padding-right: 22px;
  padding-left: 0;
  margin-top: 16px;
}

#supportavtal .bullet li{
  text-align: right;
  margin: 10px 0;
  line-height: 1.65;
}

/* Hemsidor – paket */
#hemsidor-paket .value-card{
  text-align: right;
  padding: 38px 36px;
}

#hemsidor-paket .bullet{
  list-style-position: outside;
  padding-right: 22px;
  padding-left: 0;
  margin-top: 16px;
}

#hemsidor-paket .bullet li{
  text-align: right;
  margin: 10px 0;
  line-height: 1.65;
}


/* =========================
   FORCE LEFT ALIGN – SUPPORTAVTAL & HEMSIDOR
========================= */

#supportavtal .value-card,
#hemsidor-paket .value-card{
  text-align: left !important;
}

#supportavtal .bullet,
#hemsidor-paket .bullet{
  padding-left: 18px !important;
  padding-right: 0 !important;
}

#supportavtal .bullet li,
#hemsidor-paket .bullet li{
  text-align: left !important;
}



/* =========================
   TJÄNSTER – NEW PRO LAYOUT
========================= */

.section-head.center{ text-align:center; max-width: 860px; margin: 0 auto 18px; }
.section-sub{ font-size: 1.05rem; opacity: .95; margin-top: 10px; }

.gradient-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

@media (min-width: 760px){
  .gradient-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .gradient-grid{ grid-template-columns: repeat(4, 1fr); }
}

.gradient-card{
  position: relative;
  display:block;
  padding: 18px 18px 16px;
  border-radius: 18px;
  text-decoration:none;
  color: #fff;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transform: translateZ(0);
}
.gradient-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }

.gradient-card h3{ margin: 12px 0 6px; font-size: 1.05rem; }
.gradient-card p{ margin: 0; opacity: .95; line-height: 1.45; }

.gc-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
}

.gc-blue{ background: linear-gradient(135deg, #1287ff 0%, #0f55d6 100%); }
.gc-purple{ background: linear-gradient(135deg, #7c4dff 0%, #4c2bd6 100%); }
.gc-orange{ background: linear-gradient(135deg, #ff7a18 0%, #ff3d00 100%); }
.gc-green{ background: linear-gradient(135deg, #24c777 0%, #0ea56b 100%); }

.details-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 980px){
  .details-grid{ grid-template-columns: 1fr 1fr; }
}

.detail-card{
  border-radius: 18px;
  padding: 22px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.detail-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.detail-badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 600;
}

.detail-price{ opacity: .95; }

.split-head{
  text-align:center;
  max-width: 860px;
  margin: 0 auto 20px;
}

.split-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

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

.split-panel{
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.section-dark .split-panel{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.split-panel h3{
  margin: 0 0 14px;
  font-size: 1.05rem;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.split-price{
  font-size: .95rem;
  opacity: .9;
  white-space: nowrap;
}

.split-panel.featured{
  border-color: rgba(15,85,214,0.35);
  box-shadow: 0 16px 34px rgba(15,85,214,0.12);
}

.section-dark .split-panel.featured{
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 16px 34px rgba(0,0,0,0.26);
}

.checklist{
  margin: 0;
  padding-left: 18px;
}
.checklist li{
  margin: 10px 0;
  line-height: 1.6;
}

.cta-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 980px){
  .cta-row{ grid-template-columns: 1fr 1fr; }
}

.cta-box{
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.cta-box.featured{
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}


/* =========================
   HOME – PRO INDEX LAYOUT
========================= */

.home-hero{
  position: relative;
  min-height: clamp(420px, 72vh, 760px);
  display:flex;
  align-items:center;
  padding: 90px 0 48px;
  isolation:isolate;

  /* Match the shared hero look */
  overflow:hidden;
  border-bottom-left-radius:24px;
  border-bottom-right-radius:24px;
}

.home-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
}

.home-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.01);
}

.home-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.12) 100%);
}

.home-hero__inner{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 1000px){
  .home-hero__inner{
    grid-template-columns: 1.15fr .85fr;
    align-items:center;
  }
}

.home-hero__copy h1{
  color:#fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 12px;
  text-shadow: 0 12px 32px rgba(0,0,0,.45);
}

.home-hero__copy p{
  color:#fff;
  opacity:.95;
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 16px;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
  max-width: 52ch;
}

.home-hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.home-hero__trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.home-hero__cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (min-width: 1000px){
  .home-hero__cards{ grid-template-columns: 1fr 1fr; }
}

.mini-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  padding: 16px 14px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:#fff;
}

.mini-card h3{
  margin: 12px 0 6px;
  font-size: 1.0rem;
}

.mini-card p{
  margin: 0;
  opacity: .92;
  line-height: 1.45;
  font-size: .95rem;
}

.mc-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}

.mc-blue{ background: linear-gradient(135deg, rgba(18,135,255,.42) 0%, rgba(15,85,214,.34) 100%); }
.mc-purple{ background: linear-gradient(135deg, rgba(124,77,255,.40) 0%, rgba(76,43,214,.30) 100%); }
.mc-orange{ background: linear-gradient(135deg, rgba(255,122,24,.40) 0%, rgba(255,61,0,.30) 100%); }
.mc-green{ background: linear-gradient(135deg, rgba(36,199,119,.40) 0%, rgba(14,165,107,.30) 100%); }

/* Why section */
.why-grid-home{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

@media (min-width: 980px){
  .why-grid-home{
    grid-template-columns: 1fr 1fr 1fr 1.15fr;
    align-items: stretch;
  }
}

.why-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.why-card h3{ margin: 12px 0 8px; font-size: 1.05rem; }
.why-card p{ margin: 0; opacity: .9; line-height: 1.65; }

.why-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #eef4ff;
  border: 1px solid rgba(0,0,0,0.06);
}

.why-cta{
  border-radius: 18px;
  padding: 26px 22px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18,135,255,.92) 0%, rgba(15,85,214,.92) 100%);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}

.why-cta h3{ margin:0 0 10px; font-size: 1.15rem; }
.why-cta p{ margin:0 0 14px; opacity: .95; line-height: 1.6; }


/* =========================
   CONTACT – MATCH PRO STYLE
========================= */

.contact-hero{
  min-height: clamp(380px, 58vh, 680px);
  padding: 88px 0 40px;
}

.alert{
  border-radius: 14px;
  padding: 14px 14px;
  margin: 18px 0;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.alert-success{
  border-color: rgba(14,165,107,0.25);
  background: rgba(14,165,107,0.08);
}

.alert-error{
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.08);
}

.alert-warn{
  border-color: rgba(245,158,11,0.30);
  background: rgba(245,158,11,0.10);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 980px){
  .contact-grid{
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.contact-card{
  border-radius: 18px;
  padding: 26px 22px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.contact-card--form{
  padding: 26px 22px;
}

.contact-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px 0;
}

.contact-meta__row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.10);
}
.contact-meta__row:last-child{ border-bottom: none; }

.contact-meta__label{ opacity: .75; }
.contact-meta__value{ font-weight: 600; }

.contact-form{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.form-row label{
  display:block;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 12px;
  outline: none;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.03);
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(15,85,214,0.35);
  box-shadow: 0 0 0 4px rgba(15,85,214,0.10);
}

.recaptcha-wrap{
  display:flex;
  justify-content:flex-start;
  padding: 6px 0 0;
}


/* =========================
   MOBILE FIXES (LAYOUT + NAV)
========================= */

*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }

/* Mobile menu button */
.menu-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  align-items:center;
  justify-content:center;
  gap: 5px;
  padding: 10px;
}
.menu-toggle span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(255,255,255,0.95);
  border-radius: 99px;
}

/* Mobile menu drawer */
.menu-mobile{
  display:none;
  padding: 10px 20px 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.menu-mobile a{
  display:block;
  padding: 12px 0;
  color: #fff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.menu-mobile a.btn{
  display:inline-block;
  margin-top: 12px;
  border-bottom: none;
}

/* Active state */
.menu-mobile.is-open{ display:block; }
body.nav-open{ overflow:hidden; }

@media (max-width: 980px){
  .menu{ display:none; }
  .menu-toggle{ display:flex; }
}

/* Home hero cards: stack on very small screens */
@media (max-width: 420px){
  .home-hero__cards{ grid-template-columns: 1fr; }
  .home-hero{ padding: 84px 0 36px; min-height: 66vh; }
  .home-hero__copy p{ font-size: 1.02rem; }
}



/* =========================
   HERO BADGES – LIGHTER + CLEARER
========================= */

.hero .badge,
.home-hero .badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.34);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}

.hero .badge:hover,
.home-hero .badge:hover{
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.44);
}



/* =========================
   PAGES – PRISER/REFERENSER/SÄKERHET
========================= */

.case-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 980px){
  .case-grid{ grid-template-columns: repeat(3, 1fr); }
}

.case-card{
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.case-top{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.case-tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(15,85,214,0.18);
  color: #0f55d6;
  font-weight: 600;
  font-size: .9rem;
}
.case-result{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.10);
}

.price-tiles{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 980px){
  .price-tiles{ grid-template-columns: repeat(3, 1fr); }
}
.price-tile{
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.security-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 980px){
  .security-grid{ grid-template-columns: repeat(2, 1fr); }
}
.sec-card{
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

/* CTA PRO */
.cta-pro{
  padding-top: 56px;
  padding-bottom: 56px;
}
.cta-pro__inner{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(18,135,255,.90) 0%, rgba(15,85,214,.92) 55%, rgba(10,35,110,.92) 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  display:grid;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .cta-pro__inner{ grid-template-columns: 1.2fr .8fr; }
}
.cta-pro__copy{
  padding: 30px 26px;
  color:#fff;
}
.cta-pro__copy h2{ margin: 10px 0 10px; font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
.cta-pro__copy p{ margin: 0 0 14px; opacity: .95; line-height: 1.65; max-width: 60ch; }
.cta-pro__badges{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }

.cta-pro__card{
  padding: 28px 22px;
  background: rgba(255,255,255,0.10);
  border-left: 1px solid rgba(255,255,255,0.14);
  color:#fff;
}
.cta-pro__card h3{ margin: 0 0 10px; }
.cta-pro__actions{ display:flex; flex-wrap:wrap; gap: 12px; margin: 14px 0 12px; }
.cta-pro__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.cta-pro__mini div{
  border-radius: 16px;
  padding: 12px 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  text-align:center;
}
@media (max-width: 420px){
  .cta-pro__mini{ grid-template-columns: 1fr; }
}


/* =========================
   SUPPORT + KUNSKAPSBANK
========================= */

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Support portal */
.portal-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:18px; }
@media (min-width: 980px){ .portal-grid{ grid-template-columns: 1.2fr .8fr; align-items:start; } }
.portal-card{
  border-radius: 18px;
  padding: 24px 22px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.portal-divider{ height:1px; background: rgba(0,0,0,0.10); margin:18px 0; }
.portal-form select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.12);
  padding:12px 12px;
  outline:none;
  background:#fff;
}
.portal-form select:focus{
  border-color: rgba(15,85,214,0.35);
  box-shadow: 0 0 0 4px rgba(15,85,214,0.10);
}
.remote-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.status-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:10px; }
.status-card{
  border-radius: 14px;
  padding: 12px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
  display:flex;
  flex-direction: column;
  gap: 6px;
  text-align:center;
}
.status-card.ok{ border-color: rgba(14,165,107,0.25); background: rgba(14,165,107,0.08); }
.status-card.warn{ border-color: rgba(245,158,11,0.30); background: rgba(245,158,11,0.10); }

/* KB */
.kb-toolbar{ display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 760px){ .kb-toolbar{ grid-template-columns: 1fr 260px; align-items:center; } }
.kb-search input, .kb-filter select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.12);
  padding:12px 12px;
  outline:none;
  background:#fff;
}
.kb-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.pill-btn{
  border: 1px solid rgba(0,0,0,0.10);
  background:#fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 600;
  opacity: .9;
}
.pill-btn.is-active{
  border-color: rgba(15,85,214,0.35);
  background: #eef4ff;
  color: #0f55d6;
}
.kb-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:18px; }
@media (min-width: 980px){ .kb-grid{ grid-template-columns: repeat(3,1fr); } }
.kb-card{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  padding:22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  display:flex; flex-direction:column; gap:10px;
}
.kb-meta{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; opacity:.9; }
.kb-cat{
  display:inline-flex;
  padding: 6px 10px;
  border-radius:999px;
  background:#eef4ff;
  border:1px solid rgba(15,85,214,0.18);
  color:#0f55d6;
  font-weight:700;
  font-size:.9rem;
}
.kb-date{ font-size:.92rem; opacity:.85; }
.kb-tags{ display:flex; gap:8px; flex-wrap:wrap; }
.kb-tag{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.03);
  font-weight:600;
  font-size:.88rem;
}
.kb-link{ margin-top:auto; font-weight:700; text-decoration:none; color:#0f55d6; }
.kb-link:hover{ text-decoration:underline; }
.kb-downloads{ margin-top:34px; }
.downloads-grid{ display:grid; grid-template-columns:1fr; gap:12px; margin-top:14px; }
@media (min-width: 760px){ .downloads-grid{ grid-template-columns: repeat(3,1fr); } }
.download-card{
  border-radius:16px;
  padding:16px 14px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  text-decoration:none;
  color: inherit;
  font-weight:700;
}

.kb-article{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  padding:26px 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.kb-article__meta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:14px; }
.kb-media img{ border-radius:16px; border:1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 22px rgba(0,0,0,0.08); }
.steps{ padding-left:18px; }
.steps li{ margin:12px 0; line-height:1.6; }

/* Accordion */
.accordion .acc-btn{
  width:100%;
  text-align:left;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
  font-weight:700;
  margin-top:10px;
}
.accordion .acc-panel{ display:none; padding:12px 14px 4px; }
.accordion .acc-panel.is-open{ display:block; }



/* =========================
   LEGAL PAGES
========================= */

.policy-card{
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 26px 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.policy-card h2{ margin-top: 20px; margin-bottom: 10px; }

.cookie-table{
  margin-top: 12px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.10);
}
.cookie-row{
  display:grid;
  grid-template-columns: 1.2fr 2.2fr 1fr 1fr;
  gap: 10px;
  padding: 12px 12px;
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cookie-row:last-child{ border-bottom:none; }
.cookie-head{
  background: rgba(0,0,0,0.03);
  font-weight: 700;
}

@media (max-width: 760px){
  .cookie-row{ grid-template-columns: 1fr; }
  .cookie-head{ display:none; }
  .cookie-row div::before{
    content: attr(data-label);
    display:block;
    font-weight:700;
    opacity:.75;
    margin-bottom: 4px;
  }
}



/* Honeypot field (anti-spam) */
.hp-field{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* =========================
   Small utility classes
   (Used to avoid inline styles, so CSP can be stricter)
   ========================= */
.u-pt-10{ padding-top: 10px; }
.u-mt-10{ margin-top: 10px; }
.u-mt-14{ margin-top: 14px; }
.u-mt-26{ margin-top: 26px; }
.u-mt-28{ margin-top: 28px; }
.u-m-0{ margin: 0; }
.u-text-center{ text-align: center; }
.u-cursor-default{ cursor: default; }

/* Active nav link */
.menu a.is-active,
.menu-mobile a.is-active{ opacity: 1; font-weight: 700; }

/* Slider media: keep overlay without using inline styles */
.media-box{ position: relative; overflow: hidden; }
.media-box::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .05), rgba(15,23,42,.02));
  pointer-events:none;
  z-index:1;
}
.media-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* Respect hidden panels for a11y */
.acc-panel[hidden]{ display:none !important; }



/* =========================
   Home Hero Slider
   ========================= */
.home-hero-slider{
  position: relative;
  overflow: hidden;
}
.home-hero__slides{
  position:absolute;
  inset:0;
  z-index:0;
}
.home-hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .8s ease;
}
.home-hero__slide.is-active{ opacity:1; }
.home-hero__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}
.home-hero__overlay{ z-index:1; }
.home-hero__inner{ position:relative; z-index:2; }

/* Dots */
.home-hero__nav{
  position:absolute;
  left:50%;
  bottom:18px;
  transform: translateX(-50%);
  z-index:3;
  display:flex;
  gap:10px;
  align-items:center;
}
.hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.25);
  cursor:pointer;
  padding:0;
}
.hero-dot.is-active{
  background: rgba(255,255,255,.95);
}
@media (max-width: 680px){
  .home-hero__nav{ bottom:12px; }
}


/* CSS fallback: auto-fade hero slides even if JS is blocked */
@keyframes heroFade {
  0%, 18% { opacity: 1; }
  25%, 100% { opacity: 0; }
}
html:not(.js) .home-hero__slides .home-hero__slide{
  animation: heroFade 22s infinite;
}
html:not(.js) .home-hero__slides .home-hero__slide:nth-child(1){ animation-delay: 0s; }
html:not(.js) .home-hero__slides .home-hero__slide:nth-child(2){ animation-delay: 5.5s; }
html:not(.js) .home-hero__slides .home-hero__slide:nth-child(3){ animation-delay: 11s; }
html:not(.js) .home-hero__slides .home-hero__slide:nth-child(4){ animation-delay: 16.5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html:not(.js) .home-hero__slides .home-hero__slide{ animation: none; }
  html:not(.js) .home-hero__slides .home-hero__slide{ opacity: 0; }
  .home-hero__slides .home-hero__slide.is-active{ opacity: 1; }
  html:not(.js) .home-hero__slides .home-hero__slide:nth-child(1){ opacity: 1; }
}



/* Support hero */
.page-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
  color:#fff;
}

.page-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(5,25,55,0.65), rgba(5,25,55,0.45));
}

.page-hero__content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.page-hero--support{
  background-image:url('../images/support-hero.webp');
}


/* Hero sizing: better on mobile */
@media (max-width: 600px){
  .home-hero{
    min-height: clamp(340px, 56vh, 520px);
    padding: 76px 0 36px;
  }
  .contact-hero{
    min-height: clamp(320px, 50vh, 480px);
    padding: 72px 0 34px;
  }
}


/* =========================
   MOBILE POLISH
========================= */

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

@media (max-width: 980px){
  .container{ width:min(var(--max), calc(100% - 28px)); }

  /* Reduce large vertical spacing */
  section{ padding: 56px 0; }

  /* Heroes */
  .hero{
    padding: 44px 0 76px;
    text-align: center;
  }
  .hero .sub{
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .actions{
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero .actions .btn{
    width: 100%;
    max-width: 360px;
  }

  /* Cards / panels */
  .card, .panel, .portal-card, .contact-card{ border-radius: 14px; }
  .card{ padding: 16px; }

  /* Forms */
  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    font-size: 16px;
  }
  .contact-form .btn,
  .contact-form button,
  .btn-full{
    width: 100%;
  }

  /* General grids (safety net) */
  .grid,
  .two-col,
  .three-col{
    grid-template-columns: 1fr !important;
  }

  /* Tables / overflow areas */
  .table-wrap{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 520px){
  /* Slightly smaller brand text to avoid wrapping */
  .brand span{ display:none; }

  /* Make topbar feel less tall */
  .topbar .container{ padding-left: 0; padding-right: 0; }
  .nav{ padding-left: 14px; padding-right: 14px; }
}





/* =========================
   MOBILE HERO / NAV POLISH
========================= */
@media (max-width: 980px){
  .menu-mobile{
    position:fixed;
    top:72px;
    left:14px;
    right:14px;
    z-index:40;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.16);
    background: rgba(8,20,43,0.94);
    box-shadow: 0 18px 48px rgba(15,23,42,0.30);
  }

  .home-hero{
    min-height: auto;
    padding: 84px 0 30px;
  }

  .home-hero__inner{
    gap: 18px;
  }

  .home-hero__copy{
    max-width: 36rem;
  }

  .home-hero__copy h1{
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 10px;
  }

  .home-hero__copy p{
    font-size: 1rem;
    line-height: 1.55;
    max-width: 32ch;
  }

  .home-hero__cards{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mini-card{
    display:grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items:center;
    padding: 14px;
    background: rgba(10,22,46,0.62);
    border-color: rgba(255,255,255,0.14);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .mini-card h3{
    margin: 0 0 4px;
  }

  .mc-icon{
    width: 52px;
    height: 52px;
    grid-row: span 2;
    background: rgba(255,255,255,0.14);
  }

  .home-hero__trust{
    gap: 8px;
  }

  .hero .badge,
  .home-hero .badge{
    padding: 8px 12px;
    font-size: .94rem;
    background: rgba(255,255,255,0.14);
    box-shadow:none;
  }
}

@media (max-width: 600px){
  .home-hero__media img,
  .home-hero__slide img{
    object-position: center top;
    transform:none;
  }

  .home-hero__copy,
  .home-hero__cta,
  .home-hero__trust{
    align-items:flex-start;
  }

  .home-hero__cta .btn{
    width: 100%;
  }

  .home-hero__nav{
    bottom: 10px;
  }
}
