/* =============================
   Kontado demo – unified styles
   (clean + no duplicates)
   ============================= */

/* ===== Design tokens ===== */
:root{
  --bg: #0b1220;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);
  --muted-2: rgba(255,255,255,0.60);
  --link: rgba(255,255,255,0.92);

  --panel: rgba(255,255,255,0.08);
  --panel-2: rgba(255,255,255,0.11);
  --border: rgba(255,255,255,0.14);
  --border-soft: rgba(255,255,255,0.10);

  --accent: #7dd3fc;
  --accent-2: #a78bfa;

  --shadow: 0 18px 60px rgba(0,0,0,0.45);

  --radius: 18px;
  --radius-lg: 22px;

  --container: 1120px;

  /* Kontroller luft over ill2 (juster ved behov) */
  --careers-illus-gap: 84px; /* prøv 64–110px */
}

/* ===== Base / reset-ish ===== */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--link); text-decoration: none; }
a:hover{ text-decoration: underline; }
button{ font: inherit; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.main{ padding: 28px 0 64px; }

.section{ padding: 42px 0; }
.section-tight{ padding: 22px 0; }

.kicker{
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.h1{
  margin: 10px 0 10px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.lead{
  color: var(--muted);
  max-width: 70ch;
  font-size: 16px;
}

/* ===== Reveal ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Topbar ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11,18,32,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(135deg, rgba(125,211,252,0.92), rgba(167,139,250,0.92));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.25);
}
.brand-text{ display: grid; line-height: 1.1; }
.brand-name{ font-weight: 650; letter-spacing: 0.2px; }
.brand-sub{ font-size: 13px; color: var(--muted); }

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav a{
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none !important;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
}
.nav a.is-active{
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
}

/* Nav CTA */
.nav .nav-cta{
  margin-left: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(12,18,30,0.94);
  background: linear-gradient(135deg, rgba(125,211,252,0.95), rgba(167,139,250,0.95));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 28px rgba(0,0,0,0.30);
}
.nav .nav-cta:hover{
  text-decoration: none;
  filter: brightness(1.05);
}

/* Mobile toggle */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
}

/* ===== Hero stripe ===== */
.hero-stripe{
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(125,211,252,0.30) 25%,
    rgba(167,139,250,0.26) 55%,
    transparent 100%
  );
}

/* ===== Cards ===== */
.card{
  background: linear-gradient(to bottom right, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 46px rgba(0,0,0,0.28);
}
.card-inner{ padding: 18px; }

/* ===== Buttons ===== */
.btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  text-decoration: none;
}
.btn-primary{
  background: linear-gradient(135deg, rgba(125,211,252,0.95), rgba(167,139,250,0.95));
  border-color: rgba(255,255,255,0.18);
  color: rgba(12,18,30,0.94);
  box-shadow: 0 12px 34px rgba(0,0,0,0.30);
}
.btn-primary:hover{ filter: brightness(1.06); }
.btn-lg{ padding: 12px 18px; font-size: 16px; }
.btn-pill{ padding: 14px 26px; border-radius: 999px; font-size: 16px; line-height: 1; }

/* ===== Forms (global) ===== */
.form{ display: grid; gap: 12px; }
.field{ display: grid; gap: 8px; }
.label{ font-size: 13px; color: var(--muted); }

.input,
textarea.input,
select.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}
textarea.input{ min-height: 140px; resize: vertical; }

.input:focus{
  border-color: rgba(125,211,252,0.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,0.10);
}

/* ===== Home hero photo (if used) ===== */
.hero-photo{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  min-height: 460px;
}
.hero-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.62) 0%, rgba(11,18,32,0.36) 55%, rgba(11,18,32,0.16) 100%),
    radial-gradient(900px 500px at 20% 20%, rgba(125,211,252,0.14), transparent 60%);
}
.hero-photo > *{ position: relative; z-index: 1; }
@media (max-width: 640px){ .hero-photo{ min-height: 380px; } }

/* ===== Full-bleed hero ===== */
.hero-bleed{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(520px, 52vh, 820px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% 45%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-bleed::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.72) 0%, rgba(11,18,32,0.46) 45%, rgba(11,18,32,0.10) 100%),
    radial-gradient(900px 520px at 18% 40%, rgba(125,211,252,0.10), transparent 60%);
}
.hero-bleed > *{ position: relative; z-index: 1; }
.hero-inner{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(64px, 10vh, 120px) 0;
}
.hero-copy{ max-width: 820px; }
.hero-copy .kicker{ color: rgba(255,255,255,0.70); }
.hero-copy .lead{ max-width: 62ch; }

