:root{
  --border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:#fff;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

/* Header / Nav */
.header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo{
  font-weight:800;
  text-decoration:none;
  color:var(--text);
  letter-spacing:-0.2px;
}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  transition: color 0.2s ease;
}

.nav a:hover{
  color:var(--text);
}

/* Mobile burger */
.burger{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:8px 12px;
  font-size:18px;
  line-height:1;
  cursor:pointer;
}

/* Hero */
.hero{
  padding:80px 0 100px;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.hero-card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  background:#fff;
}

h1{
  font-size: clamp(34px, 4vw, 52px);
  margin:0 0 16px;
  letter-spacing:-0.5px;
}

p{
  color:var(--muted);
  margin:0 0 16px;
  line-height:1.5;
}

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

.bullets li{
  margin:8px 0;
}

/* Buttons */
.cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid #111827;
  text-decoration:none;
  color:#fff;
  background:#111827;
  font-weight:500;
  cursor:pointer;
  transition: all 0.2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn.ghost{
  background:#fff;
  color:#111827;
  border:1px solid var(--border);
}

/* Generic page */
.page{
  padding:26px 0 60px;
}

.muted{
  color:var(--muted);
}

/* “Prose” content area */
.prose p,
.prose li{
  line-height:1.7;
}

/* Cards (services) */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

.card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  text-decoration:none;
  color:var(--text);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  transition: transform .15s ease, box-shadow .15s ease;
  background:#fff;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-size:18px;
  flex: 0 0 auto;
}

.card-title{
  font-weight:700;
  margin-bottom:4px;
}

/* Forms */
.form{
  display:grid;
  gap:12px;
  max-width:520px;
  margin-top: 16px;
}

label{
  display:grid;
  gap:6px;
  font-size:14px;
}

input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font:inherit;
  outline:none;
}

input:focus, textarea:focus{
  border-color:#9ca3af;
}

/* Alerts */
.alert{
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  margin:14px 0;
}

.alert.success{
  border-color:#bbf7d0;
  background:#f0fdf4;
}

/* Honeypot anti-spam */
.hp{ display:none; }

/* Footer */
.footer{
  border-top:1px solid var(--border);
  margin-top:40px;
  padding:18px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:12px;
}

.footer a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.footer a:hover{
  color:var(--text);
}

/* Responsive */
@media (max-width: 860px){
  .burger{ display:inline-block; }

  .header-inner{ flex-wrap:wrap; }

  .nav{
    display:none;
    width:100%;
    padding-top:10px;
  }

  body.nav-open .nav{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-start;
  }

  .hero{ padding:40px 0 60px; }
  .hero-card{ padding:18px; }

  .cards{ grid-template-columns: 1fr; }
}
.contact-section {
  padding: 80px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-header .lead {
  font-size: 18px;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0f1a2b;
  outline: none;
}

.btn-primary {
  background: #0f1a2b;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn-primary:hover {
  opacity: 0.9;
}

.contact-info {
  padding-top: 20px;
}

.trust-box {
  margin-top: 30px;
  background: #f5f7fa;
  padding: 20px;
  border-radius: 12px;
}

.success-box {
  background: #e7f7ed;
  border: 1px solid #b8e6c6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.error-box {
  background: #fdeaea;
  border: 1px solid #f5bcbc;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.error-detail {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 32px;
  }
}
/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border, #e6e8ef);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Gör så att ankare inte hamnar bakom sticky header */
.section {
  scroll-margin-top: 90px;
  padding: 80px 20px;
}
.footer {
  background: #0B1220;
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 100px;
}

.footer a {
  color: #C8A15A;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Mobil */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===========================
   Premium hero + kontaktform
   =========================== */

.hero {
  padding: 70px 0;
}

.hero-wrap{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

/* Vänstersidan */
.hero-copy{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

/* subtil “accent glow” */
.hero-copy::before{
  content:"";
  position:absolute;
  inset: -120px -120px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,161,90,.22), rgba(200,161,90,0) 60%);
  pointer-events:none;
}

.pill-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,.02);
  font-size: 13px;
  color: var(--muted);
}

.pill-accent{
  border-color: rgba(200,161,90,.35);
  background: rgba(200,161,90,.10);
  color: var(--text);
}

