/* ============================================================
   QamberTrail — Custom CSS
   Design: Organic Shapes, Scandinavian warmth
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --clr-primary: #4A7C59;
  --clr-primary-dark: #355A40;
  --clr-primary-light: #6FA882;
  --clr-primary-xlight: #E8F2EB;
  --clr-accent: #C4813A;
  --clr-accent-light: #F5E6D3;
  --clr-text: #1E2B22;
  --clr-text-mid: #3D5247;
  --clr-text-muted: #6B8070;
  --clr-text-light: #9AB5A4;

  --bg-base: #F7F5F0;
  --bg-warm: #EEF5F0;
  --bg-soft: #F0EDE6;
  --footer-bg: #1E2B22;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --radius-blob: 60% 40% 55% 45% / 45% 55% 45% 55%;

  --shadow-low: 0 1px 3px rgba(30,43,34,0.06), 0 4px 12px rgba(30,43,34,0.08);
  --shadow-mid: 0 2px 6px rgba(30,43,34,0.07), 0 8px 24px rgba(30,43,34,0.10);
  --shadow-high: 0 4px 12px rgba(30,43,34,0.08), 0 16px 40px rgba(30,43,34,0.14);
  --shadow-float: 0 8px 20px rgba(30,43,34,0.10), 0 24px 60px rgba(30,43,34,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-narrow: 720px;
  --max-wide: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Schibsted Grotesk', sans-serif;
  background-color: var(--bg-base);
  color: var(--clr-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* ---- Layout ---- */
.narrow-content {
  width: 100%;
  max-width: var(--max-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

.section-pad { padding: clamp(3rem, 8vw, 6rem) 0; }

.bg-warm { background-color: var(--bg-warm); }
.bg-soft { background-color: var(--bg-soft); }
.center-text { text-align: center; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  color: var(--clr-text);
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-xlight);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--clr-text);
}

.section-title-left {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.section-intro {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--clr-text-mid);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-low);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-mid);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-primary);
  border-color: transparent;
}
.btn-ghost:hover {
  color: var(--clr-primary-dark);
  background: var(--clr-primary-xlight);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-low);
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.12);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-low);
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }

.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: var(--clr-text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary);
  background: var(--clr-primary-xlight);
}

.nav-cta {
  background: var(--clr-primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  box-shadow: var(--shadow-low);
}
.nav-cta:hover {
  background: var(--clr-primary-dark);
  color: #fff !important;
  box-shadow: var(--shadow-mid);
}
.nav-link.active.nav-cta {
  background: var(--clr-primary-dark);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger:hover { background: var(--clr-primary-xlight); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-base);
  z-index: 99;
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mobile-nav-link:hover {
  background: var(--clr-primary-xlight);
  color: var(--clr-primary);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 0;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-blob--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(ellipse, #C4E8CE 0%, transparent 70%);
  top: -10%;
  right: -15%;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
}
.hero-blob--2 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: radial-gradient(ellipse, #F5E6D3 0%, transparent 70%);
  bottom: 20%;
  left: -10%;
  border-radius: 38% 62% 54% 46% / 44% 60% 40% 56%;
}
.hero-blob--3 {
  width: clamp(150px, 25vw, 300px);
  height: clamp(150px, 25vw, 300px);
  background: radial-gradient(ellipse, #A8D5B5 0%, transparent 70%);
  top: 30%;
  left: 30%;
  border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-primary-xlight);
  color: var(--clr-primary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4em 1em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74, 124, 89, 0.2);
}

.hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Splitting.js character animation */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(3deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-title.animated .char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.hero-title .char { transition-delay: calc(var(--char-index) * 0.03s); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--clr-text-mid);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  background: rgba(255,255,255,0.6);
  border-radius: 100px;
  padding: 0.4em 1em;
  border: 1px solid rgba(74, 124, 89, 0.15);
  max-width: 520px;
  margin: 0 auto;
}
.hero-note i { color: var(--clr-primary); flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-img-blob {
  width: clamp(280px, 80vw, 620px);
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-high);
  position: relative;
}

.hero-img {
  width: 100%;
  height: clamp(200px, 40vw, 380px);
  object-fit: cover;
  display: block;
}

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ---- Wave Dividers ---- */
.wave-top, .wave-bottom { line-height: 0; margin: 0; }
.wave-top svg, .wave-bottom svg { width: 100%; display: block; }
.wave-top { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }

/* ---- Intro Flow (invisible boundary) ---- */
.intro-flow {
  background: var(--bg-warm);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.intro-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.intro-body {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--clr-text-mid);
  line-height: 1.75;
}
.intro-body strong { color: var(--clr-primary-dark); font-weight: 700; }

/* ---- Services Section ---- */
.services-section { position: relative; overflow: hidden; }

.services-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, #E8F2EB 0%, transparent 70%);
  border-radius: 62% 38% 55% 45% / 55% 62% 38% 45%;
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-low);
  transition: all var(--transition);
  border: 1px solid rgba(74, 124, 89, 0.08);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-primary-xlight);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--clr-primary);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--clr-primary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
}