.hero-bleed--fixed{ background-attachment: fixed; }
@media (max-width: 900px){ .hero-bleed--fixed{ background-attachment: scroll; } }

.hero-bleed--careers{ background-position: 98% 25%; }

@media (max-width: 640px){
  .hero-bleed{
    min-height: clamp(440px, 60vh, 620px);
    background-position: 60% 45%;
  }
  .hero-inner{ padding: 56px 0 48px; }
}

/* ===== Center intro section (services/about-style) ===== */
.section-services-list{
  padding-top: 56px;
  padding-bottom: 64px;
}
.services-center{ text-align: center; }
.services-title{
  margin: 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.services-lead{
  margin: 14px auto 0;
  max-width: 70ch;
  color: rgba(255,255,255,0.70);
  font-size: 15px;
}

/* ===== Services tiles (if used) ===== */
.services-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-tile{
  position: relative;
  text-align: left;
  padding: 22px 18px 22px 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.service-tile::before{
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(125,211,252,0.16);
  border: 1px solid rgba(125,211,252,0.35);
  color: rgba(125,211,252,0.92);
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 820px){
  .services-grid{ grid-template-columns: 1fr; }
  .service-tile{ padding-left: 52px; }
}

/* ===== Services page list (two columns, “no big box”) ===== */
.services-light{
  background: transparent;
  color: var(--text);
  padding: clamp(56px, 7vw, 96px) 0;
}
.services-split{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 3.5vw, 56px);
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 34px);
}
.services-light-title{
  margin: 0;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 650;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.services-underline{
  margin-top: 18px;
  width: min(320px, 100%);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,211,252,0.65), rgba(167,139,250,0.55));
  opacity: 0.9;
}
.services-illus-wrap{ display: flex; justify-content: flex-end; }
.services-illus{
  width: min(360px, 100%);
  height: auto;
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.03);
}

/* remove “big panel” wrapper if used */
.services-light .services-panel{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.services-light .services-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 64px;
  margin-top: clamp(26px, 4vw, 56px);
}
.services-light .svc{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}
.services-light .svc-title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.services-light .svc-title::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125,211,252,0.9), rgba(167,139,250,0.9));
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  opacity: 0.85;
}
.services-light .svc-text{
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
  max-width: 62ch;
}
@media (max-width: 900px){
  .services-split{ grid-template-columns: 1fr; }
  .services-illus-wrap{ justify-content: flex-start; }
  .services-light .services-list{ grid-template-columns: 1fr; gap: 18px; }
}

/* ===== Contact page: left info + right form ===== */
.contact-split{
  display: grid;
  grid-template-columns: 0.9fr 1.25fr; /* mer plass til skjema */
  gap: 56px; /* evt litt mindre luft mellom kolonnene */
  align-items: start;
}


/* Left contact info block */
.contact-info{
  display: grid;
  gap: 26px;
  max-width: 380px;
}

/* sections within contact info */
.ci-block{ display: grid; gap: 10px; }
.ci-title{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .2px;
  margin: 0;
}
.ci-row{
  display: flex;
  align-items: center;
  gap: 12px;
}
.ci-ico{
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
}
.ci-link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
}
.ci-link:hover{ text-decoration: underline; }
.ci-text{
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* palette-friendly line (not “gull”) */
.ci-rule{
  height: 2px;
  width: 100%;
  max-width: 320px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(125,211,252,0.75), rgba(167,139,250,0.55));
  border-radius: 999px;
  opacity: 0.95;
}

/* Right form wrapper (glass) */
.contact-form{
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(16px, 2.2vw, 22px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Contact page fields (no class on inputs) */
.form-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .field{ margin: 0 0 14px; }
.contact-form .field label{
  display: block;
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 6px;
}
.contact-form .field input,
.contact-form .field textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: inherit;
  padding: 12px 12px;
  outline: none;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus{
  border-color: rgba(125,211,252,0.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,0.10);
}

/* Map */
.map-section iframe{
  display: block;
  width: 100%;
  border: none;
}

/* Contact responsive */
@media (max-width: 900px){
  .contact-split{ grid-template-columns: 1fr; }
  .form-grid-2{ grid-template-columns: 1fr; }
}

/* ===== Careers: contact card + form ===== */
.careers-contact{
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(56px, 7vw, 110px);
}
.careers-contact .card{
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden; /* holder ill2 pent inni radius */
}
.careers-contact .card-inner{
  padding: clamp(18px, 3.2vw, 34px);
}

.careers-contact-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 4vw, 52px);
  align-items: start;
}

