/* ==========================================================================
   NORDIC STONE CARE — MAIN STYLESHEET
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   IMPORTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* --------------------------------------------------------------------------
   CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --navy:        #1a2744;
  --navy-mid:    #243259;
  --blue-accent: #3b5bdb;
  --blue-hover:  #2f4ac7;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --light-gray:  #eef0f6;
  --text-body:   #3d4a63;
  --text-muted:  #7b8aaa;
  --gold:        #c9a84c;

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --section-padding: 120px 80px;
  --container-max:   1280px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;

  --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* --------------------------------------------------------------------------
   TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.t-h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.t-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
  display: block;
}

.t-label--gold { color: var(--gold); }

.t-body-lg {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

.t-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

.t-body-sm {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  padding: 16px 32px;
  background: var(--blue-accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  background: transparent;
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 64px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* WP admin bar offset */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo__text {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links__beregner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold) !important;
  opacity: 0.85;
  transition: opacity 0.2s !important;
}
.nav-links__beregner a:hover {
  opacity: 1 !important;
  color: var(--gold) !important;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero__content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
}

.hero__stat {
  border-left: 2px solid rgba(201,168,76,0.4);
  padding-left: 16px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
  z-index: 1;
}

/* --------------------------------------------------------------------------
   INTRO BAND
   -------------------------------------------------------------------------- */
.intro-band {
  background: var(--off-white);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.intro-band__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   SECTION HEADER
   -------------------------------------------------------------------------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.section-header--single {
  grid-template-columns: 1fr;
}

/* --------------------------------------------------------------------------
   BENEFITS GRID
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: var(--section-padding);
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefits-grid--dark {
  background: rgba(255,255,255,0.08);
}

.benefit-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--transition);
}

.benefit-card:hover { background: var(--off-white); }

/* Dark variant — used on navy section backgrounds */
.benefit-card--dark,
.benefits-grid--dark .benefit-card {
  background: rgba(255,255,255,0.06) !important;
}
.benefit-card--dark:hover,
.benefits-grid--dark .benefit-card:hover {
  background: rgba(255,255,255,0.1) !important;
}
.benefit-card--dark .benefit-card__title,
.benefits-grid--dark .benefit-card .benefit-card__title {
  color: var(--white);
}
.benefit-card--dark .benefit-card__text,
.benefits-grid--dark .benefit-card .benefit-card__text {
  color: rgba(255,255,255,0.6);
}
.benefit-card--dark .benefit-card__icon,
.benefits-grid--dark .benefit-card .benefit-card__icon {
  background: rgba(255,255,255,0.1);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   WHY SECTION (dark)
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--navy);
  padding: var(--section-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
}

.why-section__intro {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}

.why-list__item:hover { background: #e4e7f0; }

/* why-list på navy baggrund */
.bg-navy .why-list__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}
.bg-navy .why-list__item:hover { background: rgba(255,255,255,0.08); }

.why-list__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-list__check svg {
  width: 11px;
  height: 11px;
  stroke: var(--navy);
  stroke-width: 2.5;
  fill: none;
}

.why-list__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-list__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* why-list tekst på navy baggrund */
.bg-navy .why-list__title { color: var(--white); }
.bg-navy .why-list__text { color: rgba(255,255,255,0.5); }

/* ── Problem section split ────────────────────────────────────── */
.problem-section {
  background: var(--off-white);
  padding: var(--section-padding);
}

.problem-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Collage */
.problem-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.problem-collage__main {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.problem-collage__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
}

.problem-collage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.problem-collage__cell {
  aspect-ratio: 1;
  overflow: hidden;
}

.problem-collage__cell:first-child { border-radius: 0 0 0 12px; }
.problem-collage__cell:last-child  { border-radius: 0 0 12px 0; }

.problem-collage__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.problem-collage__cell:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

.problem-collage__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26,39,68,0.85);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Problem list */
.problem-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.problem-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.problem-list__item:last-child {
  border-bottom: none;
}

.problem-list__icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-list__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.problem-list__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.problem-list__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .problem-section__inner {
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .problem-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .problem-collage__main {
    aspect-ratio: 16/9;
  }
}

/* ── Solution intro split ─────────────────────────────────────── */
.solution-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.solution-intro__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.solution-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.solution-intro__image:hover img {
  transform: scale(1.04);
}

.solution-intro__image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(26,39,68,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-intro__image-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.solution-intro__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-intro__text .btn--ghost {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .solution-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .solution-intro__image {
    aspect-ratio: 16/9;
  }
}

/* --------------------------------------------------------------------------
   PROCESS STEPS
   -------------------------------------------------------------------------- */
.process-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--blue-accent), rgba(59,91,219,0.2));
}