/* ---- Process Preview ---- */
.process-preview { position: relative; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-primary-light);
  line-height: 1;
  min-width: 52px;
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
}

.process-connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--clr-primary-light), transparent);
  margin-left: 26px;
  border-radius: 2px;
}

.process-cta { text-align: center; margin-top: 2rem; }

/* ---- Visual Section ---- */
.visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.visual-text p {
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.visual-text .btn { margin-top: 0.5rem; }

.visual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-img-main { grid-column: 1 / -1; }
.visual-img-accent { margin-top: -1.5rem; }

.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  object-fit: cover;
  width: 100%;
}
.full-img { width: 100%; }

/* ---- Doc Types ---- */
.doc-types { position: relative; overflow: hidden; }
.doc-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, #F5E6D3 0%, transparent 70%);
  border-radius: 38% 62% 45% 55% / 55% 38% 62% 45%;
  bottom: -100px;
  left: -150px;
  pointer-events: none;
}

.doc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-mid);
  box-shadow: var(--shadow-low);
  transition: all var(--transition);
}
.doc-chip i { color: var(--clr-primary); font-size: 0.85rem; }
.doc-chip:hover {
  background: var(--clr-primary-xlight);
  border-color: var(--clr-primary);
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}

/* ---- Why Preview ---- */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-image img { height: 280px; object-fit: cover; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}
.why-list li i { color: var(--clr-primary); margin-top: 0.15rem; flex-shrink: 0; }

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  background: var(--clr-primary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  opacity: 0.25;
  pointer-events: none;
}
.cta-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, #fff 0%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 62% 38% 55% 45% / 45% 62% 38% 55%;
}
.cta-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, #C4813A 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  border-radius: 38% 62% 45% 55% / 62% 38% 55% 45%;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--clr-primary-dark);
}
.cta-section .btn-primary:hover {
  background: var(--clr-accent-light);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-high);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  position: relative;
}

.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; display: block; }

.footer-inner { padding-top: 2rem; padding-bottom: 2rem; }

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

.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 1rem; }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}

.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }

.footer-contact-col address p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-col address i { color: var(--clr-primary-light); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  text-align: center;
}

.page-hero-blob {
  position: absolute;
  width: clamp(300px, 60vw, 600px);
  height: clamp(300px, 60vw, 600px);
  background: radial-gradient(ellipse, #C4E8CE 0%, transparent 70%);
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  top: -30%;
  right: -20%;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.6;
}

.page-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.page-title.animated .char {
  opacity: 1;
  transform: translateY(0);
}
.page-title .char { transition-delay: calc(var(--char-index) * 0.025s); }

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Pillar Cards (Why Page) ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(74, 124, 89, 0.08);
  transition: all var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  transition: all var(--transition);
}
.pillar-card:hover .pillar-icon {
  background: var(--clr-primary);
  color: #fff;
}

.pillar-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ---- Clarity Block (Why Page) ---- */
.clarity-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.clarity-image img { height: 260px; object-fit: cover; }

