/* ═══════════════════════════════════════════
   GOFOND — STYLESHEET v2
   Nordic light design · Inter · Forest green
═══════════════════════════════════════════ */

/* ── Variables ──────────────────────────── */
:root {
  /* Backgrounds */
  --bg:        #f7f5f1;
  --bg-2:      #ede9e3;
  --bg-3:      #e0dbd3;
  --bg-card:   #ffffff;

  /* Brand */
  --green:     #2d6a4f;
  --green-dim: #245c43;
  --green-pale:#d8ede4;
  --green-glow:rgba(45, 106, 79, 0.08);
  --green-glow-strong: rgba(45, 106, 79, 0.14);

  /* Text */
  --txt:       #1a1f1c;
  --txt-muted: #4e5c55;
  --txt-dim:   #637870;

  /* Borders */
  --border:    rgba(26,31,28,0.08);
  --border-md: rgba(26,31,28,0.15);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.10);
  --glow-green: 0 0 0 transparent;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Layout */
  --container: 1180px;
  --gap:       96px;

  /* Motion */
  --ease: 220ms ease;
  --ease-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Font */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
em { font-style: normal; color: var(--green); font-weight: 600; }

/* ── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Utility ────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #2d6a4f 0%, #52a87a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.br-desktop { display: block; }
.nowrap { white-space: nowrap; }

/* ── Sections ───────────────────────────── */
.section { padding-block: var(--gap); }
.section--dark { background: var(--bg-2); }

/* ── Section header ─────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 60px;
}
.section-header--light .section-header__title,
.section-header--light .section-header__sub { color: var(--txt); }
.section-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,106,79,.10);
  border: 1px solid rgba(45,106,79,.20);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.section-header__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--txt);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-header__sub {
  font-size: 1.0625rem;
  color: var(--txt-muted);
  line-height: 1.7;
  text-wrap: balance;
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), transform var(--ease),
              box-shadow var(--ease), border-color var(--ease);
  border: 1.5px solid transparent;
}
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.btn--primary {
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--green-dim);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--glow { box-shadow: none; }
.btn--glow:hover { box-shadow: none; }

.btn--ghost {
  background: rgba(26,31,28,.05);
  color: var(--txt);
  border-color: var(--border-md);
}
.btn--ghost:hover { background: rgba(26,31,28,.09); border-color: rgba(26,31,28,.22); }

.btn--outline {
  background: transparent;
  color: var(--txt);
  border-color: var(--border-md);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 241, 0.90);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  overflow-x: clip;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.header__logo img { width: 32px; height: 32px; border-radius: 7px; }
.header--scrolled { box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,.08); }

/* Nav */
.nav { display: flex; align-items: center; gap: 24px; min-width: 0; flex-shrink: 1; }
.nav__list { display: flex; align-items: center; gap: 2px; min-width: 0; flex-wrap: nowrap; }
.nav__link {
  color: var(--txt-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--txt); background: rgba(26,31,28,.06); }
.nav__cta { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--r-sm);
  color: var(--txt);
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 80px 100px;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
}

/* Aurora blobs — subtle warm tints */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.aurora-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,.10) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}
.aurora-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,210,195,.18) 0%, transparent 70%);
  top: 100px; right: -150px;
  animation: drift 15s ease-in-out infinite alternate-reverse;
}
.aurora-blob--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,106,79,.07) 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* Grid dots background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26,31,28,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--txt);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Proof pills */
.hero__proof { display: flex; flex-direction: column; gap: 10px; }
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--txt-muted);
  font-weight: 500;
}
.proof-pill__icon { color: var(--green); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-lg);
}
.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero__img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(247,245,241,.45) 100%);
}