.careers-contact-title{
  margin: 10px 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.careers-contact-role{
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  margin-bottom: 10px;
}
.careers-contact-divider{
  height: 1px;
  background: linear-gradient(90deg, rgba(125,211,252,0.55), rgba(167,139,250,0.20), rgba(0,0,0,0));
  margin: 16px 0 14px;
}

.careers-contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.careers-contact-list li{
  display: flex;
  align-items: center;
}
.careers-contact-list a{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
}
.careers-contact-list a:hover{
  color: #fff;
  text-decoration: underline;
}
.careers-ico{
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: rgba(255,255,255,0.70);
}
.careers-contact-note{
  margin: 14px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.5;
  max-width: 52ch;
}

/* Careers form layout */
.careers-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.careers-file-hint{
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}

/* ===== Careers illustration (ill2.png)
   Forutsetter at .careers-illus-wrap ligger INNI .careers-contact-left (nederst) */
.careers-contact-left{ position: relative; }
.careers-illus-wrap{
  margin-top: var(--careers-illus-gap); /* “luft over bildet” */
  pointer-events: none;
}
.careers-illus{
  width: min(380px, 92%);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.25));
}

/* Careers responsive */
@media (max-width: 900px){
  .careers-contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .careers-form-row{ grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
  padding: 34px 0 20px;
}
.footer-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-title{
  font-weight: 650;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.footer-text{
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.footer-list a{ color: var(--muted); }
.footer-list a:hover{
  color: var(--text);
  text-decoration: none;
}
.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-sep{ opacity: 0.5; }

/* ===== Responsive nav/footer ===== */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav{
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: rgba(11,18,32,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }
  .nav.is-open{ display: flex; }
  .nav a{ justify-content: space-between; }
  .nav .nav-cta{ margin-left: 0; text-align: center; }
}
@media (max-width: 640px){
  .main{ padding: 18px 0 52px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .brand-sub{ display: none; }
}
/* ============================
   WHY (Hvorfor velge…) – 2 kolonner som original
   Legg HELT nederst i CSS
   ============================ */

.why-section{
  padding: 90px 0 96px;
}

.why-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.why-title{
  margin: 0 0 28px;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
}

/* Viktigste: 2 kolonner */
.why-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 90px);
  margin-top: 28px;
  align-items: start;
}

.why-item{
  display: grid;
  gap: 12px;
}

.why-icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.86);
}

.why-rule{
  height: 2px;
  width: min(520px, 100%);
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(125,211,252,0.75),
    rgba(167,139,250,0.60)
  );
  opacity: 0.85;
  margin: 10px 0 4px;
}

.why-h{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.why-p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
  max-width: 60ch;
}

@media (max-width: 900px){
  .why-section{ padding: 70px 0 76px; }
  .why-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}


/* =========================
   Form success / error messages
========================= */

.form-messages {
  margin-bottom: 1.5rem;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  line-height: 1.4;
}

/* Success */
.form-message-success {
  background-color: #e6f6ee;
  border: 1px solid #8fd4b1;
  color: #0f5132;
}

/* Error (klar for senere bruk) */
.form-message-error {
  background-color: #fdecea;
  border: 1px solid #f5c2c0;
  color: #842029;
}
/* CTA bleed (bakgrunn + litt mer høyde) */
.cta-bleed{
  position: relative;
  padding: clamp(72px, 10vh, 140px) 0;
  min-height: 62vh;
  display: flex;
  align-items: center;

  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.cta-bleed::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55));
}

.cta-bleed .container{ position: relative; z-index: 1; }

/* Forsinket “reveal” av teksten */
.overlay-reveal .reveal{
  opacity: 0;
  transform: translateY(10px);
  animation: ctaReveal 650ms ease forwards;
  animation-delay: 220ms;
}

@keyframes ctaReveal{
  to{ opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce){
  .overlay-reveal .reveal{ animation: none; opacity: 1; transform: none; }
}
.services-illus{ transform: translateX(-150px); }