.clarity-text p {
  color: var(--clr-text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.do-dont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.do-section, .dont-section {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}
.do-section {
  background: #E8F5EC;
  border: 1px solid rgba(74, 124, 89, 0.2);
}
.dont-section {
  background: #FFF0F0;
  border: 1px solid rgba(196, 80, 80, 0.15);
}

.do-section h3 { color: #2D6A3F; margin-bottom: 0.75rem; font-size: 0.95rem; }
.dont-section h3 { color: #B03030; margin-bottom: 0.75rem; font-size: 0.95rem; }
.do-section h3 i { margin-right: 0.4rem; }
.dont-section h3 i { margin-right: 0.4rem; }

.do-section ul, .dont-section ul { display: flex; flex-direction: column; gap: 0.4rem; }
.do-section li { font-size: 0.88rem; color: #2D5A38; padding-left: 0.5rem; }
.dont-section li { font-size: 0.88rem; color: #8B2020; padding-left: 0.5rem; }

/* ---- Audience Grid ---- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.audience-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(74, 124, 89, 0.08);
  transition: all var(--transition);
  text-align: center;
}
.audience-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-3px);
}
.audience-card > i {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.audience-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.88rem; color: var(--clr-text-mid); line-height: 1.6; }

/* ---- Detailed Steps (How Page) ---- */
.detailed-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.detail-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.detail-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-primary-xlight);
  line-height: 1;
  min-width: 60px;
  -webkit-text-stroke: 2px var(--clr-primary-light);
  color: transparent;
  letter-spacing: -0.02em;
}

.detail-step-body h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.detail-step-body p {
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.step-detail-box {
  background: var(--clr-primary-xlight);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clr-primary);
  margin-top: 0.5rem;
}
.step-detail-box h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin-bottom: 0.6rem;
}
.step-detail-box ul { display: flex; flex-direction: column; gap: 0.35rem; }
.step-detail-box li {
  font-size: 0.88rem;
  color: var(--clr-text-mid);
  padding-left: 1rem;
  position: relative;
}
.step-detail-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-primary);
}

.step-img { margin-top: 1rem; }
.step-img img { height: 220px; object-fit: cover; }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-low);
  border: 1px solid rgba(74, 124, 89, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-mid); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: background var(--transition);
  min-height: 44px;
}
.faq-question:hover { background: var(--clr-primary-xlight); }
.faq-question i {
  color: var(--clr-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.1rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* ---- Benefits ---- */
.benefits-hero-img img { height: 320px; object-fit: cover; }

.benefits-list-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item-detailed {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.benefit-icon-large {
  width: 56px;
  height: 56px;
  background: var(--clr-primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-text-large h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.benefit-text-large p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

.context-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.context-text p {
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
}
.context-image img { height: 260px; object-fit: cover; }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ---- Contact Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-col h2,
.contact-form-col h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}
.contact-detail-item p {
  font-size: 0.92rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}
.contact-detail-item a {
  color: var(--clr-text-mid);
  transition: color var(--transition);
}
.contact-detail-item a:hover { color: var(--clr-primary); }

.contact-img-wrap img { height: 220px; object-fit: cover; }

/* Contact Form */
.form-intro {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(74, 124, 89, 0.25);
  border-radius: var(--radius-md);
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.92rem;
  color: var(--clr-text);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 1.5px solid rgba(74, 124, 89, 0.35);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--clr-primary);
  margin-top: 2px;
}
.checkbox-label a { color: var(--clr-primary); text-decoration: underline; }

/* Map */
.map-section { padding: clamp(2rem, 5vw, 4rem) 0; }
.map-section .section-title { margin-bottom: 1.5rem; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 1px solid rgba(74, 124, 89, 0.1);
  max-width: var(--max-wide);
  margin: 0 auto;
}
.map-wrap iframe { display: block; }

/* ---- Thanks Page ---- */
.thanks-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.thanks-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.thanks-blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, #C4E8CE 0%, transparent 70%);
  top: -150px;
  left: -150px;
}
.thanks-blob--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, #F5E6D3 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.thanks-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
  display: block;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.thanks-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.thanks-content > p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thanks-contact-info {
  background: var(--clr-primary-xlight);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(74, 124, 89, 0.15);
}
.thanks-contact-info p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  margin-bottom: 0.5rem;
}
.thanks-contact-info p:first-child { margin-bottom: 0.75rem; font-weight: 600; }
.thanks-contact-info a { color: var(--clr-primary); font-weight: 500; }
.thanks-contact-info a:hover { color: var(--clr-primary-dark); }
.thanks-contact-info i { margin-right: 0.4rem; }

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---- Legal Pages ---- */
.legal-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.legal-body {
  max-width: 680px;
}
.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--clr-text);
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.6rem;
  color: var(--clr-text-mid);
}
.legal-body p {
  font-size: 0.92rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body li {
  font-size: 0.92rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.legal-body a { color: var(--clr-primary); text-decoration: underline; }
.legal-body a:hover { color: var(--clr-primary-dark); }
.legal-body strong { color: var(--clr-text); }

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-low);
}
.cookie-table th {
  background: var(--clr-primary-xlight);
  color: var(--clr-primary-dark);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  text-align: left;
  font-size: 0.8rem;
}
.cookie-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
  color: var(--clr-text-mid);
  background: #fff;
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 3rem);
  max-width: 680px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: 1.5rem;
  z-index: 9999;
  border: 1px solid rgba(74, 124, 89, 0.12);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.cookie-banner-header i {
  color: var(--clr-accent);
  font-size: 1.3rem;
}
.cookie-banner-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cookie-banner a { color: var(--clr-primary); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  min-height: 44px;
}
.cookie-btn-accept {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}
.cookie-btn-accept:hover { background: var(--clr-primary-dark); border-color: var(--clr-primary-dark); }
.cookie-btn-reject {
  background: transparent;
  color: var(--clr-text-mid);
  border-color: rgba(74, 124, 89, 0.3);
}
.cookie-btn-reject:hover { background: var(--bg-soft); }
.cookie-btn-customize {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.cookie-btn-customize:hover { background: var(--clr-primary-xlight); }

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 43, 34, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-float);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}
.cookie-category:last-of-type { border-bottom: none; }

.cookie-cat-info h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; }
.cookie-cat-info p { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--clr-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .do-dont { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }

  .hero-inner { text-align: left; }
  .hero-badge { margin-left: 0; }
  .hero-subtitle { margin-left: 0; margin-right: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-note { justify-content: flex-start; margin-left: 0; }

  .hero-image-wrap { justify-content: flex-end; margin-top: -4rem; }

  .visual-grid { grid-template-columns: 1fr 1fr; }
  .why-wrap { grid-template-columns: 1fr 1fr; }
  .clarity-block { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .process-steps { flex-direction: row; align-items: flex-start; }
  .process-connector { width: 2rem; height: 2px; margin-left: 0; margin-top: 1.2rem; background: linear-gradient(to right, var(--clr-primary-light), transparent); align-self: flex-start; }
  .process-step { flex-direction: column; flex: 1; }
  .step-num { font-size: 2.5rem; }
}

/* ---- Intl Tel Input Fix ---- */
.iti__flag-container { z-index: 10; }
.iti { display: block; }