/* PROAKTIV — Brand Guidelines 2026
   Primary: Deep Forest 70% · Crème 20% · Gold 10%
   Secondary: Medium Green, Warm Brown · Supporting: Beige, White, Dark */

:root {
  /* Brand primaries */
  --green: #0A4833;          /* Deep Forest (Pantone 3435 C) */
  --green-light: #11684A;    /* Medium Green — hovers, secondary */
  --green-deep: #072A1F;     /* Darker depth, shadows */
  --cream: #FEFEF2;          /* Crème — page background */
  --gold: #F5D52A;           /* Gold — transformation moments only (10%) */
  --brown: #D68F5B;          /* Warm Brown — secondary data viz */
  --beige: #F6EEDD;          /* Supporting warmth */

  /* Legacy aliases (brass now = gold per brand — transformation only) */
  --brass: #F5D52A;          /* alias → gold, deprecated */
  --brass-light: #F7DE4C;    /* alias → gold-tint */

  /* Text + neutrals */
  --text: #1D1D1B;           /* Brand Dark */
  --text-light: #4A4A47;
  --white: #FFFFFF;
  --carrara: #F6EEDD;        /* → Beige per brand */

  /* UI tokens */
  --border: rgba(10,72,51,0.08);
  --border-hover: rgba(245,213,42,0.50);
  --shadow-hover: 0 24px 64px rgba(10,72,51,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1100px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Marcellus', Georgia, serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width:100%; height:auto; display:block; }
a { color: var(--green); text-decoration:none; transition: var(--transition); }
a:hover { color: var(--brass); }

.container { max-width: var(--max-width); margin:0 auto; padding:0 2.5rem; }

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--green);
  line-height: 1.12;
  font-weight: 400;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
.accent { color: var(--brass); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap:0.5rem;
  padding: 0.95rem 2.5rem; border-radius: 50px;
  font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: none;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--green-light); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,61,46,0.25);
}
.btn-light {
  background: var(--white); color: var(--green);
  font-weight: 500;
}
.btn-light:hover {
  background: var(--cream); color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 400;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08); color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-brass {
  background: var(--brass); color: var(--green);
  font-weight: 600;
}
.btn-brass:hover {
  background: var(--brass-light); color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(226,192,68,0.35);
}
.btn-green {
  background: var(--green); color: var(--white);
}
.btn-green:hover {
  background: var(--green-light); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,61,46,0.22);
}

