﻿/*
Theme Name: IT Consultants
Text Domain: itconsultants
Version: 1.0
Deploy Verify: SIMPLY_DEPLOY_CHECK_2026_02_20_A
*/

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

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

img,
svg,
video {
  max-width: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background: #f4f5f7;
  overflow-x: hidden;
  color: #253238;
}

p,
li,
label,
input,
textarea,
select {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-main {
  padding-top: 110px; /* plads til fixed nav */
}

/* =========================
   NAVIGATION
========================= */
.site-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

.nav-content {
  height: 60px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;

  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  line-height: 0; /* fjerner skjult â€œinlineâ€ spacing */
}

.site-logo {
  height: 42px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain;
  display: block;
}

.logo-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #253238;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #253238;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #253238;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.nav-item--has-dropdown .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item--has-dropdown {
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-item--has-dropdown .nav-parent::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 0;
  width: max-content;
  max-width: min(92vw, 420px);
  padding: 10px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}

.nav-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(37, 50, 56, 0.08);
  opacity: 1;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown .nav-dropdown:hover,
.nav-item--has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-item--has-dropdown:hover .nav-parent::after,
.nav-item--has-dropdown:focus-within .nav-parent::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-links a:hover {
  opacity: 0.65;
}

/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 30px 0 30px;
}