/* Floating stat card — dark for contrast */
.hero__stat-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(15,35,25,.93);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}
.stat-card__number {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #e8f5ef;
  line-height: 1;
}
.stat-card__unit { font-size: 1rem; font-weight: 700; color: var(--green); margin-top: -4px; }
.stat-card__label { font-size: 0.75rem; color: #94a3b8; margin-top: 4px; }
.stat-card__bar {
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.stat-card__bar-fill {
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, var(--green), #52a87a);
  border-radius: 2px;
}

/* ════════════════════════════════════════════
   WHY / PAIN POINTS
════════════════════════════════════════════ */
.why-section { background: var(--bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.why-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-card--accent {
  border-color: rgba(45,106,79,.22);
  background: linear-gradient(135deg, rgba(45,106,79,.05) 0%, var(--bg-card) 60%);
}
.why-card--accent:hover { border-color: rgba(45,106,79,.35); }
.why-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(45,106,79,.10);
  border: 1px solid rgba(45,106,79,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.why-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.why-card__desc {
  font-size: 0.9375rem;
  color: var(--txt-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-section { overflow: hidden; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding-block: 8px;
}
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Result cards */
.result-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: inherit;
}
.result-card:hover {
  border-color: rgba(45,106,79,.28);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.result-card__img-wrap {
  height: 180px;
  overflow: hidden;
  background: var(--bg-3);
}
.result-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.result-card:hover .result-card__img-wrap img { transform: scale(1.06); }
.result-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.result-card__org {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.result-card__amount {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.result-card__project {
  font-size: 0.875rem;
  color: var(--txt-muted);
}

/* ════════════════════════════════════════════
   ROADMAP (HOW IT WORKS)
════════════════════════════════════════════ */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  position: relative;
  margin-top: 16px;
}

/* SVG S-curve connecting the nodes */
.roadmap__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.roadmap__road {
  fill: none;
  stroke: rgba(45,106,79,.16);
  stroke-width: 14;
  stroke-linecap: round;
}
.roadmap__dashes {
  fill: none;
  stroke: rgba(45,106,79,.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 16 10;
}

.roadmap__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

/* Middle step drops down to follow the S-curve */
.roadmap__step--mid { margin-top: 72px; }

.roadmap__node {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px rgba(45,106,79,.12);
}

.roadmap__step--accent .roadmap__node {
  box-shadow: 0 0 0 8px rgba(45,106,79,.22), 0 4px 20px rgba(45,106,79,.25);
}

.roadmap__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(45,106,79,.10);
  border: 1px solid rgba(45,106,79,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 18px;
}

.roadmap__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.roadmap__desc {
  font-size: 0.9375rem;
  color: var(--txt-muted);
  line-height: 1.75;
}

.roadmap__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: rgba(45,106,79,.10);
  border: 1px solid rgba(45,106,79,.16);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  overflow: hidden;
}
.pricing-card:hover { border-color: var(--border-md); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: rgba(45,106,79,.28);
  background: linear-gradient(160deg, rgba(45,106,79,.06) 0%, var(--bg-card) 50%);
}
.pricing-card--featured:hover { border-color: var(--green); box-shadow: 0 8px 40px rgba(45,106,79,.12); }
.pricing-card__glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(45,106,79,.10) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-dim);
  background: rgba(26,31,28,.06);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}
.pricing-card__tag--featured { color: var(--green); background: rgba(45,106,79,.10); }
.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.02em;
}
.pricing-card__fee {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}
.pricing-card__fee-label { font-size: 0.875rem; color: var(--txt-muted); }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; }
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--txt-muted);
}
.check-icon { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9375rem;
  color: var(--txt-muted);
}
.pricing-note strong { color: var(--txt); font-weight: 600; }

/* ════════════════════════════════════════════
   BOOKING
════════════════════════════════════════════ */
.section--booking {
  background: linear-gradient(160deg, #0f2a1e 0%, #091a13 60%, #071510 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Booking section — override for dark background */
.section--booking .section-header__label {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.section--booking .section-header__title {
  color: #f0f5f2;
}
.section--booking .section-header__sub {
  color: rgba(255,255,255,.72);
}
/* ── Booking grid: Calendly + form side by side ───────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.calendly-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,.25);
  border: 1px solid rgba(45,106,79,.22);
  display: flex;
  min-height: 640px;
}
.calendly-inline-widget { flex: 1; width: 100%; max-width: 100%; }

/* ── Contact form (right column on desktop) ───────── */
.contact-alt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-alt__title {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.contact-form__field:has(textarea) { flex: 1; }
.contact-form__field:has(textarea) textarea { flex: 1; min-height: 100px; }

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .calendly-wrap { min-height: 600px; }
  .contact-form__field:has(textarea) { flex: initial; }
  .contact-form__field:has(textarea) textarea { flex: initial; min-height: 120px; }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.01em;
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: #fff;
  font-family: inherit;
  transition: border-color var(--ease), background var(--ease);
  resize: vertical;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(255,255,255,.30); }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(45,106,79,.60);
  background: rgba(255,255,255,.08);
}
.contact-form__field input.error,
.contact-form__field textarea.error { border-color: rgba(220,60,60,.60); }

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form__submit { gap: 8px; }

.contact-form__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.40);
  margin: 0;
}

.contact-form__status {
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 24px;
}
.contact-form__status.success { color: #52a87a; }
.contact-form__status.error   { color: #f87171; }

@media (max-width: 600px) {
  .contact-form { padding: 28px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   ABOUT / TEAM
════════════════════════════════════════════ */

/* About story — centered text block above team grid */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 68ch;
  margin: 0 auto 48px;
  text-align: center;
}
.about-story p { font-size: 1.0625rem; color: var(--txt-muted); line-height: 1.8; }


.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.team-card:hover { border-color: var(--border-md); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-3);
}
.team-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}
.team-card:hover .team-card__img-wrap img { transform: scale(1.03); }
.team-card__info {
  flex: 1;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive collapse */
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card__name { font-size: 1rem; font-weight: 700; color: var(--txt); letter-spacing: -0.01em; }
.team-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.team-card__desc { font-size: 0.875rem; color: var(--txt-muted); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  transition: color var(--ease);
}
.team-card__linkedin:hover { color: var(--green-dim); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-block: 52px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { color: var(--txt); }
.footer__tagline { font-size: 0.875rem; color: var(--txt-dim); }
.footer__contact { display: flex; flex-direction: column; gap: 3px; margin-top: 6px; }
.footer__contact a { font-size: 0.875rem; color: var(--green); transition: color var(--ease); }
.footer__contact a:hover { color: var(--green-dim); }
.footer__contact span { font-size: 0.8125rem; color: var(--txt-dim); }
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer__nav a { font-size: 0.875rem; color: var(--txt-muted); transition: color var(--ease); }
.footer__nav a:hover { color: var(--txt); }
.footer__legal { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer__legal ul { display: flex; gap: 16px; }
.footer__legal a { font-size: 0.8125rem; color: var(--txt-dim); transition: color var(--ease); }
.footer__legal a:hover { color: var(--txt-muted); }
.footer__copy { font-size: 0.8125rem; color: var(--txt-dim); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* ── Nav collapses at 1024px ── */
@media (max-width: 1024px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(247, 245, 241, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    padding: 32px 24px;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    min-width: unset;
    flex-shrink: unset;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 8px; align-items: center; width: 100%; flex-wrap: unset; min-width: unset; }
  .nav__link { font-size: 1.125rem; padding: 12px 24px; width: 100%; text-align: center; border-radius: var(--r-md); }
  .nav__cta { width: 100%; max-width: 280px; text-align: center; }
}

/* ── Tablet ≤900px ── */
@media (max-width: 900px) {
  /* Hero: single column */
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__stat-card { left: auto; right: -12px; bottom: -16px; }
  .hero { min-height: auto; padding-block: 72px 80px; }

  /* Roadmap: collapse to vertical stack */
  .roadmap { grid-template-columns: 1fr; gap: 0; }
  .roadmap__curve { display: none; }
  .roadmap__step--mid { margin-top: 0; }
  .roadmap__step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; padding: 0 0 40px; }
  .roadmap__step:not(:last-child)::after { content: ''; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: rgba(45,106,79,.25); }
  .roadmap__node { flex-shrink: 0; margin-bottom: 0; }
  .roadmap__body { flex: 1; }
  .roadmap__icon { margin: 0 0 14px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer__legal { align-items: center; }
  .footer__nav ul { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
  :root { --gap: 72px; }

  /* Hero */
  .hero__sub { max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__stat-card { position: static; margin-top: 20px; }

  /* Calendly */
  .calendly-wrap { border-radius: var(--r-lg); }

  .br-desktop { display: none; }
}

/* ── Small mobile ≤520px ── */
@media (max-width: 520px) {
  :root { --gap: 60px; }
  .team-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 36px; }
  .pricing-card { padding: 28px 24px; }
  .hero { padding-block: 60px; }
  .footer__legal ul { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── Very small ≤380px ── */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
  .hero__headline { font-size: 2.25rem; }
  .btn--lg { padding: 13px 20px; font-size: 0.9375rem; }
  .result-card { width: 260px; }
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger */
.why-grid    .why-card:nth-child(2)     { transition-delay: 80ms; }
.why-grid    .why-card:nth-child(3)     { transition-delay: 160ms; }
.pricing-grid .pricing-card:nth-child(2){ transition-delay: 80ms; }
.pricing-grid .pricing-card:nth-child(3){ transition-delay: 160ms; }
.team-grid   .team-card:nth-child(2)    { transition-delay: 80ms; }
.team-grid   .team-card:nth-child(3)    { transition-delay: 160ms; }
.team-grid   .team-card:nth-child(4)    { transition-delay: 240ms; }
.roadmap     .roadmap__step:nth-child(2) { transition-delay: 100ms; }
.roadmap     .roadmap__step:nth-child(3) { transition-delay: 200ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .aurora-blob { animation: none; }
}

/* ════════════════════════════════════════════
   LEGAL PAGES (privatlivspolitik / handelsbetingelser)
════════════════════════════════════════════ */
.legal-hero {
  padding-block: 72px 56px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.legal-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--txt);
  margin-bottom: 10px;
  line-height: 1.1;
}
.legal-hero__meta {
  font-size: 0.875rem;
  color: var(--txt-dim);
}

.legal-body { padding-block: 72px 96px; }

.legal-content {
  max-width: 720px;
  margin-inline: auto;
}
.legal-content h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--txt);
  margin-top: 40px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.7;
  padding-left: 4px;
}
.legal-content strong { color: var(--txt); font-weight: 600; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--green-dim); }
.legal-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 40px;
}
.legal-company-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.legal-company-card p { margin-bottom: 0; }
.legal-pricing-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.legal-pricing-block p { margin-bottom: 4px; }
.legal-pricing-block p:last-child { margin-bottom: 0; }
.legal-pricing-block strong { color: var(--green); }

@media (max-width: 768px) {
  .legal-hero { padding-block: 52px 40px; }
  .legal-body { padding-block: 52px 72px; }
  .legal-content h2 { margin-top: 32px; }
}

/* ── Pricing Add-on ── */
.pricing-addon {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 20px;
  border: 1px dashed var(--border-md);
  border-radius: var(--r-md);
  flex-wrap: wrap;
}
.pricing-addon__icon {
  color: var(--green);
  flex-shrink: 0;
  opacity: .7;
}
.pricing-addon__content {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pricing-addon__content strong {
  font-size: .875rem;
  font-weight: 600;
  color: var(--txt);
}
.pricing-addon__content span {
  font-size: .8125rem;
  color: var(--txt-dim);
  line-height: 1.5;
}
.pricing-addon__price {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--txt);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 9999;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  padding: 20px;
  display: none;
}
.cookie-banner.is-visible {
  display: block;
  animation: cookieIn .28s ease;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-banner__text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}
.cookie-banner__text p {
  font-size: .8rem;
  color: var(--txt-muted);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--green); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
}
.cookie-banner__actions .btn { flex: 1; text-align: center; justify-content: center; }
.btn--sm { padding: 9px 16px; font-size: .8125rem; }

@media (max-width: 480px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; width: auto; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  cursor: pointer;
  list-style: none;
  transition: color var(--ease);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { color: var(--green); }
.faq-item__question::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2316c77a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--ease);
}
.faq-item[open] > .faq-item__question::after {
  transform: rotate(180deg);
}
.faq-item__answer {
  padding: 0 0 22px;
}
.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--txt-muted);
  line-height: 1.75;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  position: relative;
}
.testimonial-card--accent {
  background: var(--green);
  border-color: var(--green);
}
.testimonial-card--accent .testimonial-card__quote p { color: #fff; }
.testimonial-card--accent .testimonial-card__name   { color: rgba(255,255,255,.9); }
.testimonial-card--accent .testimonial-card__org    { color: rgba(255,255,255,.7); }
.testimonial-card--accent .testimonial-card__amount { color: rgba(255,255,255,.9); font-weight: 700; }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: .18;
  font-family: Georgia, serif;
}
.testimonial-card--accent::before { color: #fff; opacity: .3; }
.testimonial-card__quote p {
  font-size: 0.9375rem;
  color: var(--txt-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.testimonial-card--accent .testimonial-card__author { border-top-color: rgba(255,255,255,.25); }
.testimonial-card__name   { font-size: 0.875rem; font-weight: 600; color: var(--txt); }
.testimonial-card__org    { font-size: 0.8125rem; color: var(--txt-muted); }
.testimonial-card__amount {
  font-size: 0.8125rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}

/* ── Footer social ───────────────────────────────────────────────────────── */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--txt-muted);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.footer__social-link:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(22,199,122,.08);
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   MOBILE POLISH v2 — targeted phone fixes
════════════════════════════════════════════ */

/* Slower marquee on mid-mobile so cards are readable */
@media (max-width: 768px) {
  .marquee__track { animation-duration: 48s; }
  .calendly-wrap  { min-height: 520px; }
  /* Hero stat card becomes a full-width horizontal strip */
  .hero__stat-card {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 4px;
  }
  .hero__stat-card .stat-card__bar { width: 100%; margin-top: 0; }
  .stat-card__unit  { margin-top: 0; }
  .stat-card__label { margin-top: 0; }
}

/* Hero pills: wrap as a row on small phones to free vertical space */
@media (max-width: 520px) {
  .hero__proof { flex-direction: row; flex-wrap: wrap; gap: 8px 10px; }
  .proof-pill { font-size: 0.8125rem; }
  .proof-pill__icon { width: 12px; height: 12px; }
  /* Reduce marquee edge mask so cards aren't half-faded on narrow viewports */
  .marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
}

/* Featured pricing glow bleeds between stacked cards — drop it on phones */
@media (max-width: 640px) {
  .pricing-card__glow { display: none; }
}

/* Tighter vertical rhythm on very small phones */
@media (max-width: 380px) {
  :root { --gap: 48px; }
  .section-header { margin-bottom: 28px; }
  .footer__nav ul { gap: 8px 16px; }
}

/* Touch devices get the calmest marquee speed regardless of viewport */
@media (hover: none) and (pointer: coarse) {
  .marquee__track { animation-duration: 60s; }
}