/* ========== HEADER ========== */
.header {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(11,61,46,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0;
}
.logo img { height: 24px; width:auto; }
.nav { display:flex; align-items:center; gap:2.75rem; }
.nav a {
  color: rgba(255,255,255,0.65); font-size:0.82rem; font-weight:400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav a:hover { color: var(--white); }
.nav .btn {
  padding: 0.5rem 1.5rem; font-size:0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.nav .btn-light {
  background: var(--white);
  color: var(--green);
  font-weight: 600;
}
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:0.5rem; }
.nav-toggle span { display:block; width:22px; height:1.5px; background:var(--white); margin:5px 0; transition: var(--transition); }

/* ========== HERO ========== */
.hero,
.contact-hero,
.research-hero,
.results-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, var(--green) 0%, #072A1F 100%);
  color: #FFFFFF;
  overflow: hidden;
  padding: 9rem 0 4rem;
}
/* Home hero keeps the full-bleed image feel */
.hero.hero-home {
  min-height: 94vh;
  padding: 80px 0 0;
  background: #072A1F;
  isolation: isolate;
}
/* Image constrained to right half, lower opacity so text is always readable */
.hero.hero-home .hero-bg {
  z-index: 0;
  left: auto !important;
  right: 0;
  width: 50% !important;
  max-width: 50% !important;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.9;
}
/* Solid dark overlay covers left 55%, fades out to show image on right */
.hero.hero-home::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,
    #072A1F 0%,
    #072A1F 45%,
    rgba(7,42,31,0.70) 60%,
    rgba(7,42,31,0) 75%);
  z-index: 1;
  pointer-events: none;
}
.hero.hero-home .container { position: relative; z-index: 2; }
.hero.hero-home .hero-content { position: relative; z-index: 2; }
.hero-bg {
  position:absolute; top:0; right:0; bottom:0;
  width:auto; height:100%; max-width:65%; object-fit:contain; object-position: right top; opacity:0.85;
}
/* Author row inside combined promo card */
.vahv-promo-author-row {
  display: flex;
  flex-direction: column;
}
.vahv-promo-author-row .author-name {
  font-family: 'Marcellus', serif;
  font-size: 0.9rem;
  color: var(--brass);
  margin-bottom: 0.15rem;
}
.vahv-promo-author-row .author-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(226,192,68,0.5);
  line-height: 1.4;
}
.vahv-promo-divider {
  width: 100%;
  height: 1px;
  background: rgba(226,192,68,0.2);
  margin: 0.6rem 0;
}
.vahv-promo-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero .container,
.contact-hero .container,
.research-hero .container,
.results-hero .container {
  position: relative; z-index: 2;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 0;
}
/* ========== HERO TEXT — SINGLE SOURCE OF TRUTH ========== */
.hero h1, .hero h2, .hero h3,
.hero-content h1, .hero-content h2, .hero-content h3 {
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: none;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.hero h1 span, .hero-content h1 span {
  opacity: 1 !important;
}
.hero p, .hero-content p {
  color: #FFFFFF !important;
  opacity: 0.92 !important;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 3rem;
}
.hero .hero-tag, .hero-content .hero-tag, .hero-tag {
  display: inline-block;
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

/* ========== VAHV HERO PROMO (gaze-priming) ========== */
.vahv-hero-promo {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: rgba(7,42,31,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226,192,68,0.35);
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  color: #fff;
  max-width: 480px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: vahvSlideIn 0.8s 1.5s both cubic-bezier(0.16,1,0.3,1);
}
.vahv-hero-promo:hover {
  background: rgba(7,42,31,0.88);
  border-color: rgba(226,192,68,0.7);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: #fff;
}

@keyframes vahvSlideIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Book cover — rectangular, with shadow */
.vahv-promo-author {
  flex-shrink: 0;
}
.vahv-promo-book img {
  width: 80px;
  height: 96px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  border: none;
  border: 2px solid rgba(226,192,68,0.5);
  box-shadow: 0 0 0 3px rgba(7,42,31,0.6);
}

/* Text block */
.vahv-promo-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.vahv-promo-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.vahv-promo-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.vahv-promo-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
}
.vahv-promo-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brass);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.vahv-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.vahv-hero-promo:hover .vahv-arrow {
  transform: translateX(4px);
}