.hero h1 {
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.hero h2 {
  font-size: clamp(52px, 5.6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: #000;
}

.hero-subtitle {
  margin: 20px auto 28px;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  opacity: 0.9;
}

/* CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #253238;
  color: #fff;
  text-decoration: none;

  padding: 14px 32px;
  font-size: 14px;
  font-weight: 800;

  border-radius: 999px;
  border: none;
  cursor: pointer;

  box-shadow: 0 10px 24px rgba(37, 50, 56, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 50, 56, 0.35);
}

/* =========================
   CARDS
========================= */
.cards {
  padding: 50px 0 90px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.card.featured {
  min-height: 400px;
}

.card:hover {
  transform: translateY(-8px);
}

.glass {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.card-image {
  width: 100%;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  position: absolute;
  bottom: 18px;
  left: 18px;

  background: rgba(37, 50, 56, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

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

.card-content h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

/* =========================
   PROCESS SECTION (MATCHING DRAFT)
========================= */

/* Denne sektion fÃ¥r IKKE en â€œhardâ€ background.
   Den fÃ¥r en overlay-tint, sÃ¥ body-gradient flyder igennem. */
.process-section {
  position: relative;
  padding: 140px 0 120px;
  overflow: visible;
  min-height: 100vh;
}

.process-right h1 {
  margin-bottom: 16px;   /* Ã¸g denne */
  margin: 0;
  padding: 0;
}

.process-right h2 {
  margin-bottom: 16px;   /* Ã¸g denne */
  margin: 0;
  padding: 0;
}

/* Overlay tint der giver â€œflippetâ€ feel uden at knÃ¦kke gradienten */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: none;
  mask-image: none;
  background: transparent;
}

/* SÃ¸rg for at alt indhold ligger over overlayen */
.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  justify-items: center;
}

/* Right side typography */
.process-right {
  text-align: center;
  max-width: 760px;
}

.process-section h1 {
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.process-section h2 {
  font-size: clamp(48px, 5.6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: #000;
}

.process-subtitle {
  max-width: 520px;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 14px auto 10px;
}

.process-cta {
  padding: 14px 28px;
}

/* Left side floating cards */
.process-left {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-float {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  counter-reset: process-step;
}

/* Cards */
.process-card {
  position: relative;
  text-align: center;
  width: min(560px, 100%);
  padding: 42px 40px 38px;
  border-radius: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
  counter-increment: process-step;
  z-index: 2;
  opacity: 1;
  overflow: visible;
}

.process-card::before {
  content: counter(process-step);
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #253238, #415761);
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(37, 50, 56, 0.28);
  z-index: 2;
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, rgba(37, 50, 56, 0.45), rgba(37, 50, 56, 0.1));
}

.process-card:not(:last-child) .step-arrow {
  position: absolute;
  left: 50%;
  bottom: -39px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid rgba(37, 50, 56, 0.45);
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-card.is-active {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(37, 50, 56, 0.65);
  box-shadow: 0 24px 54px rgba(37, 50, 56, 0.2), 0 0 0 1px rgba(37, 50, 56, 0.45);
}

.process-card.is-active::before {
  background: linear-gradient(135deg, #2f6f86, #253238);
  box-shadow: 0 16px 30px rgba(47, 111, 134, 0.38);
}

.process-card h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #253238;
}

.process-card ul{
  list-style:none;
  padding:0;
  margin:0;

  display:flex;
  flex-direction:column;
  gap:12px;     /* ren spacing mellem linjer */
}

.process-card li{
  position: relative;
  font-size:18px;
  line-height:1.45;
  opacity:1;
  color: #2a3940;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.process-card li.is-active {
  opacity: 1;
  transform: translateY(-1px);
  color: #14262e;
  font-weight: 700;
  border-color: rgba(37, 50, 56, 0.72);
  background: rgba(37, 50, 56, 0.12);
  box-shadow: 0 0 0 2px rgba(37, 50, 56, 0.18);
}

.process-card li.is-revealed {
  color: #1f3037;
}

.process-item-pop {
  position: absolute;
  top: 50%;
  width: min(360px, 34vw);
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #1e2f36;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 50, 56, 0.52);
  box-shadow: 0 10px 24px rgba(37, 50, 56, 0.14);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.18s ease, transform 0.18s ease;
  will-change: transform, opacity;
}

.process-item-pop.is-right {
  left: calc(100% + 52px);
  transform: translateY(-50%) translateX(10px);
}

.process-item-pop.is-left {
  right: calc(100% + 52px);
  transform: translateY(-50%) translateX(-10px);
}

.process-item-pop::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: rgba(37, 50, 56, 0.78);
}

.process-item-pop::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.process-item-pop.is-right::before {
  left: -34px;
  transform: translateY(-50%);
}

.process-item-pop.is-right::after {
  left: -10px;
  transform: translateY(-50%);
  border-left: 8px solid rgba(37, 50, 56, 0.88);
}

.process-item-pop.is-left::before {
  right: -34px;
  transform: translateY(-50%);
}

.process-item-pop.is-left::after {
  right: -10px;
  transform: translateY(-50%);
  border-right: 8px solid rgba(37, 50, 56, 0.88);
}

.process-card li.is-revealed .process-item-pop {
  opacity: 1;
}

.process-card li.is-revealed .process-item-pop.is-right {
  transform: translateY(-50%) translateX(0);
}

.process-card li.is-revealed .process-item-pop.is-left {
  transform: translateY(-50%) translateX(0);
}

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

/* Positions (med px enheder!) */
.process-card--mode {
  position: static;
}

.process-card--design {
  position: static;
}

.process-card--launch {
  position: static;
}

/* Extra depth */
.process-card.glass {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .navbar {
    width: min(100%, calc(100% - 24px));
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-right {
    text-align: center;
    padding-right: 0;
  }

  .process-subtitle {
    margin: 0 auto 22px;
  }

  .process-float {
    min-height: auto;
  }

  .process-card:not(:last-child)::after,
  .process-card:not(:last-child) .step-arrow {
    display: none;
  }

}

@media (max-width: 760px) {
  .process-item-pop {
    position: static;
    width: 100%;
    margin-top: 14px;
    opacity: 1;
    transform: none !important;
  }

  .process-item-pop::before,
  .process-item-pop::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .process-float {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .process-card {
    position: static;
    width: 100%;
  }
}

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

  .site-main {
    padding-top: 96px;
  }

  .navbar {
    top: 14px;
    width: min(100%, calc(100% - 24px));
  }

  .nav-content {
    min-height: 64px;
    width: 100%;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 16px;
    border-radius: 24px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
  }

  .nav-links.is-open {
    display: flex;
  }

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

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 10px;
    border-radius: 14px;
  }

  .nav-item--has-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-item--has-dropdown .nav-parent::after {
    margin-left: auto;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 4px;
    padding: 6px 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-item--has-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-item--has-dropdown:hover .nav-dropdown,
  .nav-item--has-dropdown .nav-dropdown:hover,
  .nav-item--has-dropdown:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 10px;
    white-space: normal;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .site-main {
    padding-top: 90px;
  }

  .nav-content {
    min-height: 58px;
    padding: 8px 10px 8px 14px;
    border-radius: 20px;
  }

  .site-logo {
    max-width: 104px !important;
    height: 38px !important;
  }

  .logo-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

/* =========================
   FOOTER (FINAL)
========================= */

.site-footer{
  position: relative;
  background: #161F24;
  margin-top: 104px;
  padding-top: 0;
}

.home .site-footer{
  margin-top: 104px;
}

.home .site-footer::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -104px;
  height: 104px;
  background: #eef3f8;
  z-index: 0;
}

/* CTA banner (overlap) */
.footer-cta{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;

  position: absolute;
  left: 0;
  right: 0;
  top: -100px;          /* overlap op i segmentet over */

  z-index: 10;
}

/* CTA container */
.footer-cta-inner{
  background: #253238;
  border-radius: 28px;

  padding: 40px 56px;
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;

  overflow: hidden;       /* vigtigt til billedet + rounded corners */
  position: relative;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* Subtil â€œglowâ€ som i reference */
.footer-cta-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 85% 25%,
    rgba(120, 160, 255, 0.18),
    transparent 60%
  );
}

/* CTA text */
.footer-cta-content{
  max-width: 560px;
  z-index: 2;
}

.footer-cta-content h3{
  color: #fff;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.footer-cta-content p{
  margin: 0 0 22px 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

/* CTA button */
.footer-cta-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  color: #253238;
  text-decoration: none;

  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 12px;

  transition: transform 0.18s ease, opacity 0.18s ease;
}
.footer-cta-button:hover{ transform: translateY(-2px); opacity: 0.92; }

/* CTA image area */
.footer-cta-visual{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.footer-cta-visual img{
  max-height: 220px;
  width: auto;
  display: block;
  opacity: 0.95;

  /* giver â€œcutoffâ€ feel mod hÃ¸jre kant */
  transform: translateX(-180px);
}

/* Main footer */
.footer-main{
  background: #526067;

  /* plads sÃ¥ CTA ikke overlapper grid */
  padding-top: 250px;   /* ekstra luft mellem overlappende CTA og footer-indhold */
  padding-bottom: 10px;
}

/* Grid */
.footer-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  align-items: start;

  padding-top: 12px;
  padding-bottom: 14px;
}

.footer-brand{
  display: grid;
  gap: 16px;
  max-width: none;
  min-width: 0;
}

.footer-logo-wrap .custom-logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0;
  line-height: 0;
}


.footer-logo-wrap .custom-logo{
  margin-left: -24px;
  height: 46px;
  width: auto;
  display: block;
}

.footer-logo-fallback{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
}

.footer-brand-copy{
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
  max-width: 29ch;
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-socials a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.footer-socials svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-links{
  display: contents;
}

.footer-col h4{
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-col a{
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.footer-col a:hover{ opacity: 0.8; }

.footer-col--contact{
  min-width: 0;
}

.footer-contact-list{
  display: grid;
  gap: 10px;
}

.footer-contact-item{
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.footer-contact-icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  transform: translateY(1px);
}

.footer-contact-icon svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-contact-item a,
.footer-contact-item span:last-child{
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover{
  opacity: 0.8;
}

/* Bottom */
.footer-bottom{
  padding: 12px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-inner small{
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline-block;
  width: 100%;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; gap: 36px; }
  .footer-links{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 24px; }

  .footer-cta-inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 28px;
    min-height: 0;
  }

  .footer-cta-visual{
    width: 100%;
    justify-content: flex-start;
  }

  .footer-cta-visual img{
    transform: none;
    max-height: 200px;
  }

  .footer-main{
    padding-top: 182px; /* lidt ekstra nÃ¥r CTA stakker */
  }
}

@media (max-width: 640px){
  .footer-links{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand{
    gap: 14px;
  }
}


/* =========================
   HJEMMESIDER PAGE
========================= */
.site-main.service-page {
  padding-top: 120px;
}

.service-page .web-hero {
  padding: 44px 0 60px;
}

.service-page .web-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-page .web-hero-content {
  max-width: 620px;
}

.service-page .web-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  color: #253238;
  background: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.service-page .web-hero-content h1 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}

.service-page .web-lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 26px;
}

.service-page .web-hero-visual {
  display: flex;
  justify-content: center;
  align-self: start;
}

.service-page .web-screen {
  width: min(540px, 100%);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 45px rgba(37, 50, 56, 0.16);
}

.service-page .web-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #253238;
  background: #dceef9;
  margin-bottom: 14px;
}

.service-page .web-screen-body {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(37, 50, 56, 0.12);
  padding: 14px;
}

.service-page .web-browser-bar {
  height: 10px;
  border-radius: 999px;
  width: 38%;
  background: linear-gradient(90deg, #253238, #4f6772);
  margin-bottom: 16px;
}

.service-page .web-browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-page .web-card {
  height: 130px;
  border-radius: 14px;
}

.service-page .web-card-a {
  background: linear-gradient(145deg, #edf7ff, #bddff4);
}

.service-page .web-card-b {
  background: linear-gradient(145deg, #fff4df, #ffdba5);
}

.service-page .web-card-c {
  background: linear-gradient(145deg, #d9ece0, #9ecbb2);
}

.service-page .web-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-page .web-stats span {
  height: 8px;
  border-radius: 999px;
  background: rgba(37, 50, 56, 0.2);
}

.service-page .web-steps,
.service-page .web-core {
  padding: 50px 0;
}

.service-page .web-steps h2,
.service-page .web-core h2 {
  text-align: center;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.service-page .web-steps-grid,
.service-page .web-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-page .web-core-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-page .web-step-card,
.service-page .web-core-card {
  border-radius: 20px;
  padding: 24px;
  min-height: 200px;
}

.service-page .web-step-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(37, 50, 56, 0.8);
  margin-bottom: 12px;
}

.service-page .web-step-card h3,
.service-page .web-core-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-page .web-step-card p,
.service-page .web-core-card p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.9;
}

:is(.service-page--seo, .front-seo-report) {
  background: transparent;
}

:is(.service-page--seo, .front-seo-report) .seo-report-section {
  padding: 56px 0 58px;
}

:is(.service-page--seo, .front-seo-report) .seo-report-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 44px;
  align-items: start;
}

:is(.service-page--seo, .front-seo-report) .seo-report-copy h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 3.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #1b184f;
  margin-bottom: 16px;
  text-align: center;
}

:is(.service-page--seo, .front-seo-report) .seo-report-copy p {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: 620px;
  font-size: clamp(15px, 1.04vw, 21px);
  line-height: 1.5;
  opacity: 1;
  color: #282f56;
  text-align: center;
  margin-inline: auto;
}

:is(.service-page--seo, .front-seo-report) .seo-report-copy {
  text-align: center;
}

:is(.service-page--seo, .front-seo-report) .seo-report-points {
  list-style: none;
  margin: 24px auto 20px;
  padding: 0;
  max-width: 620px;
  text-align: left;
  border-top: 1px solid rgba(44, 42, 84, 0.16);
}

:is(.service-page--seo, .front-seo-report) .seo-report-points li {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 1.04vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: #282f56;
  text-align: center;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 42, 84, 0.16);
}

:is(.service-page--seo, .front-seo-report) .seo-report-trust {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #282f56;
  text-align: center;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form-wrap {
  border-radius: 38px;
  overflow: hidden;
  background: #eceff8;
  border: 1px solid rgba(38, 36, 79, 0.06);
  box-shadow: 0 12px 32px rgba(30, 39, 70, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

:is(.service-page--seo, .front-seo-report) .seo-report-form-wrap h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #eceff8;
  color: #1b184f;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.04;
  text-align: center;
  padding: 18px 16px 16px;
  border-bottom: 0;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form {
  padding: 20px 22px 24px;
  display: grid;
  gap: 12px;
}

:is(.service-page--seo, .front-seo-report) .seo-form-feedback {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

:is(.service-page--seo, .front-seo-report) .seo-form-feedback.is-success {
  color: #1f5f31;
  background: #e7f7ec;
  border: 1px solid #b8e4c6;
}

:is(.service-page--seo, .front-seo-report) .seo-form-feedback.is-error {
  color: #7f1d1d;
  background: #feeaea;
  border: 1px solid #f8b4b4;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form input {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid #3a3670;
  background: #f6f7fc;
  color: #282f56;
  font-size: 16px;
  outline: none;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form input::placeholder {
  color: rgba(37, 50, 56, 0.7);
}

:is(.service-page--seo, .front-seo-report) .seo-report-form input:focus {
  border-color: #1f175b;
  box-shadow: 0 0 0 2px rgba(61, 51, 111, 0.08);
}

:is(.service-page--seo, .front-seo-report) .seo-report-form button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 4px;
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  background: #1f175b;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-transform: none !important;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 30px rgba(31, 23, 91, 0.25);
}

:is(.service-page--seo, .front-seo-report) .seo-report-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 23, 91, 0.3);
}

:is(.service-page--seo, .front-seo-report) .seo-report-note {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 2px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #282f56;
}

@media (max-width: 1024px) {
  .service-page .web-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-page .web-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page .web-core-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-page .web-steps-grid {
    grid-template-columns: 1fr;
  }

  :is(.service-page--seo, .front-seo-report) .seo-report-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  :is(.service-page--seo, .front-seo-report) .seo-report-form button {
    font-size: 22px;
  }

  :is(.service-page--seo, .front-seo-report) .seo-report-note {
    font-size: 17px;
  }

  .service-page .web-step-card h3,
  .service-page .web-core-card h3 {
    font-size: 22px;
  }
}

/* =========================
   FRONT PAGE V2 (LAYOUT TEST)
========================= */
.front-page-v2 {
  padding-top: 126px;
}

.hero-v2 {
  padding: 34px 0 30px;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-v2-copy {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  padding: clamp(24px, 3.2vw, 44px);
  box-shadow: 0 20px 44px rgba(37, 50, 56, 0.12);
}

.hero-v2-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #253238;
}

.hero-v2-copy h1 {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.hero-v2-lead {
  max-width: 650px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 28px;
}

.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-v2-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 50, 56, 0.32);
  color: #253238;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.hero-v2-link:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 50, 56, 0.7);
}

.hero-v2-panel {
  border-radius: 30px;
  padding: 28px 24px;
}

.hero-v2-panel h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-v2-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-v2-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(37, 50, 56, 0.18);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: #223137;
}

.hero-v2-panel li span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(135deg, #253238, #4b646f);
}

.front-trust {
  padding: 16px 0 34px;
}

.front-trust-row {
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
}

.front-trust-row p {
  min-height: 95px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(37, 50, 56, 0.14);
  padding: 16px;
  display: grid;
  gap: 5px;
}

.front-trust-row strong {
  font-size: 15px;
  line-height: 1.3;
  color: #1d2f36;
}

.front-trust-row span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(37, 50, 56, 0.8);
}

.services-v2 {
  padding: 10px 0 88px;
}

.services-v2-head {
  margin-bottom: 22px;
  text-align: center;
}

.services-v2-kicker {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #253238;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.services-v2-head h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.services-v2-grid {
  gap: 24px;
}

.services-v2-grid .card {
  min-height: 380px;
  border-radius: 24px;
}

.services-v2-grid .card-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.services-v2-grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 14, 0) 42%, rgba(9, 16, 19, 0.82) 100%);
  pointer-events: none;
}

.services-v2-grid .card-content {
  right: 16px;
  left: 16px;
  bottom: 16px;
  border-radius: 16px;
  background: rgba(17, 26, 30, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.services-v2-grid .card-content h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.services-v2-grid .card-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2-panel {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .front-trust-row {
    grid-template-columns: 1fr;
  }

  .front-page-v2 {
    padding-top: 112px;
  }
}

@media (max-width: 760px) {
  .hero-v2-copy {
    border-radius: 24px;
    padding: 24px 18px;
  }

  .hero-v2-actions {
    gap: 10px;
  }

  .hero-v2-link,
  .hero-v2-actions .cta-button {
    width: 100%;
  }

  .hero-v2-panel {
    padding: 20px 16px;
  }

  .services-v2-grid .card {
    min-height: 320px;
  }

  .services-v2-grid .card-content h3 {
    font-size: 19px;
  }
}
/* =========================
   FRONT PAGE V3 (VANREIN LOOK TEST)
========================= */
.front-page-v3 {
  padding-top: 108px;
}

.hero-vanrein {
  position: relative;
  min-height: 860px;
  padding: 74px 0 170px;
  background: linear-gradient(180deg, #f4f5f7 0%, #f1f3f8 42%, #eef1f8 100%);
  overflow: hidden;
}

.hero-vanrein-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero-vanrein h1 {
  max-width: 830px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -1.1px;
  font-weight: 800;
  color: #0d1318;
}

#hero-typewriter {
  display: inline;
}

.hero-caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 5px;
  vertical-align: -0.08em;
  background: #0d1318;
  animation: hero-caret-blink 0.95s steps(1, end) infinite;
}

@keyframes hero-caret-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.hero-vanrein-lead {
  max-width: 850px;
  margin: 26px auto 28px;
  color: rgba(13, 19, 24, 0.6);
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1.45;
}

.hero-vanrein-actions {
  display: flex;
  justify-content: center;
}

.hero-primary-cta {
  min-width: 265px;
  background: #2ac0e4;
  color: #0d1318;
  box-shadow: 0 12px 28px rgba(42, 192, 228, 0.34);
}

.hero-primary-cta:hover {
  box-shadow: 0 18px 34px rgba(42, 192, 228, 0.42);
}

.hero-flow-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 380px;
  z-index: 1;
  pointer-events: none;
}

.hero-flow-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.95;
}

.hero-vanrein-overlay-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -82px;
  z-index: 4;
}