.hero-copy h1{
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.hero-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-points{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

.point{
  display:flex;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}

.point-ic{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(11,18,32,.06);
  border: 1px solid var(--border);
  font-weight: 800;
}

.hero-mini{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-card{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(15,23,42,.02);
}

.mini-top{
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 4px;
}

/* Högersidan (formulär) */
.hero-form .form-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.form-head h2{
  font-size: 22px;
  margin: 0 0 6px;
}

.nice-form{
  margin-top: 14px;
}

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

.form-hint{
  font-size: 12.5px;
  margin-top: 8px;
  line-height: 1.5;
}

.btn-wide{
  width: 100%;
  text-align: center;
  border-radius: 14px;
  padding: 14px 18px;
}

.form-foot{
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.6;
}

.form-foot a{
  text-decoration: underline;
}

/* Valfritt: sticky formulär på desktop */
@media (min-width: 1000px){
  .hero-form{
    position: sticky;
    top: 96px;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{
    grid-template-columns: 1fr;
  }
  .hero-copy h1{
    font-size: 36px;
  }
  .hero-mini{
    grid-template-columns: 1fr;
  }
  .two-col{
    grid-template-columns: 1fr;
  }
}
/* ===========================
   Premium Profilsektion
   =========================== */

.profile-section{
  padding: 90px 0;
}

.profile-wrapper{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Bild */
.profile-image-wrapper{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2,6,23,.15);
}

/* Subtil guldkant */
.profile-image-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  border:1px solid rgba(200,161,90,.35);
  pointer-events:none;
}

.profile-image-wrapper img{
  width:100%;
  height:100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display:block;
  filter: contrast(1.05) brightness(.98);
}

/* Text */
.profile-content{
  max-width: 560px;
}

.profile-name{
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: .3px;
}

.profile-title{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.profile-content p{
  line-height: 1.85;
  font-size: 15.5px;
  margin: 0 0 14px;
  color: var(--text);
}

/* Kontaktlänkar */
.profile-contact{
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-contact a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(200,161,90,.45);
  width: fit-content;
  padding-bottom: 2px;
  transition: all .25s ease;
}

.profile-contact a:hover{
  color: var(--text);
  border-bottom-color: rgba(200,161,90,.9);
}

/* Responsiv */
@media (max-width: 950px){
  .profile-wrapper{
    grid-template-columns: 1fr;
  }

  .profile-content{
    max-width: 100%;
  }

  .profile-name{
    font-size: 24px;
  }
}
/* ===== Profil: tjänster ===== */
.profile-services{
  margin-top: 18px;
}

.profile-services-title{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .2px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.service-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15,23,42,.02);
}

.service-ic{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border);
  background: rgba(11,18,32,.06);
  font-size: 16px;
  flex: 0 0 auto;
}

.service-item strong{
  display:block;
  margin-bottom: 2px;
}

/* Mobil */
@media (max-width: 950px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== Premium SVG-tjänster ===== */

.services-grid-new{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-top: 28px;
}

.service-card{
  display:flex;
  gap:18px;
  padding:24px;
  border-radius:20px;
  background: var(--surface);
  border:1px solid var(--border);
  box-shadow: 0 10px 40px rgba(2,6,23,.06);
  transition: all .3s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(2,6,23,.14);
  border-color: rgba(200,161,90,.4);
}

.service-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(15,23,42,.03);
  border:1px solid var(--border);
  color: var(--primary);
  flex-shrink:0;
}

.service-icon svg{
  width:26px;
  height:26px;
}

.service-card h3{
  margin:0 0 6px;
  font-size:18px;
}

.service-card p{
  margin:0;
  font-size:14.5px;
  color:var(--muted);
  line-height:1.6;
}

/* Mobil */
@media (max-width:900px){
  .services-grid-new{
    grid-template-columns:1fr;
  }
}
/* ===========================
   CASES – premiumkort
   =========================== */

.cases-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cases-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2,6,23,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.case-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(2,6,23,.12);
  border-color: rgba(200,161,90,.35);
}

.case-media{
  border-bottom: 1px solid var(--border);
  background: rgba(15,23,42,.02);
}

.case-media img{
  width: 100%;
  display:block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.case-body{
  padding: 16px 16px 18px;
}

.case-meta{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.case-tag{
  font-size: 12.5px;
  border: 1px solid rgba(200,161,90,.35);
  background: rgba(200,161,90,.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.case-year{
  font-size: 12.5px;
  color: var(--muted);
}

.case-title{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.case-lead{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.5px;
}

.case-bullets{
  margin: 0;
  padding-left: 16px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.7;
}

@media (max-width: 980px){
  .cases-grid{
    grid-template-columns: 1fr;
  }
  .case-media img{
    aspect-ratio: 16 / 9;
  }
}
/* ===========================
   CASES – 6 kort med SVG
   =========================== */

.cases-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cases-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2,6,23,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.case-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(2,6,23,.12);
  border-color: rgba(200,161,90,.35);
}

/* SVG-toppen */
.case-illustration{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(15,23,42,.02);
  color: var(--primary);
  position: relative;
}

/* subtil guldglow */
.case-illustration::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(200,161,90,.18), rgba(200,161,90,0) 60%);
  pointer-events:none;
}

.case-illustration svg{
  width: 56px;
  height: 56px;
}

.case-body{
  padding: 16px 16px 18px;
}

.case-meta{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.case-tag{
  font-size: 12.5px;
  border: 1px solid rgba(200,161,90,.35);
  background: rgba(200,161,90,.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.case-year{
  font-size: 12.5px;
  color: var(--muted);
}

.case-title{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.case-lead{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.5px;
}

.case-bullets{
  margin: 0;
  padding-left: 16px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.7;
}

@media (max-width: 980px){
  .cases-grid{
    grid-template-columns: 1fr;
  }
}
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}

.cookie-banner.is-visible{ display:block; }

.cookie-inner{
  max-width: 1100px;
  margin: 0 auto;
  background: #0b1220;
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(2,6,23,.35);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text p{
  margin: 6px 0 0 0;
}

.cookie-text a{ color: inherit; text-decoration: underline; }

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobil */
@media (max-width: 720px){
  .cookie-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions{
    width: 100%;
  }
  .cookie-actions button{
    width: 100%;
  }
}

/* Om du inte redan har btn-secondary */
.btn-secondary{
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
}
.case-illustration{
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #f3f4f6;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.site-header {
  background: #fff;
  padding: 24px 0 8px 0;
  text-align: center;
}

.site-logo {
  max-width: 320px; /* ändra för större/mindre */
  height: auto;
}
/* Logo under menyn */
.logo-banner{
  text-align: center;
  padding: 40px 0 20px;
  background: #fff;
}

.main-logo{
  width: min(520px, 92%);
  height: auto;
  display: inline-block;
}

/* Cookie banner (HP-stil) */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}

.cookie-banner.is-visible{ display:block; }

.cookie-card{
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-title{
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
}

.cookie-muted{
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-muted a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn{
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .05s ease, opacity .15s ease;
}
.cookie-btn:active{ transform: translateY(1px); }

.cookie-btn-ghost{
  background: #f1f5f9;
  border-color: #e6e8ee;
  color: #0f172a;
}

.cookie-btn-primary{
  background: #0b1220;
  color: #fff;
}

@media (max-width: 720px){
  .cookie-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions{
    width: 100%;
  }
  .cookie-actions .cookie-btn{
    width: 100%;
  }
}
/* Logo under menyn */
.logo-banner{
  text-align: center;
  padding: 25px 0 10px;
  background: #fff;
}

.main-logo{
  max-width: 300px;   /* ändra denna siffra om du vill ha större/mindre */
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.info-box {
  background: #f8f9fb;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e3e6ec;
}

.info-box h2 {
  margin-top: 0;
}

.info-box h3 {
  margin-top: 18px;
}

.info-box ul {
  margin-left: 20px;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.header-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:16px 0;
}

.brand-center{
  display:flex;
  justify-content:center;
  width:100%;
}

.logo-img{
  height:70px; /* justera 28-70px om du vill */
  width:auto;
  display:block;
}

.nav.nav-center{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
/* =========================
   Sticky Call CTA – Premium
   ========================= */

/* Visa bara på mobil */
.sticky-call{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 9999;

  display: none;
  width: min(520px, calc(100% - 28px));
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 18px;

  /* grön “solution” vibe */
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #10b981 100%);
  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(16,185,129,0.18) inset;

  text-decoration: none;

  /* smooth */
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px){
  .sticky-call{ display: flex; }
}

/* ikon-bubbla (din bild rund) */
.sticky-ic{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.sticky-ic img{
  width: 34px;
  height: 34px;
  border-radius: 999px;      /* rund bild */
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,0.10);
}

/* text */
.sticky-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.sticky-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 15px;
}

.sticky-sub{
  font-size: 12px;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* pil */
.sticky-go{
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(0,0,0,0.12);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.sticky-go svg{
  width: 18px;
  height: 18px;
}

/* hover/press */
.sticky-call:hover{
  filter: brightness(1.03);
  text-decoration: none;
}

.sticky-call:active{
  transform: translateX(-50%) translateY(1px);
  filter: brightness(0.98);
}

/* liten “soft pulse” (lugnt, inte gimmick) */
@media (prefers-reduced-motion: no-preference){
  .sticky-call{
    animation: stickyPulse 3.6s ease-in-out infinite;
  }
  @keyframes stickyPulse{
    0%, 100%{ box-shadow: 0 18px 40px rgba(0,0,0,0.22), 0 0 0 1px rgba(16,185,129,0.18) inset; }
    50%{ box-shadow: 0 22px 48px rgba(0,0,0,0.24), 0 0 0 1px rgba(16,185,129,0.26) inset; }
  }
}
/* === FORCE HEADER STYLES (last wins) === */
.header-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:14px 0;
}

.brand-center{
  display:flex;
  justify-content:center;
  width:100%;
}

.logo-img{
  height:70px;
  width:auto;
  display:block;
}

.nav.nav-center{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

@media (max-width:768px){
  .logo-img{ height:50px; }
}