/* Scarcity badge */
.vahv-promo-badge {
  flex-shrink: 0;
  text-align: center;
  padding: 0.4rem 0.6rem;
  background: rgba(226,192,68,0.12);
  border: 1px solid rgba(226,192,68,0.3);
  border-radius: 8px;
  line-height: 1.1;
}
.vahv-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brass);
}
.vahv-badge-label {
  display: block;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Mobile: reposition as bottom-bar */
@media (max-width: 768px) {
  .vahv-hero-promo {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 14px 14px 0 0;
    max-width: 100%;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    animation-delay: 2s;
    z-index: 999;
  }
  .vahv-promo-author img {
    width: 48px;
    height: 48px;
  }
  .vahv-promo-book img {
    width: 60px;
    height: 72px;
  }
  .vahv-promo-title {
    font-size: 0.9rem;
  }
  .vahv-promo-sub {
    font-size: 0.72rem;
  }
  .vahv-promo-badge {
    display: none;
  }
}

/* Tiny screens */
@media (max-width: 380px) {
  .vahv-promo-sub { display: none; }
  .vahv-promo-title { font-size: 0.85rem; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 9rem 0;
}
.section-header {
  text-align:center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.section-header p {
  font-size: 1rem;
  margin-top: 1.5rem;
  line-height: 1.85;
}
.section-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}

/* ========== 3-STEP PROCESS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow:hidden;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.step-number {
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  background: var(--brass);
  color: var(--white);
  border-radius:50%;
  font-weight:600; font-size:1rem;
  margin-bottom:1.75rem;
}
.step h3 { margin-bottom:1.25rem; }
.step p { font-size:0.9rem; line-height:1.85; color: var(--text-light); }

/* ========== USP CARDS ========== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.usp-card h3 { margin-bottom:1.25rem; font-size:1.2rem; }
.usp-card p { font-size:0.9rem; margin-bottom:1.75rem; line-height:1.85; color: var(--text-light); }
.usp-card .btn { margin-top:auto; align-self:center; font-size:0.85rem; padding:0.75rem 1.75rem; }

/* ========== FAQ ========== */
.faq-list { max-width:680px; margin:0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.75rem 0;
  background:none; border:none; cursor:pointer;
  font-size:0.95rem; font-weight:500; color:var(--green);
  text-align:left; font-family: var(--font);
  transition: var(--transition);
}
.faq-question:hover { color: var(--brass); }
.faq-icon {
  width:18px; height:18px; flex-shrink:0;
  transition: var(--transition);
  opacity: 0.4;
}
.faq-item.open .faq-icon { transform: rotate(45deg); opacity:1; }
.faq-answer {
  max-height:0; overflow:hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.75rem;
  color: var(--text-light);
  line-height: 1.85;
  font-size: 0.9rem;
}

/* ========== PRICING ========== */
.pricing-intro {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 5rem;
  padding: 3rem 3rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pricing-intro:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pricing-intro .price-label { margin-bottom: 0.75rem; }
.pricing-intro h3 { font-size: 1.2rem; margin-bottom: 0; }
.pricing-intro .price-amount { font-size: 1.85rem; margin: 1.25rem 0 0; }
.pricing-intro .price-period { margin-bottom: 2rem; }
.pricing-intro p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.pricing-intro .btn { padding: 0.85rem 2.5rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem 3rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
}
.price-card.featured {
  border-color: var(--border);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.price-card.featured:hover { transform: translateY(-6px); }
.price-label {
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--brass); margin-bottom: 1.25rem;
}
.price-card h3 { margin-bottom: 0; font-size: 1.3rem; }
.price-amount {
  font-size: 2.1rem; font-weight: 400; color: var(--green);
  font-family: var(--font-display);
  margin: 1.75rem 0 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-amount .currency {
  font-size: 0.8rem;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-top: 0.6rem;
}
.price-period {
  font-size: 0.75rem; color: var(--text-light);
  margin-bottom: 2.75rem; margin-top: 0.5rem;
  opacity: 0.5;
  letter-spacing: 0.04em;
}
.price-divider {
  width: 32px; height: 1px;
  background: var(--brass);
  margin: 0 auto 2.25rem;
  opacity: 0.4;
}
.price-card p {
  font-size: 0.88rem; margin-bottom: 2.25rem;
  text-align: center; line-height: 1.85;
  color: var(--text-light);
}
.price-card .qualifier {
  font-size: 0.72rem; font-weight: 500; color: var(--green);
  margin-bottom: 2.25rem; text-align: center;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--green-deep);
  color: var(--white);
  padding: 7rem 0;
  text-align:center;
}
.cta-banner h2 { color: var(--white); margin-bottom:1.5rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size:1rem; max-width:460px; margin:0 auto 3rem; line-height:1.85; font-weight:300; }

/* ========== FOOTER ========== */
.footer {
  background: var(--carrara);
  color: var(--brown);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(122,98,68,0.12);
}
.footer-grid {
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem;
}
.footer-brand img { height:22px; margin-bottom:1rem; }
.footer-brand p { font-size:0.85rem; max-width:280px; color: var(--brown); line-height:1.7; }
.footer h4 {
  color: var(--green); font-family: var(--font);
  font-size:0.65rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.2em;
  margin-bottom:1.25rem;
}
.footer a { color: var(--brown); font-size:0.85rem; }
.footer a:hover { color: var(--green); }
.footer ul { list-style:none; }
.footer li { margin-bottom:0.65rem; }
.footer p { color: var(--brown); }
.footer strong { color: var(--green); font-weight:500; }
.footer-bottom {
  border-top: 1px solid rgba(122,98,68,0.12);
  padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.8rem;
  color: var(--brown);
}

/* ========== RESPONSIVE — TABLET (max-width: 768px) ========== */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* -- Navigation -- */
  .nav {
    display:none; position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--green-deep); flex-direction:column;
    justify-content:center; align-items:center;
    gap:1.5rem; z-index:200; padding:2rem;
  }
  .nav.open { display:flex; position:fixed; top:0; left:0; right:0; bottom:0; z-index:9999; background:var(--green-deep); }
  .nav a { font-size:1.15rem; letter-spacing: 0.1em; }
  .nav .btn { min-height:48px; min-width:160px; font-size:0.95rem; }
  .nav-toggle { display:block; z-index:300; padding:0.75rem; }

  /* -- Hero — mobile: full-bleed background image, text+CTA above fold -- */
  .hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 0;
  }
  .hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.5;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0 1.5rem;
    max-width: 100%;
  }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(7,42,31,0.92) 0%,
      rgba(7,42,31,0.80) 50%,
      rgba(11,61,46,0.65) 100%);
  }
  .hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); line-height: 1.2; margin-bottom: 0.75rem; }
  .hero p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; max-width: 100%; }
  .hero-tag { font-size: 0.6rem; margin-bottom: 1rem; letter-spacing: 0.2em; }
  .hero-actions { display: flex; flex-direction: column; gap: 0.6rem; }
  .hero-actions .btn { width: 100%; min-height: 48px; justify-content: center; font-size: 0.9rem; }

  /* -- Sections -- */
  .section { padding: 4rem 0; }
  .section-header { margin: 0 auto 3rem; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* -- Grids stack on mobile -- */
  .steps, .usp-grid { grid-template-columns: 1fr; gap:1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; gap:1.25rem; }
  .step { padding: 2rem 1.5rem; }
  .usp-card { padding: 2rem 1.5rem; }
  .price-card { padding: 2.5rem 1.5rem 2rem; }

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  /* -- CTAs — minimum touch targets -- */
  .btn { min-height: 48px; padding: 0.85rem 2rem; font-size: 0.9rem; }
  .price-card .btn { min-height: 48px; }

  /* -- Footer -- */
  .footer { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }

  /* -- Newsletter form in footer -- */
  .footer-newsletter-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .footer-newsletter-form input[type="email"] {
    width: 100% !important;
    flex: none !important;
    min-height: 48px;
    font-size: 16px !important; /* prevents iOS zoom */
  }
  .footer-newsletter-form button,
  .footer-newsletter-form .btn {
    width: 100% !important;
    min-height: 48px;
    justify-content: center;
  }

  /* -- Contact grid -- */
  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* -- CTA banner -- */
  .cta-banner { padding: 4rem 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-banner p { font-size: 0.9rem; }

  /* -- Page-specific hero variants -- */
  .contact-hero { padding: 7rem 0 3rem; }
  .research-hero { padding: 7rem 0 3rem; }
  .policy-hero { padding: 7rem 0 3rem; }

  /* -- FAQ -- */
  .faq-question { padding: 1.25rem 0; font-size: 0.9rem; min-height: 48px; }

  /* -- Partner logos row -- */
  .footer .partner-logos,
  .footer [style*="justify-content:center"][style*="gap:3rem"] {
    flex-wrap: wrap;
    gap: 1.5rem !important;
    justify-content: center;
  }

  /* -- Prevent horizontal scroll -- */
  html, body { overflow-x: hidden; }

  /* -- Images -- */
  img { max-width: 100%; height: auto; }

  /* -- Tables (if any) -- */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ========== RESPONSIVE — SMALL PHONE (max-width: 480px) ========== */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero { min-height: auto; }
  .hero h1 { font-size: 1.65rem; line-height: 1.22; }
  .hero p { font-size: 0.88rem; }
  .hero-content { padding: 1.5rem 0 1rem; }

  .section { padding: 3rem 0; }
  .section-header { margin: 0 auto 2rem; }

  .step { padding: 1.5rem 1.25rem; }
  .usp-card { padding: 1.5rem 1.25rem; }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { gap: 1.5rem; }

  .pricing-intro { padding: 2rem 1.5rem; }

  .cta-banner { padding: 3rem 0; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
.animate { opacity:0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(20px); }
.animate.visible {
  animation: fadeUp 0.8s ease forwards;
}
/* Fallback: if JS hasn't triggered visible after 3s, show content anyway */
@media (prefers-reduced-motion: reduce) {
  .animate { opacity:1; transform:none; }
}
/* No-JS fallback */
noscript ~ * .animate, html:not(.js) .animate { opacity:1; transform:none; }


/* Fix: nav menu stacking — backdrop-filter on .header creates stacking context
   that traps .nav z-index. Remove it when nav is open. */
.header:has(.nav.open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 9999;
}

/* ========== ARTICLE / POLICY PAGES ==========
   Reusable on /cookies, /ivo-hsan, /forskning article body, future blog posts. */
.article,
.policy-content {
  max-width: 750px;
  margin: 0 auto;
}
.article h2,
.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.article h3,
.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.article p,
.policy-content p {
  font-size: 1.05rem;
  line-height: 1.85;
}
.article ul,
.policy-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.article li,
.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Skip link (accessibility — visible on focus) */
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 1rem;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  z-index: 10000;
}

/* ========== LEGAL PAGES (ivo-hsan) ========== */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.legal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.legal-card p { margin-bottom: 0.75rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  vertical-align: top;
}
.legal-table td:first-child {
  font-weight: 500;
  color: var(--green);
  width: 40%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== RESULTAT PAGE ========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}
.stat-card p { font-size: 0.85rem; line-height: 1.65; }
.result-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  transition: var(--transition);
}
.result-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.result-card h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.result-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.result-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
}
.result-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,107,74,0.06);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
}
.disclaimer {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
}
.disclaimer strong { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* Partner logos — brass-tinted */
.partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
  /* targets Gold #F5D52A */
  filter: brightness(0) saturate(100%) invert(40%) sepia(40%) saturate(550%) hue-rotate(3deg) brightness(92%) contrast(85%);
  transition: opacity 0.3s;
}
.partner-logo:hover { opacity: 1; }
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .result-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ========== KONTAKT PAGE ========== */
.contact-hero .container { position: relative; z-index: 2; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  color: var(--green); margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font); font-size: 1rem;
  background: var(--cream);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { padding: 2rem 0; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.95rem; }
.info-card a { color: var(--green); font-weight: 600; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-hero { padding: 7rem 0 3rem; }
  .contact-hero::after { width: 100%; opacity: 0.15; }
  .contact-form { padding: 1.5rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; min-height: 48px; }
  .contact-form .btn { width: 100%; min-height: 48px; justify-content: center; }
}

/* ========== FORSKNING PAGE ========== */
.research-hero .container { position: relative; z-index: 2; }
.page-forskning .article h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.75rem; }
.page-forskning .article h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-meta {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.founder-card {
  display: flex; gap: 2rem; align-items: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); margin: 3rem 0;
}
.founder-card img {
  width: 120px; height: 120px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.founder-card h4,
.founder-card .h4-style,
.founder-card h2.h4-style {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  margin-top: 0;
}
.founder-card .role {
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
}
.founder-card p { font-size: 0.95rem; margin-top: 0.5rem; }
@media (max-width: 600px) {
  .founder-card { flex-direction: column; text-align: center; }
}