.hero-vanrein-overlay {
  width: min(900px, calc(100vw - 42px));
  background: #484e60;
  border-radius: 16px;
  padding: 28px 30px 30px;
  color: #f6f7fb;
  box-shadow: 0 22px 42px rgba(30, 36, 45, 0.28);
}

.hero-vanrein-overlay h2 {
  text-align: center;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-vanrein-overlay ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-vanrein-overlay li {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(246, 247, 251, 0.92);
}

.hero-vanrein-overlay strong {
  color: #ffffff;
}

.services-v3 {
  padding-top: 126px;
}

.services-v3-head h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.services-v3-grid .card {
  min-height: 390px;
}

@media (max-width: 980px) {
  .hero-vanrein {
    min-height: 770px;
    padding-top: 46px;
  }

  .hero-vanrein-overlay-wrap {
    bottom: -130px;
  }

  .hero-vanrein-overlay {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .hero-vanrein-overlay ul {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .services-v3 {
    padding-top: 180px;
  }
}

@media (max-width: 740px) {
  .front-page-v3 {
    padding-top: 98px;
  }

  .hero-vanrein {
    min-height: 720px;
    padding-bottom: 150px;
  }

  .hero-vanrein h1 {
    max-width: 92%;
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-vanrein-lead {
    max-width: 92%;
    font-size: 18px;
  }

  .hero-primary-cta {
    width: min(320px, 100%);
  }

  .hero-flow-scene {
    bottom: 100px;
    height: 300px;
  }

  .hero-vanrein-overlay-wrap {
    bottom: -168px;
  }

  .hero-vanrein-overlay h2 {
    text-align: left;
  }
}
/* =========================
   STORMY MORNING THEME OVERRIDES
========================= */
:root {
  --stormy-mid: #6A89A7;
  --stormy-light: #BDDDFC;
  --stormy-blue: #88BDF2;
  --stormy-deep: #384959;
  --stormy-ink: #1f2a33;
  --stormy-surface: #f3f6fa;
}

body {
  background: #f5f8fc;
  color: var(--stormy-deep);
}

.nav-content {
  background: rgba(189, 221, 252, 0.5);
  border: 1px solid rgba(106, 137, 167, 0.34);
  box-shadow: 0 18px 45px rgba(56, 73, 89, 0.14);
}

.logo-placeholder {
  background: var(--stormy-deep);
}

.nav-links a {
  color: var(--stormy-deep);
}

.cta-button {
  background: var(--stormy-deep);
  box-shadow: 0 10px 24px rgba(56, 73, 89, 0.24);
}

.cta-button:hover {
  box-shadow: 0 16px 34px rgba(56, 73, 89, 0.32);
}

.hero-vanrein {
  background: linear-gradient(180deg, #fbfdff 0%, #f2f6fb 46%, #edf2f8 100%);
}

.hero-vanrein h1 {
  color: #0f1821;
}

.hero-vanrein-lead {
  max-width: 760px;
  margin: 24px auto 30px;
  color: rgba(56, 73, 89, 0.66);
  font-size: clamp(17px, 1.8vw, 30px);
}

.hero-caret {
  background: var(--stormy-deep);
}

.hero-primary-cta {
  background: var(--stormy-blue);
  color: #0f1d2a;
  box-shadow: 0 12px 26px rgba(136, 189, 242, 0.45);
}

.hero-primary-cta:hover {
  box-shadow: 0 16px 32px rgba(136, 189, 242, 0.54);
}

.hero-flow-scene {
  bottom: 42px;
  height: 360px;
}

.hero-flow-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.95) 0%, rgba(245, 249, 255, 0.35) 28%, rgba(245, 249, 255, 0) 52%);
  pointer-events: none;
  z-index: 2;
}

.hero-flow-canvas {
  opacity: 0.88;
}

.hero-vanrein-overlay {
  background: #46586c;
}

.hero-vanrein-overlay h2 {
  color: #ffffff;
}

.hero-vanrein-overlay li,
.hero-vanrein-overlay strong {
  color: rgba(255, 255, 255, 0.95);
}

.glass {
  background: rgba(189, 221, 252, 0.26);
  border: 1px solid rgba(106, 137, 167, 0.25);
  box-shadow: 0 18px 45px rgba(56, 73, 89, 0.12);
}

.services-v2-kicker {
  color: var(--stormy-deep);
  background: rgba(189, 221, 252, 0.62);
  border: 1px solid rgba(106, 137, 167, 0.35);
}

.services-v2-grid .card-content {
  background: rgba(56, 73, 89, 0.78);
}

.process-card::before {
  background: linear-gradient(135deg, var(--stormy-deep), var(--stormy-mid));
}

.process-card.is-active {
  border-color: rgba(56, 73, 89, 0.62);
  box-shadow: 0 24px 54px rgba(56, 73, 89, 0.2), 0 0 0 1px rgba(56, 73, 89, 0.44);
}

.process-card.is-active::before {
  background: linear-gradient(135deg, var(--stormy-blue), var(--stormy-deep));
  box-shadow: 0 16px 30px rgba(106, 137, 167, 0.36);
}

.process-card li.is-active {
  border-color: rgba(56, 73, 89, 0.66);
  background: rgba(106, 137, 167, 0.16);
  box-shadow: 0 0 0 2px rgba(106, 137, 167, 0.18);
}

.process-item-pop {
  border: 1px solid rgba(56, 73, 89, 0.4);
}

.site-footer {
  background: #2f3f4e;
}

.footer-cta-inner {
  background: var(--stormy-deep);
}

.footer-main {
  background: #556a7f;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form button {
  background: #1f175b;
}

:is(.service-page--seo, .front-seo-report) .seo-report-form-wrap.glass {
  background: #eceff8;
  border: 1px solid rgba(38, 36, 79, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

:is(.service-page--seo, .front-seo-report) .seo-report-form input:focus {
  border-color: rgba(56, 73, 89, 0.45);
  box-shadow: 0 0 0 2px rgba(106, 137, 167, 0.18);
}

@media (max-width: 740px) {
  .hero-flow-scene {
    bottom: 86px;
    height: 280px;
  }
}
/* =========================
   FRONT PAGE V3 TUNING (USER FEEDBACK)
========================= */
.nav-content {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.logo-placeholder {
  background: #253238;
}

.nav-links a {
  color: #253238;
}

.front-page-v3 {
  padding-top: 102px;
}

.hero-vanrein {
  min-height: 700px;
  padding: 58px 0 70px;
  background: #f5f8fc;
}

/* Front-page section contrast rhythm: white -> gray -> white -> gray */
.home {
  --home-texture-a: repeating-linear-gradient(
    45deg,
    rgba(18, 27, 36, 0.012) 0 1px,
    rgba(18, 27, 36, 0) 1px 4px
  );
  --home-texture-b: repeating-linear-gradient(
    -45deg,
    rgba(18, 27, 36, 0.008) 0 1px,
    rgba(18, 27, 36, 0) 1px 5px
  );
  background: #eef3f8;
}

body.home,
body.home .site-main,
body.home .front-page-v3 {
  background-color: #eef3f8 !important;
}

.home .site-main {
  padding-top: 0;
}

.home .front-page-v3 {
  padding-top: 0;
  background: #eef3f8;
}

.home .hero-vanrein {
  min-height: 100svh;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 56%, rgba(154, 186, 214, 0.36) 0%, rgba(154, 186, 214, 0.14) 30%, rgba(154, 186, 214, 0) 68%),
    linear-gradient(180deg, #eef3f8 0%, #f2f6fb 56%, #eef3f8 100%),
    var(--home-texture-a),
    var(--home-texture-b);
  background-size: auto, auto, 260px 260px, 320px 320px;
}

.home .services-v3 {
  background: transparent;
}

.home .process-section {
  background-image:
    linear-gradient(180deg, #fcfdff 0%, #f7f9fc 100%),
    var(--home-texture-a),
    var(--home-texture-b);
  background-size: auto, 260px 260px, 320px 320px;
}

.home .front-seo-report,
.home .front-seo-report .seo-report-section {
  background: #ffffff;
  background-image: none;
}

.home .front-seo-report {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 64px;
  padding-bottom: 64px;
}

.home .front-category-band {
  margin-top: 0 !important;
  padding: 70px 0 210px !important;
  background: #ffffff;
  background-image: none;
}

.home .front-category-band-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #1a2630;
  font-weight: 600;
}

.home .front-category-band-grid {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  align-items: start;
  max-width: 1260px;
  margin-inline: auto;
}

.front-category-card {
  position: relative;
  display: block;
  min-height: clamp(280px, 30vw, 420px);
  border-radius: 28px;
  overflow: hidden;
  background: #e9edf1;
  border: 1px solid rgba(37, 50, 56, 0.12);
  box-shadow: 0 8px 20px rgba(18, 27, 36, 0.12);
  text-decoration: none;
  color: #1f2c36;
}

.front-category-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.front-category-card-kicker {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 2px 8px rgba(10, 16, 22, 0.6);
}

.front-category-card-cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(10, 16, 22, 0.55);
}

.front-category-card::after {
  display: none;
}

.front-category-card-title {
  display: none;
}

.front-category-card:nth-child(2),
.front-category-card:nth-child(4) {
  margin-top: 74px;
}

.front-category-card:hover {
  transform: none;
}

@media (max-width: 1080px) {
  .front-category-band-grid {
    gap: 20px;
  }

  .front-category-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .front-category-card-title {
    font-size: clamp(24px, 2.5vw, 34px);
  }
}

@media (max-width: 860px) {
  .home .front-category-band {
    padding: 96px 0 130px !important;
  }

  .front-category-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 56px;
    max-width: 680px;
  }

  .front-category-card:nth-child(2),
  .front-category-card:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .front-category-band-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .front-category-card {
    min-height: 220px;
    border-radius: 20px;
  }

  .front-category-card-title {
    max-width: none;
    font-size: clamp(24px, 8vw, 32px);
  }
}

.hero-vanrein h1 {
  max-width: 760px;
  font-size: clamp(30px, 4.2vw, 58px);
  letter-spacing: -0.8px;
}

.hero-vanrein-lead {
  max-width: 720px;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.55;
  margin: 18px auto 24px;
}

.hero-flow-scene {
  bottom: 72px;
  height: 340px;
}

.hero-flow-scene::before {
  display: none;
}

.services-v3 {
  margin-top: -18px;
  padding-top: 22px;
  background: transparent;
}

.services-v3-head h2 {
  font-size: clamp(28px, 2.9vw, 40px);
}

.home .process-section h1 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.home .process-section h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

@media (max-width: 980px) {
  .hero-vanrein {
    min-height: 640px;
    padding: 42px 0 56px;
  }

  .hero-flow-scene {
    bottom: 58px;
    height: 275px;
  }

  .services-v3 {
    margin-top: -12px;
    padding-top: 20px;
  }
}

@media (max-width: 740px) {
  .hero-vanrein {
    min-height: 600px;
    padding-bottom: 54px;
  }

  .hero-vanrein h1 {
    font-size: clamp(30px, 8.4vw, 44px);
  }

  .hero-vanrein-lead {
    font-size: 16px;
  }

  .hero-flow-scene {
    bottom: 44px;
    height: 225px;
  }
}
/* =========================
   HERO TRANSITION POLISH
========================= */
.hero-flow-scene {
  bottom: 180px;
  height: 360px;
  z-index: 1;
}

.services-v3 {
  margin-top: 0;
  padding-top: 74px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.hero-vanrein {
  overflow: visible;
}

.hero-vanrein::after {
  display: none;
}

.hero-vanrein-inner {
  z-index: 3;
}

@media (max-width: 980px) {
  .hero-flow-scene {
    bottom: 150px;
  }

  .services-v3 {
    margin-top: 0;
    padding-top: 62px;
  }
}

@media (max-width: 740px) {
  .hero-flow-scene {
    bottom: 120px;
  }

  .services-v3 {
    margin-top: 0;
    padding-top: 44px;
  }
}
/* =========================
   HERO SIZE LOCK (NO SECTION BREAK)
========================= */
.hero-vanrein {
  position: relative;
  height: 860px;
  min-height: 860px;
  padding: 58px 0 0;
  overflow: hidden;
  background: #f5f8fc;
}

.hero-vanrein-inner {
  position: relative;
  z-index: 3;
}

.hero-flow-scene {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
  height: 360px;
  z-index: 1;
  pointer-events: none;
}

.services-v3 {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding-top: 0;
  background: transparent;
}

@media (max-width: 980px) {
  .hero-vanrein {
    height: 760px;
    min-height: 760px;
    padding-top: 46px;
  }

  .hero-flow-scene {
    height: 300px;
    bottom: 166px;
  }

  .services-v3 {
    padding-top: 30px;
  }
}

@media (max-width: 740px) {
  .hero-vanrein {
    height: 680px;
    min-height: 680px;
    padding-top: 38px;
  }

  .hero-flow-scene {
    height: 240px;
    bottom: 132px;
  }

  .services-v3 {
    padding-top: 24px;
  }
}
/* =========================
   PROCESS WORKFLOW V5
========================= */
.process-section {
  padding: 52px 0 70px;
  min-height: auto;
}

.process-workflow-wrap {
  max-width: 1100px;
}

.process-workflow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(106, 137, 167, 0.42);
  background: rgba(189, 221, 252, 0.58);
  color: #384959;
  font-size: 13px;
  font-weight: 700;
}

.process-workflow-title {
  margin: 12px 0 20px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.6px;
  color: #384959;
}

.process-workflow-board {
  position: relative;
  border-radius: 20px;
  border: 2px solid rgba(136, 189, 242, 0.72);
  background: rgba(189, 221, 252, 0.56);
  box-shadow: 0 16px 34px rgba(56, 73, 89, 0.12);
  padding: 34px 28px;
}

.process-workflow-board::before {
  content: "";
  position: absolute;
  top: 62px;
  bottom: 64px;
  left: 58px;
  width: 2px;
  background: linear-gradient(180deg, rgba(42, 192, 228, 0.86), rgba(42, 192, 228, 0.24));
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 14px 0;
}

.workflow-step + .workflow-step {
  margin-top: 14px;
}

.workflow-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #6A89A7;
  box-shadow: 0 8px 18px rgba(56, 73, 89, 0.2);
  z-index: 2;
}

.workflow-icon-svg {
  width: 22px;
  height: 22px;
}

.workflow-content h3 {
  font-size: 25px;
  line-height: 1.2;
  color: #2f4150;
  margin-bottom: 8px;
}

.workflow-content p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(56, 73, 89, 0.8);
}

.workflow-badge {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #2ac0e4;
  color: #17313b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}

.workflow-step.is-emphasized .workflow-content h3 {
  color: #243744;
}

.workflow-step.is-emphasized .workflow-icon {
  background: #384959;
}

.process-bottom-cta {
  margin-top: 22px;
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .process-workflow-board::before {
    left: 49px;
  }

  .workflow-step {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }

  .workflow-badge {
    margin-left: 62px;
    margin-top: 6px;
  }

  .workflow-content h3 {
    font-size: 21px;
  }

  .workflow-content p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .process-section {
    padding-top: 36px;
  }

  .process-workflow-title {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .process-workflow-board {
    padding: 20px 14px;
  }

  .process-workflow-board::before {
    left: 34px;
  }

  .workflow-step {
    grid-template-columns: 42px 1fr;
    padding: 10px 0;
    gap: 10px;
  }

  .workflow-icon {
    width: 30px;
    height: 30px;
  }

  .workflow-icon-svg {
    width: 15px;
    height: 15px;
  }

  .workflow-badge {
    margin-left: 42px;
  }

  .workflow-content h3 {
    font-size: 18px;
  }

  .workflow-content p {
    font-size: 15px;
  }
}
/* =========================
   PROCESS WORKFLOW COMPACT + CENTER
========================= */
.process-workflow-wrap {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.process-workflow-kicker {
  margin-inline: auto;
}

.process-workflow-title {
  text-align: center;
  margin: 10px 0 30px;
}

.process-workflow-board {
  max-width: 900px;
  margin-inline: auto;
  padding: 22px 18px;
}

.process-workflow-board::before {
  display: none;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

.workflow-step + .workflow-step {
  margin-top: 8px;
}

.workflow-content {
  max-width: 700px;
  text-align: center;
}

.workflow-badge {
  order: 1;
  margin: 0;
}

.workflow-content {
  order: 2;
}

.workflow-icon {
  order: 3;
  margin-top: 4px;
}

.workflow-content h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.workflow-content p {
  font-size: 17px;
}

.process-bottom-cta {
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .process-workflow-board {
    padding: 18px 14px;
  }

  .workflow-content h3 {
    font-size: 20px;
  }

  .workflow-content p {
    font-size: 16px;
  }

  .workflow-badge {
    margin-left: 0;
  }
}
/* =========================
   PROCESS WORKFLOW SIDE ICONS + LINE
========================= */
.process-workflow-wrap {
  max-width: 780px;
  text-align: center;
}

.process-workflow-title {
  margin: 10px 0 30px;
}

.process-workflow-board {
  max-width: 780px;
  margin-inline: auto;
  padding: 26px 22px;
  text-align: left;
  position: relative;
  background: var(--stormy-deep);
  border-color: rgba(136, 189, 242, 0.42);
}

.process-workflow-board::before {
  display: block;
  content: "";
  position: absolute;
  left: 52px;
  top: 58px;
  bottom: 58px;
  width: 2px;
  background: linear-gradient(180deg, rgba(136, 189, 242, 0.9), rgba(136, 189, 242, 0.35));
}

.workflow-step {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: start;
  text-align: left;
  padding: 10px 0;
}

.workflow-step + .workflow-step {
  margin-top: 10px;
}

.workflow-icon {
  order: 1;
  width: 34px;
  height: 34px;
  margin: 0;
  justify-self: center;
  align-self: start;
  background: rgba(136, 189, 242, 0.3);
  color: #ffffff;
}

.workflow-content {
  order: 2;
  max-width: none;
  text-align: left;
}

.workflow-badge {
  order: 3;
  margin: 0;
  align-self: start;
}

.workflow-content h3 {
  font-size: 22px;
  color: #ffffff;
}

.workflow-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.process-bottom-cta {
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .process-workflow-board::before {
    left: 46px;
  }

  .workflow-step {
    grid-template-columns: 46px 1fr;
  }

  .workflow-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .process-workflow-board {
    padding: 18px 14px;
  }

  .process-workflow-board::before {
    left: 32px;
    top: 48px;
    bottom: 48px;
  }

  .workflow-step {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .workflow-icon {
    width: 28px;
    height: 28px;
  }

  .workflow-content h3 {
    font-size: 18px;
  }

  .workflow-content p {
    font-size: 14px;
  }
}
/* =========================
   PROCESS WORKFLOW NO STEPS + NO RIGHT GUTTER
========================= */
.workflow-badge {
  display: none !important;
}

.process-workflow-board {
  padding-right: 14px;
}

.workflow-step {
  grid-template-columns: 58px 1fr;
  column-gap: 12px;
}

@media (max-width: 980px) {
  .workflow-step {
    grid-template-columns: 46px 1fr;
  }
}

@media (max-width: 640px) {
  .workflow-step {
    grid-template-columns: 36px 1fr;
  }
}
/* =========================
   WORKFLOW ICON UNIFY + LINE MASK
========================= */
.workflow-icon {
  position: relative;
  background: rgba(136, 189, 242, 0.3) !important;
  color: #ffffff;
  z-index: 2;
}

.workflow-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: var(--stormy-deep);
  z-index: -1;
}

.process-workflow-board::before {
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
}

.workflow-step:first-child .workflow-content h3 {
  color: #ffffff;
}
/* =========================
   INSIGHT PAGE LAYOUT
========================= */
.insight-page {
  padding-top: 110px;
  background: #ffffff;
}

.insight-narrow {
  max-width: 920px;
}

.insight-wide {
  max-width: 1320px;
}

.insight-hero {
  padding: 0 0 44px;
  background: #eef1f4;
}

.insight-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.insight-hero-copy {
  max-width: 620px;
  padding: 74px 0 120px;
}

.insight-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2f4a5d;
}

.insight-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #111a24;
}

.insight-meta {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(17, 26, 36, 0.68);
}

.insight-lead {
  margin: 0;
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.5;
  color: #324553;
}

.insight-cover {
  padding: 20px 0 34px;
}

.insight-cover-media {
  border-radius: 14px;
  overflow: visible;
  box-shadow: none;
  background: #dbe7f3;
  margin-right: -26px;
}

.insight-cover-media img {
  width: 100%;
  height: clamp(360px, 34vw, 560px);
  object-fit: cover;
  display: block;
}

.insight-hero-overlap {
  position: relative;
  z-index: 3;
  width: min(920px, 100% - 48px);
  margin: -56px auto 0 54px;
  background: #ffffff;
  padding: 30px 36px 14px;
}

.insight-hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.insight-hero-subhead {
  margin: 6px 0 0;
  font-size: clamp(33px, 2.7vw, 46px);
  line-height: 1.32;
  color: #1b2a35;
}

.insight-content {
  padding: 0 0 40px;
}

.insight-content h2 {
  margin: 40px 0 14px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.12;
  color: #1f2a33;
}

.insight-section-title--center {
  text-align: center;
}

.insight-content h3 {
  margin: 22px 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.24;
  color: #253946;
}

.insight-content p,
.insight-content li {
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.75;
  color: #314450;
}

/* Improve readability when text blocks follow each other closely. */
.insight-content p + p {
  margin-top: 0.9em;
}

.insight-content p + ul,
.insight-content p + ol,
.insight-content ul + p,
.insight-content ol + p,
.insight-content ul + ul,
.insight-content ol + ol,
.insight-content ul + ol,
.insight-content ol + ul {
  margin-top: 0.9em;
}

.insight-page--professional-website .insight-content p + p {
  margin-top: 0.9em !important;
}

.insight-page--professional-website .insight-content p + ul,
.insight-page--professional-website .insight-content p + ol,
.insight-page--professional-website .insight-content ul + p,
.insight-page--professional-website .insight-content ol + p,
.insight-page--professional-website .insight-content ul + ul,
.insight-page--professional-website .insight-content ol + ol,
.insight-page--professional-website .insight-content ul + ol,
.insight-page--professional-website .insight-content ol + ul {
  margin-top: 0.9em !important;
}

.insight-content ul {
  margin: 14px 0 16px 1.2em;
}

.insight-content .web-steps-grid {
  margin-top: 18px;
}

.insight-process-embed {
  margin-top: 16px;
  padding: 18px 0 8px !important;
}

.insight-process-embed .process-workflow-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.insight-process-embed .process-workflow-board .workflow-content h3,
.insight-process-embed .process-workflow-board .workflow-content p,
.insight-process-embed .process-workflow-board .workflow-icon {
  color: #ffffff !important;
}

.insight-faq-minimal {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.insight-faq-mini-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6d7d89;
}

.insight-faq-mini-title {
  margin: 8px 0 6px !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.08 !important;
  color: #253946 !important;
}

.insight-faq-mini-sub {
  margin: 0 0 12px;
  font-size: 15px !important;
  color: #70818d !important;
}

.insight-faq-search-wrap {
  margin: 0 auto 12px;
  max-width: 260px;
}

#insight-faq-search {
  width: 100%;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(106, 137, 167, 0.26);
  background: #ffffff;
  padding: 0 12px;
  color: #223746;
  font-size: 14px;
}

#insight-faq-search:focus {
  outline: none;
  border-color: rgba(56, 73, 89, 0.55);
  box-shadow: 0 0 0 2px rgba(106, 137, 167, 0.16);
}

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

.insight-faq--minimal {
  margin-top: 8px;
  text-align: left;
}

.insight-faq-item {
  margin: 0;
  border: 1px solid rgba(106, 137, 167, 0.15);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  overflow: hidden;
  backdrop-filter: none;
}

.insight-faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #233b4b;
  padding: 14px 40px 14px 0;
  font-size: 17px;
}

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