.process-step {
  padding: 0 32px;
  position: relative;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.process-step__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  padding: var(--section-padding);
  background: var(--white);
  text-align: center;
}

.cta-section__inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-section__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   CALCULATOR BREAKER
   -------------------------------------------------------------------------- */
.calc-breaker {
  background: var(--gold);
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}

.calc-breaker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
  pointer-events: none;
}

.calc-breaker__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
}

.calc-breaker__icon {
  width: 64px;
  height: 64px;
  background: rgba(26,39,68,0.1);
  border: 1.5px solid rgba(26,39,68,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  margin-bottom: 20px;
}

.calc-breaker__icon svg {
  width: 28px;
  height: 28px;
}

.calc-breaker__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,39,68,0.6);
  margin-bottom: 12px;
}

.calc-breaker__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.calc-breaker__text {
  font-size: 16px;
  color: rgba(26,39,68,0.65);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

.calc-breaker__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26,39,68,0.25);
}

.calc-breaker__cta:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,39,68,0.35);
}

@media (max-width: 900px) {
  .calc-breaker {
    padding: 56px 40px;
  }
}

@media (max-width: 600px) {
  .calc-breaker { padding: 48px 24px; }
  .calc-breaker__title { font-size: 24px; }
  .calc-breaker__cta { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  padding: 64px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand__text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col__heading {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* --------------------------------------------------------------------------
   PAGE HEADER
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--navy);
  padding: 160px 80px 80px;
}

.page-header__label {
  color: var(--gold);
  margin-bottom: 20px;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}

.page-header__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   CONTENT SECTION
   -------------------------------------------------------------------------- */
.content-section {
  padding: var(--section-padding);
  background: var(--white);
}

.two-col-text-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-section__body {
  max-width: 720px;
}

.content-section__body p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 24px;
}

.content-section__body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   REFERENCE / CASE CARD
   -------------------------------------------------------------------------- */
.case-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.case-card__text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up { animation: fadeUp 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* --------------------------------------------------------------------------
   RESPONSIVE — TABLET (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 40px; }

  .site-nav { padding: 20px 40px; }

  .hero { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__content { padding: 120px 40px 64px; }

  .intro-band { grid-template-columns: 1fr; padding: 64px 40px; }
  .section-header { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-card { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — MOBILE (max 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --section-padding: 64px 24px; }

  .site-nav {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__content { padding: 100px 24px 56px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__actions { flex-direction: column; }

  .intro-band { padding: 48px 24px; gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-header { padding: 120px 24px 56px; }
  .case-card__content { padding: 40px 24px; }
}

/* --------------------------------------------------------------------------
   BURGER MENU
   -------------------------------------------------------------------------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-burger.is-open span:nth-child(1),
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2),
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3),
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   RESPONSIVE — MOBIL MENU (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-nav {
    flex-wrap: wrap;
    padding: 0 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 40px;
    background: #1a2744;
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    display: block !important;
    visibility: visible !important;
  }

  .nav-links li a {
    display: block !important;
    padding: 16px 0 !important;
    font-size: 18px !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-links__beregner a {
    color: #c9a84c !important;
  }

  .nav-links__cta {
    padding-top: 24px;
    border-bottom: none !important;
  }

  .nav-links__cta a.btn--primary {
    border: none !important;
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 32px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: white;
  }

  .nav-links__cta {
    padding-top: 16px;
    border-bottom: none !important;
  }

  .nav-links__cta a {
    border: none !important;
    padding: 0 !important;
  }

  .nav-links__cta .btn--primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero__stat {
    min-width: 120px;
  }

  .content-section > div[style*="grid-template-columns:2fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  div[style*="position:sticky"] {
    position: static !important;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — LILLE TELEFON (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="justify-content:center"][style*="flex-wrap:wrap"] {
    gap: 24px !important;
    padding: 40px 24px !important;
  }
}


/* --------------------------------------------------------------------------
   GLOBAL OVERFLOW FIX
   -------------------------------------------------------------------------- */
html, body { overflow-x: hidden; }

/* --------------------------------------------------------------------------
   PROBLEM GRID — 2 kolonner (overrides benefits-grid default på desktop)
   -------------------------------------------------------------------------- */
.problem-grid-2col {
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
  .problem-grid-2col {
    grid-template-columns: 1fr !important;
  }
  .two-col-text-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Burger menu fix ─────────────────────────────────────── */
.nav-burger {
  position: relative;
  z-index: 200;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.nav-burger span {
  pointer-events: none;
}

@media (max-width: 768px) {
  .site-nav {
    position: relative;
    z-index: 100;
  }
  .nav-burger {
    display: flex !important;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
}