.insight-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  color: #48647b;
}

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

.insight-faq-item p {
  margin: 0;
  padding: 0 0 14px;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #5a6d7a !important;
}

.insight-cta {
  padding: 34px 0 64px;
}

.insight-cta .insight-narrow {
  border-top: 1px solid rgba(56, 73, 89, 0.16);
  padding-top: 28px;
}

.insight-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.1vw, 44px);
  color: #1f2a33;
}

.insight-cta p {
  margin: 0 0 18px;
  color: #314450;
}

@media (max-width: 740px) {
  .insight-page {
    padding-top: 98px;
  }

  .insight-hero {
    padding-bottom: 24px;
  }

  .insight-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .insight-hero-copy {
    padding: 26px 0 22px;
  }

  .insight-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .insight-cover-media {
    margin-right: 0;
    border-radius: 0;
  }

  .insight-hero-overlap {
    width: calc(100% - 24px);
    margin: -20px auto 0;
    padding: 18px 16px 10px;
  }

  .insight-share {
    font-size: 14px;
  }

  .insight-hero-subhead {
    font-size: 27px;
    line-height: 1.33;
  }

  .insight-cover-media img {
    height: auto;
  }

  .insight-content p,
  .insight-content li {
    font-size: 17px;
    line-height: 1.7;
  }

}
/* =========================
   PWC-LIKE HERO STRUCTURE
========================= */
.insight-page--professional-website .insight-hero {
  background: #eef1f4;
  padding: 0 0 56px;
}

.insight-page--professional-website .insight-hero-shell {
  position: relative;
}

.insight-page--professional-website .insight-hero-primary {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.insight-page--professional-website .insight-hero-primary__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 40px 120px;
}

.insight-page--professional-website .insight-hero-primary__left h1 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #111a24;
}

.insight-page--professional-website .insight-hero-primary__right {
  min-height: clamp(340px, 34vw, 540px);
}

.insight-page--professional-website .insight-hero-primary__right .insight-cover-media {
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.insight-page--professional-website .insight-hero-primary__right .insight-cover-media img {
  height: 100%;
}

.insight-page--professional-website .hero-card_secondary {
  position: relative;
  z-index: 5;
  width: min(1080px, calc(100% - 80px));
  margin: -48px auto 0;
  background: #ffffff;
  padding: 24px 28px 16px;
}

.insight-page--professional-website .hero-card_secondary .insight-hero-meta-row {
  justify-content: flex-start;
}

.insight-page--professional-website .hero-card_secondary .insight-meta {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111a24;
}

.insight-page--professional-website .hero-card_secondary .insight-hero-subhead {
  margin: 18px 0 0;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.34;
  color: #172734;
}

@media (max-width: 980px) {
  .insight-page--professional-website .insight-hero-primary {
    grid-template-columns: 1fr;
  }

  .insight-page--professional-website .insight-hero-primary__left {
    padding: 34px 12px 24px;
    justify-content: flex-start;
  }

  .insight-page--professional-website .insight-hero-primary__left h1 {
    max-width: 100%;
    font-size: clamp(38px, 9.5vw, 58px);
  }

  .insight-page--professional-website .insight-hero-primary__right {
    min-height: auto;
  }

  .insight-page--professional-website .insight-hero-primary__right .insight-cover-media img {
    height: auto;
  }

  .insight-page--professional-website .hero-card_secondary {
    width: calc(100% - 28px);
    margin-top: -18px;
    padding: 16px 14px 10px;
  }

  .insight-page--professional-website .hero-card_secondary .insight-hero-subhead {
    font-size: 26px;
  }
}
/* =========================
   REFERENCE HERO LOCK
========================= */
.insight-page--professional-website .insight-hero {
  background: #ffffff !important;
  padding: 0 0 48px !important;
  margin: 0 !important;
}

.insight-page--professional-website {
  background: #ffffff !important;
}

.insight-page + .site-footer {
  margin-top: 0;
}

body:has(main.insight-page--professional-website) {
  background: #ffffff !important;
}

body:has(main.insight-page--professional-website) .site-header {
  background: #ffffff;
}

body:has(main.insight-page--professional-website) .insight-page--professional-website + .site-footer {
  background: #ffffff;
}

.insight-page--professional-website .insight-hero-shell {
  max-width: none !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.insight-page--professional-website .insight-hero-primary {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  min-height: 372px !important;
  align-items: stretch !important;
  margin: 0 !important;
  gap: 0 !important;
}

.insight-page--professional-website .insight-hero-primary__left {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 42px 30px 74px !important;
  margin: 0 !important;
  background: #eef1f4 !important;
}

.insight-page--professional-website .insight-hero-primary__left h1 {
  margin: 0 !important;
  max-width: 620px !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: clamp(32px, 3.2vw, 49px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  color: #111111 !important;
}

.insight-page--professional-website .insight-hero-primary__right {
  min-height: 372px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.insight-page--professional-website .insight-hero-primary__right .insight-cover-media {
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.insight-page--professional-website .insight-hero-primary__right .insight-cover-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.insight-page--professional-website .hero-card_secondary {
  position: relative !important;
  z-index: 8 !important;
  width: min(780px, calc(100% - 120px)) !important;
  margin: 0 auto !important;
  transform: translateY(-38px) !important;
  background: #ffffff !important;
  padding: 16px 22px 8px !important;
  box-shadow: none !important;
}

.insight-page--professional-website .insight-content,
.insight-page--professional-website .insight-content .container,
.insight-page--professional-website .insight-faq-minimal,
.insight-page--professional-website .insight-process-embed {
  background: #ffffff !important;
}


.insight-page--professional-website .hero-card_secondary .insight-meta {
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111111 !important;
}

.insight-page--professional-website .hero-card_secondary .insight-hero-subhead {
  margin: 10px 0 0 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: clamp(15px, 1.16vw, 21px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #111111 !important;
}

@media (min-width: 981px) {
  .insight-page--professional-website .insight-hero-primary {
    height: 768px !important;
    min-height: 768px !important;
  }

  .insight-page--professional-website .insight-hero-primary__right,
  .insight-page--professional-website .insight-hero-primary__right .insight-cover-media,
  .insight-page--professional-website .insight-hero-primary__right .insight-cover-media img {
    height: 768px !important;
    min-height: 768px !important;
  }
}

@media (max-width: 980px) {
  .insight-page--professional-website .insight-hero-primary {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .insight-page--professional-website .insight-hero-primary__left {
    justify-content: flex-start !important;
    padding: 34px 12px 26px !important;
  }

  .insight-page--professional-website .insight-hero-primary__left h1 {
    max-width: 100% !important;
    font-size: clamp(26px, 7.2vw, 36px) !important;
  }

  .insight-page--professional-website .insight-hero-primary__right,
  .insight-page--professional-website .insight-hero-primary__right .insight-cover-media {
    min-height: 0 !important;
    height: auto !important;
  }

  .insight-page--professional-website .insight-hero-primary__right .insight-cover-media img {
    height: auto !important;
  }

  .insight-page--professional-website .hero-card_secondary {
    width: calc(100% - 20px) !important;
    transform: translateY(-14px) !important;
    padding: 12px 12px 8px !important;
  }

  .insight-page--professional-website .hero-card_secondary .insight-meta {
    font-size: 14px !important;
  }

  .insight-page--professional-website .hero-card_secondary .insight-hero-subhead {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.33 !important;
  }
}
/* =========================
   SCROLL MOTION LAYER
========================= */
.hero-vanrein-inner,
.hero-flow-scene {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 560ms ease-out,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.workflow-step {
  transition: none;
  box-shadow: none !important;
  background: transparent !important;
}

.workflow-step.is-inview {
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-vanrein-inner,
  .hero-flow-scene {
    transform: none !important;
    will-change: auto;
  }

  .scroll-reveal,
  .scroll-reveal.is-visible,
  .workflow-step,
  .workflow-step.is-inview {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================
   HERO IMAGE STACK (BCG-STYLE)
========================= */
.hero-vanrein {
  min-height: 100dvh;
  padding: 42px 0 90px;
  overflow: visible;
}

.hero-vanrein-inner {
  max-width: 1040px;
}

.hero-vanrein-inner.container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-vanrein h1 {
  max-width: 980px;
  margin: -12px auto 0;
  font-size: clamp(30px, 4.1vw, 56px);
  line-height: 1.06;
}

.hero-title-line {
  display: block;
}

.hero-title-line--primary {
  white-space: nowrap;
  font-size: 0.88em;
}

.hero-title-line + .hero-title-line {
  margin-top: 10px;
  display: block;
}

.hero-topic-rotator {
  width: 100vw;
  margin: 26px 0 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
}

.hero-topic-rail {
  position: relative;
  height: clamp(290px, 34vw, 470px);
}

.hero-topic-card {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  display: block;
  width: clamp(170px, 16vw, 270px);
  height: clamp(180px, 21vw, 330px);
  border-radius: 8px;
  overflow: hidden;
  border: 0;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(0.86);
  transition:
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease,
    filter 760ms ease;
  background: #dbe7f3;
  z-index: 1;
}

.hero-topic-card[data-topic-slug="konverteringsoptimering"] {
  box-shadow: none !important;
  filter: none !important;
}

.hero-topic-card[data-topic-slug="konverteringsoptimering"]::before,
.hero-topic-card[data-topic-slug="konverteringsoptimering"]::after {
  box-shadow: none !important;
  filter: none !important;
}

.hero-topic-card[data-topic-slug="konverteringsoptimering"] img {
  box-shadow: none !important;
  filter: none !important;
}

.hero-topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-topic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 12px 14px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 260ms ease, visibility 0s linear 260ms;
}

.hero-topic-category {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 31, 43, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-topic-caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  border-radius: 22px;
  background: #e6edf3;
  color: #15222d;
}

.hero-topic-kicker {
  display: inline-block;
  margin: 0;
  font-size: clamp(10px, 0.84vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f3d49;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero-topic-title {
  display: block;
  margin: 0;
  color: #15222d;
  font-size: clamp(18px, 1.52vw, 24px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: none;
  text-rendering: optimizeLegibility;
}

.hero-topic-card.is-center .hero-topic-overlay {
  padding: 16px 16px 18px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 60ms;
}

.hero-topic-card.is-center .hero-topic-caption {
  padding: 16px 18px 18px;
}

.hero-topic-card:not(.is-center) .hero-topic-caption {
  padding: 10px 11px 12px;
  border-radius: 14px;
  gap: 5px;
}

.hero-topic-card:not(.is-center) .hero-topic-kicker {
  font-size: clamp(9px, 0.68vw, 11px);
}

.hero-topic-card:not(.is-center) .hero-topic-title {
  font-size: clamp(11px, 0.84vw, 13px);
  font-weight: 600;
  line-height: 1.22;
}

.hero-topic-card.is-center {
  width: clamp(260px, 26vw, 410px);
  height: clamp(290px, 34vw, 470px);
  z-index: 5;
  transform: translate(-50%, -50%) scale(1);
  filter: saturate(1);
}

.hero-topic-card.is-left {
  z-index: 4;
  transform: translate3d(calc(-50% - min(26vw, 410px)), -50%, 0) scale(0.82);
  filter: saturate(0.95);
}

.hero-topic-card.is-right {
  z-index: 4;
  transform: translate3d(calc(-50% + min(26vw, 410px)), -50%, 0) scale(0.82);
  filter: saturate(0.95);
}

.hero-topic-card.is-far-left {
  z-index: 3;
  transform: translate3d(calc(-50% - min(50vw, 770px)), -50%, 0) scale(0.9);
  filter: saturate(0.86) brightness(0.96);
}

.hero-topic-card.is-far-right {
  z-index: 3;
  transform: translate3d(calc(-50% + min(50vw, 770px)), -50%, 0) scale(0.9);
  filter: saturate(0.86) brightness(0.96);
}

.hero-topic-card.is-off-left {
  z-index: 2;
  opacity: 0;
  transform: translate3d(calc(-50% - min(62vw, 920px)), -50%, 0) scale(0.84);
  filter: saturate(0.82) brightness(0.94);
}

.hero-topic-card.is-off-right {
  z-index: 2;
  opacity: 0;
  transform: translate3d(calc(-50% + min(62vw, 920px)), -50%, 0) scale(0.84);
  filter: saturate(0.82) brightness(0.94);
}

.hero-topic-card.is-no-transition {
  transition: none !important;
}

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

.hero-center-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(20, 31, 43, 0.18);
  background: #f3f6f8;
  color: #15222d;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-center-cta:hover {
  background: #ffffff;
  border-color: rgba(20, 31, 43, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .hero-vanrein {
    min-height: 670px;
    padding: 44px 0 64px;
  }

  .hero-topic-rotator {
    width: 100vw;
  }

  .hero-topic-rail {
    height: clamp(240px, 35vw, 340px);
  }

  .hero-topic-card {
    width: clamp(130px, 17vw, 190px);
    height: clamp(146px, 20vw, 230px);
  }

  .hero-topic-overlay {
    padding: 10px 10px 12px;
  }

  .hero-topic-category {
    font-size: 10px;
    padding: 5px 10px;
  }

  .hero-topic-caption {
    border-radius: 14px;
    padding: 10px 11px 12px;
    gap: 5px;
  }

  .hero-topic-kicker {
    font-size: 9px;
  }

  .hero-topic-title {
    font-size: clamp(10px, 0.96vw, 12px);
  }

  .hero-topic-card.is-center .hero-topic-caption {
    padding: 14px 14px 15px;
    border-radius: 18px;
  }

  .hero-topic-card.is-center .hero-topic-title {
    font-size: clamp(13px, 1.2vw, 17px);
  }

  .hero-topic-card.is-center {
    width: clamp(210px, 28vw, 320px);
    height: clamp(240px, 33vw, 340px);
  }

  .hero-topic-card.is-left {
    transform: translate3d(calc(-50% - min(24vw, 250px)), -50%, 0) scale(0.84);
  }

  .hero-topic-card.is-right {
    transform: translate3d(calc(-50% + min(24vw, 250px)), -50%, 0) scale(0.84);
  }

  .hero-topic-card.is-far-left {
    transform: translate3d(calc(-50% - min(43vw, 430px)), -50%, 0) scale(0.92);
  }

  .hero-topic-card.is-far-right {
    transform: translate3d(calc(-50% + min(43vw, 430px)), -50%, 0) scale(0.92);
  }

  .hero-topic-card.is-off-left {
    transform: translate3d(calc(-50% - min(54vw, 560px)), -50%, 0) scale(0.86);
  }

  .hero-topic-card.is-off-right {
    transform: translate3d(calc(-50% + min(54vw, 560px)), -50%, 0) scale(0.86);
  }

  .hero-title-line--primary {
    white-space: normal;
  }

  .hero-title-line + .hero-title-line {
    margin-top: 8px;
  }

  .hero-center-cta-wrap {
    margin-top: 28px;
  }

  .hero-center-cta {
    padding: 12px 22px;
  }
}

@media (max-width: 740px) {
  .hero-vanrein {
    min-height: 600px;
    padding: 32px 0 50px;
  }

  .hero-topic-rotator {
    margin-top: 22px;
  }

  .hero-topic-rail {
    height: clamp(220px, 62vw, 300px);
  }

  .hero-topic-card {
    width: clamp(82px, 20vw, 112px);
    height: clamp(110px, 28vw, 148px);
    border-radius: 6px;
  }

  .hero-topic-overlay {
    padding: 8px 8px 9px;
  }

  .hero-topic-category {
    font-size: 9px;
    padding: 4px 8px;
  }

  .hero-topic-caption {
    border-radius: 12px;
    padding: 8px 9px 9px;
    gap: 4px;
  }

  .hero-topic-kicker {
    font-size: 8px;
  }

  .hero-topic-title {
    font-size: clamp(8px, 2.0vw, 10px);
    line-height: 1.22;
  }

  .hero-topic-card.is-center .hero-topic-caption {
    border-radius: 16px;
    padding: 10px 11px 11px;
  }

  .hero-topic-card.is-center .hero-topic-title {
    font-size: clamp(11px, 3vw, 14px);
  }

  .hero-topic-card.is-center {
    width: clamp(150px, 42vw, 220px);
    height: clamp(190px, 52vw, 280px);
  }

  .hero-topic-card.is-left {
    transform: translate3d(calc(-50% - min(26vw, 128px)), -50%, 0) scale(0.82);
  }

  .hero-topic-card.is-right {
    transform: translate3d(calc(-50% + min(26vw, 128px)), -50%, 0) scale(0.82);
  }

  .hero-topic-card.is-far-left {
    transform: translate3d(calc(-50% - min(48vw, 220px)), -50%, 0) scale(0.9);
  }

  .hero-topic-card.is-far-right {
    transform: translate3d(calc(-50% + min(48vw, 220px)), -50%, 0) scale(0.9);
  }

  .hero-topic-card.is-off-left {
    transform: translate3d(calc(-50% - min(60vw, 300px)), -50%, 0) scale(0.84);
  }

  .hero-topic-card.is-off-right {
    transform: translate3d(calc(-50% + min(60vw, 300px)), -50%, 0) scale(0.84);
  }

  .hero-center-cta-wrap {
    margin-top: 22px;
  }

  .hero-center-cta {
    width: min(92vw, 320px);
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* =========================
   WORK METHOD SECTIONS
========================= */
.work-methods {
  padding: 88px 0 56px;
  background: transparent;
}

.work-methods.is-reversed-section {
  background-image:
    linear-gradient(180deg, #f8fbfe 0%, #f2f6fb 56%, #eef3f8 100%),
    var(--home-texture-a),
    var(--home-texture-b);
  background-size: auto, 260px 260px, 320px 320px;
}

.work-methods + .work-methods {
  margin-top: 168px;
}

.work-method {
  position: relative;
  padding: clamp(30px, 3.4vw, 52px) clamp(20px, 3.2vw, 44px);
  border-radius: 42px;
  overflow: hidden;
}

.work-method {
  background-image:
    radial-gradient(circle at 50% 56%, rgba(154, 186, 214, 0.36) 0%, rgba(154, 186, 214, 0.14) 30%, rgba(154, 186, 214, 0) 68%),
    linear-gradient(180deg, #f8fbfe 0%, #f2f6fb 56%, #eef3f8 100%),
    var(--home-texture-a),
    var(--home-texture-b);
  background-size: auto, auto, 260px 260px, 320px 320px;
  border: 1px solid rgba(34, 43, 76, 0.08);
  box-shadow: 0 12px 32px rgba(30, 39, 70, 0.06);
}

.work-method-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: stretch;
}

.work-method-copy {
  color: #1d2443;
}

.work-method-eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5688;
}

.work-method-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #1b184f;
}

.work-method-copy p {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: clamp(15px, 1.04vw, 21px);
  line-height: 1.5;
  color: #282f56;
}

.work-method-step-nav {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.work-method-step-dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid #3a3670;
  background: transparent;
  color: #2a2753;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.work-method-step-dot:hover {
  transform: translateY(-1px);
}

.work-method-step-dot.is-active {
  background: #1f175b;
  border-color: #1f175b;
  color: #ffffff;
}

.work-method-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1.5px solid #3b3670;
  color: #1f1a54;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}

.work-method-cta:hover {
  background: rgba(61, 51, 111, 0.08);
  transform: translateY(-1px);
}

.work-method-panel {
  background: #eceff8;
  border-radius: 38px;
  padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.9vw, 40px);
  border: 1px solid rgba(38, 36, 79, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.work-method-item {
  display: flex;
  flex-direction: column;
}

.work-method-item + .work-method-item {
  border-top: 1px solid rgba(44, 42, 84, 0.16);
}

.work-method-item.is-open {
  flex: 1 1 auto;
}

.work-method-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: #1d1b4a;
  font-size: clamp(17px, 1.2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.work-method-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #14173d;
}

.work-method-content {
  padding: 0 0 16px 18px;
}

.work-method-item.is-open .work-method-content {
  flex: 1 1 auto;
}

.work-method-content p {
  margin: 0;
  font-size: clamp(15px, 0.98vw, 18px);
  line-height: 1.5;
  color: #2c2f5d;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  padding-top: 124px;
  background:
    linear-gradient(180deg, #f8fbfe 0%, #f2f6fb 56%, #eef3f8 100%),
    var(--home-texture-a),
    var(--home-texture-b);
  background-size: auto, 260px 260px, 320px 320px;
}

.contact-hero {
  padding: 28px 0 72px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
}

.contact-copy {
  max-width: 540px;
  padding-top: 4px;
}

.contact-kicker {
  margin: 0 0 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5688;
}

.contact-copy h1 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #151a38;
  max-width: 12ch;
}

.contact-lead {
  margin: 18px 0 0;
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.6;
  color: #36405f;
  max-width: 52ch;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: grid;
  gap: 6px;
}

.contact-detail-label {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5b6282;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #161b37;
  text-decoration: none;
}

.contact-detail a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-detail p {
  font-size: 14px;
  line-height: 1.5;
  color: #4c5575;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.22);
}

.contact-form-card {
  background: #eceff8;
  border-radius: 38px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(38, 36, 79, 0.06);
  box-shadow: 0 12px 32px rgba(30, 39, 70, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-form-card h2 {
  margin: 0 0 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 600;
  line-height: 1.08;
  color: #1b184f;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form-feedback {
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.contact-form-feedback.is-success {
  color: #1f5f31;
  background: #e7f7ec;
  border: 1px solid #b8e4c6;
}

.contact-form-feedback.is-error {
  color: #7f1d1d;
  background: #feeaea;
  border: 1px solid #f8b4b4;
}

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

.contact-form-field {
  display: grid;
  gap: 8px;
}

.contact-form-field label {
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3f4868;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1.5px solid rgba(58, 54, 112, 0.16);
  background: #f6f7fc;
  color: #282f56;
  outline: none;
  font-family: "Kumbh Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form-field input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
}

.contact-form-field textarea {
  min-height: 168px;
  padding: 16px 18px;
  border-radius: 22px;
  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(37, 50, 56, 0.62);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: #1f175b;
  box-shadow: 0 0 0 2px rgba(61, 51, 111, 0.08);
}

.contact-form-actions {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.contact-form-actions button {
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.contact-form-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.22);
}

@media (min-width: 1081px) {
  .work-method {
    min-height: 640px;
  }
}

@media (max-width: 1080px) {
  .work-methods {
    padding: 72px 0 48px;
  }

  .work-methods + .work-methods {
    margin-top: 120px;
  }

  .work-method {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .work-method-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-method-copy p {
    max-width: none;
    font-size: clamp(15px, 1.75vw, 19px);
  }

  .work-method-trigger {
    font-size: clamp(17px, 2.2vw, 22px);
    padding: 13px 0;
  }

  .work-method-content p {
    font-size: clamp(14px, 1.65vw, 17px);
  }

  .work-method-cta {
    font-size: 16px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-copy {
    max-width: none;
    padding-top: 0;
  }

  .contact-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .work-methods {
    padding: 56px 0 38px;
  }

  .work-methods + .work-methods {
    margin-top: 88px;
  }

  .work-method {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .work-method-panel {
    border-radius: 24px;
    padding: 18px 18px 20px;
  }

  .work-method-step-dot {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .work-method-cta {
    margin-top: 28px;
    padding: 12px 22px;
    font-size: 15px;
  }

  .work-method-trigger {
    font-size: 20px;
  }

  .work-method-icon {
    font-size: 25px;
  }

  .work-method-content p {
    font-size: 16px;
  }

  .contact-page {
    padding-top: 108px;
  }

  .contact-hero {
    padding: 20px 0 56px;
  }

  .contact-copy h1 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .contact-details {
    margin-top: 26px;
    gap: 18px;
  }

  .contact-detail a {
    font-size: clamp(22px, 6.4vw, 30px);
  }

  .contact-form-card {
    border-radius: 28px;
    padding: 20px 18px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    justify-content: stretch;
  }

  .contact-form-actions button {
    width: 100%;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700&display=swap');
