/* CAMILA-STYLE — bold, warm, clear. Inspired by camilaraedemo.sugarstudiosdesign.com
   Big headlines, dusty pink/cream, generous spacing, very obvious CTAs. */

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

:root {
  /* Luxury teal palette — clean white with deep teal accent */
  --cream:    #ffffff;
  --blush:    #f3eee6;     /* warm sand panels */
  --rose:     #c9a87a;     /* champagne gold */
  --terra:    #0e3b3a;     /* deep dark teal — main accent */
  --terra-dk: #082625;
  --teal-mid: #1d5e5c;
  --wine:     #7d3744;     /* burgundy accent — visible on cream */
  --ink:      #0a1a1a;
  --ink-soft: #5a6463;
  --line:     #e6e0d4;

  /* Manrope only — rundad modern sans, mjuk men professionell. Single family. */
  --heading: "Manrope", system-ui, sans-serif;
  --sans:    "Manrope", system-ui, sans-serif;
  --serif:   "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --script:  "Manrope", system-ui, sans-serif;

  /* Soft corner radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}

/* Manrope hierarki: 800 rubriker, tight spacing, mjuk italic på em */
h1, h2, h3, h4 {
  font-family: var(--heading) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: -0.025em !important;
  line-height: 1.08 !important;
}
h1 em, h2 em, h3 em, h4 em {
  font-family: var(--heading) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--wine) !important;
}
/* On dark sections, em pops as champagne gold */
.cguide em, .cobelief em, .cnews em, .cconseq em, .cmod-final em, .ckurs-after em,
.ckurs-signup em, .cstrip em, .cfinal em, .cbook-after em, .cmod-final h2 em,
.cobelief h2 em, .cguide-text h2 em, .cnews h2 em, .cconseq h2 em,
.ckurs-after h2 em, .ckurs-signup h2 em, .cmod-final h2 em, .chero em, .clp-hero em,
.cpause em, .cbook-after h2 em {
  color: var(--rose) !important;
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink); }
li { font-family: var(--sans); }

/* Body inline emphasis — italic Plus Jakarta Sans, wine color (light bg) */
p em, li em, span em, .cph-lede em, .cmod-lede em, .cwho-list em, .clp-lede em {
  font-family: var(--sans) !important;
  font-style: italic !important;
  font-weight: 600 !important;
  color: var(--wine) !important;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--terra); color: var(--cream); }

/* shared minimal eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ============ NAV ============ */
.cnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.cnav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 22px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.cnav-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em;
  color: var(--terra);
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
}
.cnav-brand .dot { color: var(--rose); margin: 0 4px; font-weight: 400; }
.cnav-brand .sub {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; letter-spacing: 0.01em;
  color: var(--ink-soft);
  text-transform: none; margin-top: 6px;
  font-weight: 400;
}
.cnav-links {
  display: flex; gap: 32px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
}
.cnav-links a:hover, .cnav-links a.active { color: var(--terra); }
.cnav-cta {
  justify-self: end;
  background: var(--terra); color: var(--cream);
  padding: 14px 26px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.cnav-cta:hover { background: var(--terra-dk); }

/* ============ HERO — image-driven, dark overlay ============ */
.chero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--terra-dk);
}
.chero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.85);
  z-index: 0;
}
.chero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,38,37,0.20) 0%, rgba(8,38,37,0.10) 35%, rgba(8,38,37,0.85) 100%),
    linear-gradient(90deg, rgba(8,38,37,0.55) 0%, rgba(8,38,37,0.05) 55%);
}
.chero-content {
  position: relative; z-index: 2;
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  padding: 0 40px 96px;
  color: var(--cream);
}
.chero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 28px;
}
.chero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--cream);
  max-width: 12ch;
}
.chero h1 em {
  font-style: italic;
  color: var(--rose);
  font-family: var(--serif);
  font-weight: 500;
}
.chero-sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(250,245,238,0.85);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}
.chero-actions {
  display: flex; gap: 28px; align-items: center;
  flex-wrap: wrap;
}
.chero-link {
  color: var(--cream);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(250,245,238,0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}
.chero-link:hover { border-color: var(--rose); }

.btn-fill {
  background: var(--terra); color: var(--cream);
  padding: 18px 36px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-fill:hover { background: var(--terra-dk); }
.btn-fill.terra { background: var(--terra); }
.btn-fill.terra:hover { background: var(--terra-dk); }
.btn-fill.cream { background: var(--cream); color: var(--terra); }
.btn-fill.cream:hover { background: var(--rose); color: var(--terra-dk); }
.btn-fill.gold { background: var(--rose); color: var(--terra); }
.btn-fill.gold:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  border: 1.5px solid var(--terra); color: var(--terra);
  padding: 17px 32px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--terra); color: var(--cream); }

/* ============ "AS SEEN IN" / TRUST STRIP ============ */
.cstrip {
  background: var(--terra);
  color: var(--cream);
  padding: 36px 40px;
  text-align: center;
}
.cstrip-label {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 16px;
}
.cstrip-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.28em;
  color: var(--cream); opacity: 0.94;
  text-transform: uppercase;
  font-weight: 500;
}
.cstrip-row .dot { color: var(--rose); opacity: 0.7; }

/* ============ "WHO IS THIS FOR" — split with image ============ */
.cwho {
  max-width: 1240px; margin: 0 auto;
  padding: 130px 40px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.cwho-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cwho-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88); }
.cwho-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cwho-text h2 em { font-style: italic; color: var(--terra); }
.cwho-text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 480px;
}
.cwho-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.cwho-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.4;
  color: var(--ink);
}

/* ============ CONSEQUENCE — stakes section ============ */
.cconseq {
  background: var(--terra-dk);
  color: var(--cream);
  padding: 130px 40px;
  position: relative;
  overflow: hidden;
}
.cconseq::before {
  content: ""; position: absolute; inset: 0;
  background: url('img/consequence-new.jpg') center / cover;
  opacity: 0.18; z-index: 0;
  filter: saturate(0.6);
}
.cconseq-inner {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto;
  text-align: center;
}
.cconseq .eyebrow {
  color: var(--rose);
  margin-bottom: 28px;
}
.cconseq h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 28px;
}
.cconseq h2 em { font-style: italic; color: var(--rose); }
.cconseq p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: rgba(250,245,238,0.8);
  max-width: 560px; margin: 0 auto;
}

/* ============ HOW WE WORK — service cards ============ */
.cwork {
  background: var(--cream);
  padding: 100px 40px 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cwork-inner { max-width: 1280px; margin: 0 auto; }
.cwork-head { text-align: center; margin-bottom: 56px; }
.cwork-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cwork-head h2 em { font-style: italic; color: var(--terra); }
.cwork-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cwork-card {
  display: flex; flex-direction: column;
}
.cwork-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 24px;
}
.cwork-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.cwork-card:hover .cwork-card-img img { transform: scale(1.04); }
.cwork-card-body { padding: 0; }
.cwork-card-num {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--ink-soft); margin-bottom: 12px;
  font-weight: 500;
}
.cwork-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cwork-card h3 em { font-style: italic; color: var(--terra); }
.cwork-card p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink); margin-bottom: 24px;
}
.cwork-card-link {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 4px;
  display: inline-block;
}

/* ============ IMAGE PULL-QUOTE — full bleed ============ */
.cpull {
  position: relative;
  height: clamp(520px, 70vh, 760px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cpull-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  z-index: 0;
}
.cpull-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.45) 0%, rgba(8,38,37,0.62) 100%);
  z-index: 1;
}
.cpull-quote {
  position: relative; z-index: 2;
  max-width: 980px;
  padding: 0 48px;
  text-align: center;
  color: var(--cream);
  margin: 0;
}
.cpull-mark {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.9;
  display: inline-block;
  margin-bottom: 8px;
}
.cpull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--cream);
}
.cpull-quote p em { color: var(--rose); font-style: italic; }
.cpull-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

/* ============ MEET TORUN ============ */
.cmeet {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: center;
}
.cmeet-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cmeet-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.cmeet-img-frame {
  position: absolute; inset: -20px 20px 20px -20px;
  border: 1.5px solid var(--rose);
  z-index: -1;
}
.cmeet-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.cmeet-text h2 em { font-style: italic; color: var(--terra); }
.cmeet-text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink); margin-bottom: 18px;
  max-width: 520px;
  font-weight: 400;
}
.cmeet-text .more { margin-top: 24px; }

/* ============ TESTIMONIALS — two large editorial quotes ============ */
.cquotes {
  padding: 110px 40px 120px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.cquotes-inner { max-width: 1240px; margin: 0 auto; }
.cquotes-head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 760px;
}
.cquotes-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  margin-top: 8px;
  letter-spacing: -0.015em;
}
.cquotes-head h2 em { font-style: italic; color: var(--terra); }
.cquotes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
.cquote {
  margin: 0;
  border-top: 1px solid var(--terra);
  padding-top: 28px;
}
.cquote blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.cquote blockquote em { font-style: italic; color: var(--terra); }
.cquote p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 44ch;
}
.cquote figcaption {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}

/* ============ FREE GUIDE ============ */
.cguide {
  background: var(--terra);
  color: var(--cream);
  padding: 110px 40px;
}
.cguide-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1fr;
  gap: 80px; align-items: center;
}
.cguide-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cguide-img img { width: 100%; height: 100%; object-fit: cover; }
.cguide-text .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.cguide-text h2 { color: var(--cream); }
.cguide-text h2 em { color: var(--rose); }
.cguide-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  margin-bottom: 28px;
}
.cguide-text h2 em { font-style: italic; color: var(--terra); }
.cguide-text p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 480px; margin-bottom: 32px;
}
.cguide-form { display: flex; max-width: 480px; }
.cguide-form input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--cream);
  border-right: none;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  font-family: var(--sans);
}
.cguide-form button {
  background: var(--rose); color: var(--terra);
  border: none;
  padding: 16px 28px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cguide-form button:hover { background: var(--cream); }

/* ============ INSIGHT TO ACTION — bridge after guide ============ */
.cinsight {
  padding: 110px 40px 120px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.cinsight-inner {
  max-width: 1080px; margin: 0 auto;
  text-align: center;
}
.cinsight .eyebrow { margin-bottom: 24px; color: var(--ink-soft); }
.cinsight h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--ink);
}
.cinsight h2 em { font-style: italic; color: var(--terra); }
.cinsight-lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink); margin-bottom: 56px;
}
.cinsight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.cinsight-grid > div {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; min-height: 140px;
  letter-spacing: -0.01em;
}
.cinsight-grid > div:last-child { border-right: none; }
.cinsight-grid em { font-style: italic; color: var(--terra); font-weight: 500; }

/* Guide bullets */
.cguide-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cguide-bullets li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(250,245,238,0.94);
  position: relative;
  padding-left: 22px;
}
.cguide-bullets li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--rose);
  font-style: normal;
}

/* ============ FINAL CTA ============ */
.cfinal {
  position: relative;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--terra-dk);
}
.cfinal-bg {
  position: absolute; inset: 0;
  background: url('img/final-new.jpg') center 30% / cover;
  opacity: 0.5;
  filter: saturate(0.85);
  z-index: 0;
}
.cfinal::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.35) 0%, rgba(8,38,37,0.55) 100%);
  z-index: 0;
}
.cfinal-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.cfinal .eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 24px; display: inline-block;
}
.cfinal h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 32px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.cfinal h2 em { font-style: italic; color: var(--rose); }
.cfinal p {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: rgba(250,245,238,0.88);
  max-width: 540px; margin: 0 auto 48px;
}
.cfinal .btn-fill {
  background: var(--cream); color: var(--terra);
}
.cfinal .btn-fill:hover { background: var(--rose); color: var(--terra-dk); }

/* ============ FOOTER ============ */
.cfoot {
  background: var(--terra-dk);
  color: var(--cream);
  padding: 80px 40px 32px;
}
.cfoot-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.cfoot-brand {
  font-family: var(--sans); font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--cream);
}
.cfoot-brand .dot { color: var(--rose); margin: 0 4px; font-weight: 400; }
.cfoot-brand .sub {
  display: block; font-family: var(--sans); font-size: 9px;
  letter-spacing: 0.4em; color: var(--rose);
  text-transform: uppercase; margin-top: 6px; font-weight: 500;
}
.cfoot-brand p {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(250,245,238,0.6);
  margin-top: 16px; max-width: 320px;
}
.cfoot h4 {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 18px; font-weight: 500;
}
.cfoot ul { list-style: none; }
.cfoot li { margin-bottom: 10px; }
.cfoot a {
  color: rgba(250,245,238,0.78);
  font-size: 14px;
  transition: color 0.2s;
}
.cfoot a:hover { color: var(--cream); }
.cfoot-bottom {
  border-top: 1px solid rgba(250,245,238,0.14);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250,245,238,0.5);
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .chero { min-height: 78vh; }
  .chero-content { padding: 0 24px 64px; }
  .cmeet, .cguide-inner, .cwho { grid-template-columns: 1fr; gap: 40px; }
  .cwho { padding: 70px 24px; }
  .cwork-grid { grid-template-columns: 1fr; gap: 40px; }
  .cquotes-grid { grid-template-columns: 1fr; gap: 40px; }
  .cfoot-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cnav-links { display: none; }
  .cnav-inner { grid-template-columns: 1fr auto; }
  .cstrip-row { gap: 24px; font-size: 16px; }
  .cmeet-img-frame { display: none; }
  .cpull { height: 60vh; }
  .cconseq { padding: 80px 24px; }
  .cinsight-grid { grid-template-columns: 1fr; }
  .cinsight-grid > div { border-right: none; min-height: auto; padding: 24px 8px; }
}

/* ============ SUBPAGE — shared page header ============ */
.cph {
  background: var(--cream);
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--line);
}
.cph-inner { max-width: 1080px; margin: 0 auto; }
.cph-crumbs {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 36px;
}
.cph-crumbs a { color: var(--terra); border-bottom: 1px solid var(--terra); }
.cph-crumbs span { margin: 0 12px; color: var(--rose); }
.cph-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}
.cph-title em { font-style: italic; color: var(--terra); }
.cph-lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 60ch;
}

/* ============ OM TORUN — meet portrait ============ */
.comeet {
  max-width: 1240px; margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}
.comeet-img { aspect-ratio: 4 / 5; overflow: hidden; }
.comeet-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.comeet-text h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
.comeet-text h2 em { font-style: italic; color: var(--terra); }
.comeet-pull {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 44ch;
}

/* ============ STORY — body with drop cap ============ */
.costory {
  background: var(--blush);
  padding: 110px 40px 130px;
}
.costory-inner {
  max-width: 720px; margin: 0 auto;
  font-family: var(--serif);
  font-size: 21px; line-height: 1.7;
  color: var(--ink);
}
.costory-inner p { margin-bottom: 28px; }
.costory-dropcap .dc {
  float: left;
  font-size: 96px;
  line-height: 0.85;
  font-style: italic;
  color: var(--terra);
  margin: 8px 14px 0 0;
  font-weight: 500;
}
.costory-mantra {
  text-align: center;
  margin-top: 56px;
  font-size: 26px;
  line-height: 1.3;
}
.costory-mantra em { font-style: italic; color: var(--terra); }

/* ============ META — three-column facts ============ */
.cometa {
  background: var(--cream);
  padding: 90px 40px 110px;
}
.cometa-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.cometa-item {
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cometa-item:last-child { border-right: none; }
.cometa-item .k {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 14px;
}
.cometa-item .v {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.3;
  color: var(--ink);
}

/* ============ BELIEF — dark teal section ============ */
.cobelief {
  background: var(--terra);
  color: var(--cream);
  padding: 130px 40px;
}
.cobelief-inner {
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.cobelief .eyebrow { color: var(--rose); margin-bottom: 24px; }
.cobelief h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 32px;
}
.cobelief h2 em { font-style: italic; color: var(--rose); }
.cobelief-lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(250,245,238,0.95);
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.cobelief-body {
  font-family: var(--sans);
  font-size: 17px; line-height: 1.7;
  color: rgba(250,245,238,0.78);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ============ QUIZ — interactive shell ============ */
.cquiz {
  background: var(--cream);
  padding: 60px 40px 130px;
}
.cquiz-inner { max-width: 760px; margin: 0 auto; }
.cquiz-progress {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 56px;
}
.cquiz-progress .lbl, .cquiz-progress .num {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  white-space: nowrap;
}
.cquiz-progress .num { color: var(--terra); }
.cquiz-progress .bar {
  flex: 1; height: 2px;
  background: var(--line);
  position: relative;
}
.cquiz-progress .fill {
  position: absolute; inset: 0;
  background: var(--terra);
  width: 0; transition: width 0.5s cubic-bezier(.2,.7,.2,1);
}
.cquiz-card { padding: 0; }
.cquiz-card .eyebrow { margin-bottom: 18px; color: var(--ink-soft); }
.cquiz-card h2,
.cquiz-q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.cquiz-card h2 em { font-style: italic; color: var(--terra); }
.cquiz-card p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 56ch;
}
.cquiz-opts {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; gap: 12px;
}
.cquiz-opt {
  width: 100%;
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: left;
  font-family: var(--sans);
  font-size: 16px; line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.cquiz-opt:hover { border-color: var(--terra); }
.cquiz-opt.is-selected {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}
.cquiz-opt .key {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--rose);
  font-weight: 500;
  flex-shrink: 0;
  width: 24px;
}
.cquiz-opt.is-selected .key { color: var(--rose); }
.cquiz-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cquiz-actions .meta {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.btn-text {
  background: none; border: none;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 14px 0;
}
.btn-text:hover { color: var(--terra); }

/* Quiz result */
.cquiz-result .badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose); font-weight: 600;
  margin-bottom: 24px;
}
.cquiz-result h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}
.cquiz-result h2 em { font-style: italic; color: var(--terra); }
.cquiz-result p {
  font-family: var(--serif); font-style: italic;
  font-size: 21px; line-height: 1.55;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 60ch;
}
.cquiz-traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 48px;
}
.cquiz-traits .trait {
  padding: 24px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cquiz-traits .trait:last-child { border-right: none; }
.cquiz-traits .k {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 10px;
}
.cquiz-traits .v {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--terra);
}
.cquiz-result-actions {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cquiz-note {
  font-family: var(--sans);
  font-size: 13px; line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: normal;
  max-width: 56ch;
}

/* ============ RESSURSER — articles ============ */
.carts {
  background: var(--cream);
  padding: 80px 40px 130px;
}
.carts-inner { max-width: 1280px; margin: 0 auto; }
.carts-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.carts-filter {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
}
.carts-filter .active { color: var(--terra); border-bottom: 1px solid var(--terra); }
.carts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.cart {
  display: block;
  color: inherit;
}
.cart.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.cart-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 22px;
}
.cart.featured .cart-img { aspect-ratio: 16 / 11; margin-bottom: 0; }
.cart-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.cart:hover .cart-img img { transform: scale(1.04); }
.cart-meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 14px;
}
.cart-cat { color: var(--terra); }
.cart h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.cart.featured h3 { font-size: 44px; }
.cart p {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.cart.featured p { font-size: 20px; }
.cart-read {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); font-weight: 600;
  border-bottom: 1px solid var(--terra);
  display: inline-block;
  padding-bottom: 4px;
}

/* Newsletter */
.cnews {
  background: var(--terra);
  color: var(--cream);
  padding: 110px 40px;
  text-align: center;
}
.cnews-inner { max-width: 640px; margin: 0 auto; }
.cnews .eyebrow { color: var(--rose); margin-bottom: 18px; }
.cnews h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.cnews h2 em { font-style: italic; color: var(--rose); }
.cnews p {
  font-family: var(--serif); font-style: italic;
  font-size: 19px;
  color: rgba(250,245,238,0.88);
  margin-bottom: 36px;
}
.cnews-form {
  display: flex; max-width: 480px; margin: 0 auto;
}
.cnews-form input {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--cream);
  border-right: none;
  padding: 16px 20px;
  font-size: 15px; color: var(--ink);
  outline: none;
  font-family: var(--sans);
}
.cnews-form button {
  background: var(--rose); color: var(--terra);
  border: none;
  padding: 16px 28px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.cnews-form button:hover { background: var(--cream); }

/* ============ BOOK — Calendly grid ============ */
.cbook {
  background: var(--blush);
  padding: 80px 40px 110px;
}
.cbook-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.cbook-side .eyebrow { margin-bottom: 18px; color: var(--ink-soft); }
.cbook-side h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--ink);
}
.cbook-side h2 em { font-style: italic; color: var(--terra); }
.cbook-side p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 44ch;
}
.cbook-points {
  list-style: none; padding: 0;
  margin: 36px 0;
}
.cbook-points li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.cbook-points .ix {
  font-family: var(--sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--rose); font-weight: 600;
  flex-shrink: 0;
  padding-top: 6px;
}
.cbook-aside-note {
  margin-top: 36px; padding: 24px 0;
  border-top: 1px solid var(--line);
}
.cbook-aside-note .eyebrow { display: block; margin-bottom: 12px; color: var(--ink-soft); }
.cbook-aside-note p {
  font-family: var(--sans); font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
.cbook-aside-note a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
}
.cbook-embed {
  background: var(--cream);
  padding: 24px;
  border: 1px solid var(--line);
}
.cbook-embed-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cbook-embed-head .eyebrow { margin: 0; color: var(--terra); }
.cbook-secure {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.cbook-embed iframe {
  width: 100%; height: 720px;
  border: none;
}
.cbook-fallback {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.cbook-fallback a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
}

/* After section */
.cbook-after {
  background: var(--terra);
  color: var(--cream);
  padding: 110px 40px;
}
.cbook-after-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cbook-after .eyebrow { color: var(--rose); margin-bottom: 18px; }
.cbook-after h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0;
}
.cbook-after h2 em { font-style: italic; color: var(--rose); }
.cbook-after p {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: rgba(250,245,238,0.88);
  margin: 0;
  max-width: 44ch;
}

/* Subpage responsive */
@media (max-width: 900px) {
  .comeet { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .costory { padding: 70px 24px; }
  .costory-dropcap .dc { font-size: 72px; }
  .cometa-inner { grid-template-columns: 1fr; }
  .cometa-item { border-right: none; }
  .cobelief { padding: 80px 24px; }
  .cquiz { padding: 40px 20px 80px; }
  .cquiz-progress { flex-wrap: wrap; gap: 12px; }
  .cquiz-progress .bar { flex-basis: 100%; order: 3; }
  .cquiz-traits { grid-template-columns: 1fr; }
  .cquiz-traits .trait { border-right: none; }
  .carts { padding: 60px 20px 90px; }
  .carts-head { grid-template-columns: 1fr; gap: 24px; }
  .carts-grid { grid-template-columns: 1fr; gap: 40px; }
  .cart.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .cnews { padding: 80px 24px; }
  .cnews-form { flex-direction: column; gap: 12px; }
  .cnews-form input { border-right: 1px solid var(--cream); }
  .cbook { padding: 60px 20px 90px; }
  .cbook-inner { grid-template-columns: 1fr; gap: 48px; }
  .cbook-embed iframe { height: 600px; }
  .cbook-after { padding: 80px 24px; }
  .cbook-after-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ KURS — landing + signup ============ */
.ckurs-signup {
  background: var(--terra);
  color: var(--cream);
  padding: 100px 40px;
}
.ckurs-signup-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.ckurs-signup .eyebrow { margin-bottom: 22px; }
.ckurs-signup h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.ckurs-signup h2 em { font-style: italic; color: var(--rose); }
.ckurs-signup .cguide-form { max-width: 520px; margin: 0 auto; }
.ckurs-fineprint {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(250,245,238,0.7);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Modul list on landing */
.ckurs-mods { background: var(--cream); padding: 110px 40px 130px; }
.ckurs-mods-inner { max-width: 940px; margin: 0 auto; }
.ckurs-mods-head { text-align: center; margin-bottom: 56px; }
.ckurs-mods-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.ckurs-mods-head h2 em { font-style: italic; color: var(--terra); }
.ckurs-mods-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.ckurs-mod {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.2s, padding 0.2s;
}
.ckurs-mod:hover { background: var(--blush); padding-left: 24px; padding-right: 24px; }
.ckurs-mod .n {
  font-family: var(--serif); font-style: italic;
  font-size: 36px;
  color: var(--rose);
  font-weight: 500;
  width: 56px;
}
.ckurs-mod h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.ckurs-mod p { font-style: italic; font-size: 16px; color: var(--ink-soft); margin: 0; }
.ckurs-mod .arrow { font-size: 22px; color: var(--terra); }

.ckurs-why { background: var(--blush); padding: 110px 40px; }
.ckurs-why-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ckurs-why h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  margin-top: 18px;
}
.ckurs-why h2 em { font-style: italic; color: var(--terra); }
.ckurs-why p { margin-bottom: 22px; line-height: 1.75; max-width: 60ch; margin-left: auto; margin-right: auto; }

.ckurs-after { background: var(--terra); color: var(--cream); padding: 110px 40px; }
.ckurs-after-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ckurs-after .eyebrow { color: rgba(250,245,238,0.7); }
.ckurs-after h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  color: var(--cream);
  margin: 18px 0 24px;
  letter-spacing: -0.015em;
}
.ckurs-after h2 em { font-style: italic; color: var(--rose); }
.ckurs-after p {
  font-family: var(--serif); font-style: italic;
  font-size: 21px; line-height: 1.55;
  color: rgba(250,245,238,0.88);
  margin-bottom: 36px;
}

/* ============ MODUL pages ============ */
.cmod {
  background: var(--cream);
}
.cmod-progress {
  background: var(--blush);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 70px; z-index: 30;
}
.cmod-progress-inner {
  max-width: 760px; margin: 0 auto;
  padding: 14px 40px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.cmod-progress .bar { flex: 1; height: 2px; background: var(--line); position: relative; }
.cmod-progress .fill { position: absolute; inset: 0; background: var(--terra); width: 0; }
.cmod-progress a { color: var(--terra); }

.cmod-head { padding: 80px 40px 40px; }
.cmod-head-inner { max-width: 760px; margin: 0 auto; }
.cmod-head h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 14px 0 28px;
  color: var(--ink);
}
.cmod-head h1 em { font-style: italic; color: var(--terra); }
.cmod-lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 56ch;
}

.cmod-body { padding: 40px 40px 40px; }
.cmod-body-inner {
  max-width: 720px; margin: 0 auto;
  font-family: var(--serif);
  font-size: 21px; line-height: 1.7;
  color: var(--ink);
}
.cmod-body-inner p { margin-bottom: 22px; }

.cmod-prompts { background: var(--blush); padding: 70px 40px; }
.cmod-prompts-inner { max-width: 760px; margin: 0 auto; }
.cmod-prompts-inner ol {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.cmod-prompts-inner li {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cmod-prompts-inner .ix {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--rose); font-weight: 600;
  flex-shrink: 0;
  padding-top: 10px;
}

.cmod-closing { padding: 60px 40px; }
.cmod-closing-inner {
  max-width: 720px; margin: 0 auto;
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.6;
  color: var(--ink-soft);
  border-left: 2px solid var(--terra);
  padding-left: 24px;
}

.cmod-nav {
  background: var(--cream);
  padding: 40px 40px 80px;
  border-top: 1px solid var(--line);
}
.cmod-nav-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px;
}
.cmod-nav a {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  padding: 16px 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.2s;
}
.cmod-nav .next, .cmod-nav .next.final {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}
.cmod-nav a:hover { border-color: var(--terra); }
.cmod-nav .next:hover { background: var(--terra-dk); }

.cmod-final {
  background: var(--terra-dk);
  color: var(--cream);
  padding: 110px 40px;
  text-align: center;
}
.cmod-final-inner { max-width: 720px; margin: 0 auto; }
.cmod-final h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  color: var(--cream);
  margin: 18px 0 24px;
}

/* ============ AD LANDING PAGES ============ */
.clp-nav { background: rgba(255,255,255,0.94); }
.clp-nav .cnav-inner { grid-template-columns: 1fr; padding: 22px 40px; }

.clp-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--terra-dk);
  display: flex; align-items: center;
}
.clp-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.7);
  z-index: 0;
}
.clp-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,38,37,0.45) 0%, rgba(8,38,37,0.65) 60%, rgba(8,38,37,0.85) 100%);
}
.clp-hero-inner {
  position: relative; z-index: 2;
  max-width: 720px; width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
  color: var(--cream);
}
.clp-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-bottom: 28px;
}
.clp-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 28px;
}
.clp-hero h1 em { font-style: italic; color: var(--rose); }
.clp-lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: rgba(250,245,238,0.9);
  margin-bottom: 40px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.clp-form {
  display: flex; max-width: 520px; margin: 0 auto;
  background: var(--cream);
}
.clp-form input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.clp-form button {
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 18px 28px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.clp-form button:hover { background: var(--terra-dk); }
.clp-fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(250,245,238,0.7);
  letter-spacing: 0.02em;
}

.clp-pain {
  background: var(--blush);
  padding: 90px 40px;
}
.clp-pain-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.clp-pain-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.clp-promise { background: var(--cream); padding: 90px 40px; }
.clp-promise-inner { max-width: 720px; margin: 0 auto; }
.clp-promise h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  margin: 12px 0 36px;
  letter-spacing: -0.015em;
}
.clp-promise-list { list-style: none; border-top: 1px solid var(--line); }
.clp-promise-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px; line-height: 1.4;
  color: var(--ink);
}
.clp-promise-list .ix {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--rose); font-weight: 600;
  flex-shrink: 0;
  padding-top: 6px;
}

.clp-trust { background: var(--terra); color: var(--cream); padding: 90px 40px; }
.clp-trust-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.clp-trust-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 24px;
}
.clp-trust-by {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

.clp-final { background: var(--cream); padding: 80px 40px; text-align: center; }
.clp-final h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}

/* responsive */
@media (max-width: 700px) {
  .ckurs-mods-list { gap: 0; }
  .ckurs-mod { grid-template-columns: auto 1fr; gap: 16px; padding: 22px 8px; }
  .ckurs-mod .arrow { display: none; }
  .ckurs-mod .n { font-size: 28px; width: 40px; }
  .ckurs-mod h3 { font-size: 20px; }
  .cmod-head { padding: 60px 24px 30px; }
  .cmod-prompts { padding: 50px 24px; }
  .cmod-prompts-inner li { font-size: 19px; gap: 16px; }
  .cmod-nav-inner { flex-direction: column; }
  .cmod-nav a { text-align: center; }
  .clp-form { flex-direction: column; gap: 4px; }
  .clp-pain-quote { font-size: 24px; }
}

/* ============ MODUL — interactive (kurs.js injicerar) ============ */
.cmod-hero {
  position: relative;
  height: clamp(280px, 38vh, 420px);
  overflow: hidden;
  background: var(--terra-dk);
  margin-bottom: 0;
}
.cmod-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(0.7);
  animation: cmod-hero-zoom 22s ease-out forwards;
}
.cmod-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.2) 0%, rgba(8,38,37,0) 30%, rgba(255,255,255,0.05) 80%, var(--cream) 100%);
}
.cmod-hero-num {
  position: absolute;
  bottom: 32px; left: 40px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  color: var(--rose);
  line-height: 0.85;
  font-weight: 500;
  z-index: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: cmod-num-in 1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cmod-hero-zoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
@keyframes cmod-num-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Interactive write area */
.cmod-prompts-inner ol.interactive li {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.cmod-prompts-inner ol.interactive li > span:first-child {
  /* keep ix above question */
  display: inline;
}
.cmod-write {
  margin-top: 14px;
  position: relative;
}
.cmod-write textarea {
  width: 100%;
  min-height: 90px;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 15px; line-height: 1.6;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}
.cmod-write textarea:focus { border-color: var(--terra); }
.cmod-write textarea::placeholder { color: var(--ink-soft); font-style: italic; }
.cmod-write-saved {
  position: absolute;
  bottom: -22px; right: 0;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--terra); font-weight: 600;
  animation: saved-fade 0.3s ease-in;
}
@keyframes saved-fade {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mark complete section */
.cmod-complete {
  background: var(--blush);
  padding: 60px 40px;
  border-top: 1px solid var(--line);
}
.cmod-complete-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.cmod-complete-state {
  display: flex; align-items: center; gap: 14px;
}
.cmod-complete-state .dot {
  width: 14px; height: 14px;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  transition: all 0.3s;
}
.cmod-complete-state.is-done .dot {
  background: var(--terra);
  border-color: var(--terra);
}
.cmod-complete-state.is-done .dot::after {
  content: "✓"; color: var(--cream);
  display: block; text-align: center;
  font-size: 10px; line-height: 11px; font-weight: 700;
}
.cmod-complete-state .lbl {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.cmod-complete-state.is-done .lbl { color: var(--terra); }

/* Overview progress + done state */
.ckurs-progress-pill {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 18px;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
}
.ckurs-mod.is-done {
  background: linear-gradient(90deg, rgba(14,59,58,0.04) 0%, transparent 100%);
}
.ckurs-mod.is-done .n { color: var(--terra); }
.ckurs-mod.is-done .arrow {
  width: 24px; height: 24px;
  background: var(--terra);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* ============ Animated grain + gradient overlay for dark sections ============ */
.cconseq, .cguide, .cnews, .cobelief, .cbook-after, .cmod-final, .ckurs-after {
  position: relative;
}
.cconseq::after, .cguide::after, .cnews::after, .cobelief::after, .cbook-after::after, .cmod-final::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201,168,122,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201,168,122,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.cconseq > *, .cguide > *, .cnews > *, .cobelief > *, .cbook-after > *, .cmod-final > * {
  position: relative; z-index: 1;
}

/* Decorative animated quote-mark on closing sections */
.cmod-closing-inner::before {
  content: "❝";
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  color: var(--rose);
  line-height: 0.5;
  margin-bottom: 14px;
}

/* Reveal animation refined */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Auto-reveal for static HTML sections (no JS needed via observer fallback) */
@media (prefers-reduced-motion: no-preference) {
  .cmod-head-inner, .cmod-body-inner, .cmod-prompts-inner, .cmod-closing-inner,
  .ckurs-mods-head, .ckurs-why-inner, .ckurs-after-inner, .ckurs-signup-inner,
  .cph-inner, .cobelief-inner, .clp-pain-inner, .clp-promise-inner, .clp-trust-inner, .clp-final-inner {
    animation: section-fade-in 0.9s cubic-bezier(.2,.7,.2,1) both;
  }
}
@keyframes section-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Module list — staggered in */
.ckurs-mod {
  animation: section-fade-in 0.7s cubic-bezier(.2,.7,.2,1) both;
}
.ckurs-mod:nth-child(1) { animation-delay: 0.1s; }
.ckurs-mod:nth-child(2) { animation-delay: 0.2s; }
.ckurs-mod:nth-child(3) { animation-delay: 0.3s; }
.ckurs-mod:nth-child(4) { animation-delay: 0.4s; }
.ckurs-mod:nth-child(5) { animation-delay: 0.5s; }

/* ============ FREEBIES OVERVIEW ============ */
.cfreebies {
  background: var(--cream);
  padding: 80px 40px 120px;
}
.cfreebies-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: 80px;
}
.cfreebie {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--blush);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.cfreebie:nth-child(even) {
  grid-template-columns: 1fr 0.9fr;
}
.cfreebie:nth-child(even) .cfreebie-img { order: 2; }
.cfreebie:nth-child(even) .cfreebie-body { order: 1; }
.cfreebie-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cfreebie-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.cfreebie:hover .cfreebie-img img { transform: scale(1.04); }
.cfreebie-body { padding: 0 12px; }
.cfreebie-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  color: var(--terra);
  background: var(--cream);
  padding: 8px 16px;
  margin-bottom: 24px;
}
.cfreebie h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.cfreebie h2 em { font-style: italic; color: var(--terra); }
.cfreebie p {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 50ch;
}
.cfreebie-meta {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.cfreebie-meta li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; gap: 10px;
}
.cfreebie-meta li::before {
  content: "✓";
  color: var(--terra);
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .cfreebie, .cfreebie:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .cfreebie:nth-child(even) .cfreebie-img { order: 0; }
  .cfreebie:nth-child(even) .cfreebie-body { order: 0; }
}

/* ============ PERSONALIZATION UI ============ */

/* Returning-user banner */
.pers-banner {
  position: sticky; top: 0; z-index: 60;
  background: var(--terra);
  color: var(--cream);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  animation: pers-slide-down 0.4s cubic-bezier(.2,.7,.2,1);
  flex-wrap: wrap;
}
.pers-banner.is-out { animation: pers-slide-up 0.3s ease-in forwards; }
@keyframes pers-slide-down { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes pers-slide-up { to { transform: translateY(-100%); opacity: 0; } }
.pers-banner-text { color: rgba(250,245,238,0.95); }
.pers-banner-cta {
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  font-weight: 600;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding-bottom: 2px;
}
.pers-banner-cta:hover { color: var(--cream); border-bottom-color: var(--cream); }
.pers-banner-close {
  background: transparent; border: none;
  color: rgba(250,245,238,0.6);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.15s;
}
.pers-banner-close:hover { color: var(--cream); }

/* Sticky CTA — discreet bottom-right pill */
.pers-sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(8,38,37,0.25), 0 2px 8px rgba(8,38,37,0.15);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(.2,.7,.2,1), transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.2s;
  pointer-events: none;
}
.pers-sticky-cta.is-shown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.pers-sticky-cta:hover { background: var(--terra-dk); transform: translateY(-2px); }
.pers-sticky-cta .arr { font-size: 14px; }
@media (max-width: 700px) {
  .pers-sticky-cta { bottom: 16px; right: 16px; padding: 11px 18px; font-size: 11px; }
}

/* Dynamic line on hero */
.pers-dynamic-line {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.5;
  color: rgba(250,245,238,0.78);
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(250,245,238,0.18);
  max-width: 480px;
  animation: pers-fade-in 0.6s cubic-bezier(.2,.7,.2,1) 0.4s both;
}
@keyframes pers-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============ DEPTH + MICRO-INTERACTIONS ============ */

/* Buttons — subtle lift on hover */
.btn-fill, .cnav-cta, .cguide-form button, .cnews-form button,
.clp-form button, .cmod-nav .next, .cmod-nav .prev, .pers-banner-cta {
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-fill:hover, .cnav-cta:hover, .cguide-form button:hover,
.cnews-form button:hover, .clp-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8,38,37,0.18);
}

/* Cards — soft shadow on hover */
.cwork-card, .cquote, .ckurs-mod, .cfreebie, .cgallery-cell, .cart {
  transition: box-shadow 0.3s cubic-bezier(.2,.7,.2,1), transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.cwork-card:hover, .cquote:hover, .cfreebie:hover, .cart:hover {
  box-shadow: 0 12px 36px rgba(8,38,37,0.10), 0 4px 12px rgba(8,38,37,0.06);
}

/* Subtle gradient overlays on dark sections */
.cstrip, .cguide, .cnews, .cobelief, .cconseq, .cmod-final, .ckurs-after, .ckurs-signup, .cnav-cta {
  background-image:
    linear-gradient(135deg, var(--terra) 0%, var(--terra) 70%, var(--terra-dk) 100%);
}

/* Blur-up image loading */
img {
  transition: opacity 0.5s ease-out, filter 0.6s ease-out;
}
img.img-loading {
  opacity: 0;
  filter: blur(12px);
}
img.img-loaded {
  opacity: 1;
  filter: blur(0);
}
/* Reset blur on already-cached images */
img:not(.img-loading):not(.img-loaded) { opacity: 1; }

/* Refined reveal animation — subtle, not aggressive */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.45s cubic-bezier(.2,.7,.2,1), transform 0.45s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ PAUSE SECTION (visual break) ============ */
.cpause {
  background: var(--terra-dk);
  background-image:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(201,168,122,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--terra-dk) 0%, var(--terra) 100%);
  padding: 140px 40px;
  text-align: center;
  position: relative;
}
.cpause-inner {
  max-width: 880px; margin: 0 auto;
}
.cpause h2 {
  font-family: var(--heading) !important;
  font-weight: 700 !important;
  font-size: clamp(36px, 4.5vw, 56px) !important;
  line-height: 1.15 !important;
  color: var(--cream) !important;
  letter-spacing: -0.02em !important;
}
.cpause h2 em {
  display: inline;
  color: var(--rose) !important;
}
.cpause-mark {
  width: 1px; height: 40px;
  background: var(--rose);
  margin: 0 auto 32px;
  opacity: 0.5;
}
@media (max-width: 700px) {
  .cpause { padding: 80px 24px; }
}


/* ============ DIN PROFIL — native quiz ============ */
.cprofil-intro, .cprofil-q, .cprofil-result {
  background: var(--cream);
  padding: 60px 40px 110px;
}
.cprofil-intro-inner, .cprofil-q-inner, .cprofil-result-inner {
  max-width: 760px; margin: 0 auto;
}

.cprofil-intro h2 {
  font-size: clamp(40px, 5vw, 68px);
  margin: 16px 0 36px;
}
.cprofil-intro-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 48px;
}
.cprofil-intro-list li {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px; line-height: 1.6;
  color: var(--ink);
}
.cprofil-intro-list .ix {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0; padding-top: 4px;
}

/* Question screen */
.cprofil-q-inner {
  animation: cprofil-fade-in 0.4s cubic-bezier(.2,.7,.2,1);
}
@keyframes cprofil-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.cprofil-q-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.cprofil-q-counter {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
}
.cprofil-q-text {
  font-size: clamp(32px, 4.5vw, 56px) !important;
  line-height: 1.1 !important;
  margin-bottom: 16px;
}
.cprofil-q-micro {
  font-family: var(--sans); font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.cprofil-options {
  list-style: none;
  display: grid; gap: 14px;
  margin-bottom: 40px;
}
.cprofil-opt {
  width: 100%;
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  text-align: left;
  font-family: var(--sans);
  font-size: 16px; line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.7,.2,1);
}
.cprofil-opt:hover {
  border-color: var(--terra);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(8,38,37,0.08);
}
.cprofil-opt.is-selected {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}
.cprofil-opt.is-selected .key { color: var(--rose); }
.cprofil-opt .key {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0; width: 24px;
  letter-spacing: -0.02em;
}

/* Result screen */
.cprofil-result-inner {
  text-align: center;
}
.cprofil-result-headline {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  line-height: 1.05 !important;
  margin: 18px 0 32px;
}
.cprofil-result-body {
  text-align: left;
  margin-bottom: 48px;
  padding: 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cprofil-result-body p {
  font-size: 18px; line-height: 1.7;
  color: var(--ink);
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cprofil-result-body p:last-child { border-bottom: none; }
.cprofil-result-next {
  background: var(--blush);
  padding: 32px;
  margin-bottom: 40px;
  text-align: left;
}
.cprofil-result-next .eyebrow { color: var(--terra); margin-bottom: 12px; }
.cprofil-result-next p {
  font-family: var(--heading); font-style: italic; font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.cprofil-result-cta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cprofil-result-note {
  font-family: var(--sans);
  font-size: 13px; line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  .cprofil-intro, .cprofil-q, .cprofil-result { padding: 40px 20px 80px; }
  .cprofil-q-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cprofil-opt { padding: 18px 20px; }
  .cprofil-result-cta { flex-direction: column; }
}

/* ============ HERO — freebie inline form ============ */
.chero-freebie {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 122, 0.35);
  padding: 24px 28px;
  max-width: 520px;
  animation: chero-freebie-in 0.7s cubic-bezier(.2,.7,.2,1) 0.3s both;
}
@keyframes chero-freebie-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.chero-freebie-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 8px;
}
.chero-freebie h3 {
  font-family: var(--heading) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--cream) !important;
  margin-bottom: 6px;
  letter-spacing: -0.02em !important;
}
.chero-freebie h3 em {
  color: var(--rose) !important;
  font-style: italic !important;
  font-weight: 600 !important;
}
.chero-freebie > p {
  font-size: 14px !important;
  color: rgba(250, 245, 238, 0.85) !important;
  margin: 0 0 14px 0;
  line-height: 1.55;
}
.chero-freebie-form {
  display: flex;
  background: var(--cream);
}
.chero-freebie-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.chero-freebie-form button {
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.chero-freebie-form button:hover { background: var(--terra-dk); }

@media (max-width: 700px) {
  .chero-freebie { padding: 18px 20px; max-width: 100%; }
  .chero-freebie h3 { font-size: 22px !important; }
  .chero-freebie-form { flex-direction: column; }
  .chero-freebie-form button { padding: 14px; }
}

/* ============ Refined wine highlight on dark sections (where wine doesn't pop) ============ */
.cnav-cta:hover { background: var(--wine); }

/* ============ KURS GRID — visual course cards ============ */
.ckurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.ckurs-grid .ckurs-card:first-child {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--blush);
  margin-bottom: 16px;
}
.ckurs-card {
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
  overflow: hidden;
}
.ckurs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8,38,37,0.10), 0 4px 12px rgba(8,38,37,0.06);
}
.ckurs-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush);
}
.ckurs-grid .ckurs-card:first-child .ckurs-card-img { aspect-ratio: 4 / 3; height: 100%; }
.ckurs-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92);
}
.ckurs-card:hover .ckurs-card-img img { transform: scale(1.05); }
.ckurs-card-body {
  padding: 28px 26px 32px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ckurs-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 6px;
}
.ckurs-card-meta .dur { color: var(--ink-soft); font-weight: 500; }
.ckurs-card h3 {
  font-family: var(--heading) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em !important;
}
.ckurs-grid .ckurs-card:first-child h3 { font-size: 36px !important; }
.ckurs-card h3 em {
  color: var(--wine) !important;
  font-style: italic !important;
  font-weight: 600 !important;
}
.ckurs-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 16px 0;
  flex: 1;
}
.ckurs-card-go {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 4px;
  margin-top: auto;
  align-self: flex-start;
}
.ckurs-card.is-done {
  background: linear-gradient(180deg, rgba(14,59,58,0.05) 0%, transparent 100%);
}
.ckurs-card.is-done .ckurs-card-meta::after {
  content: "✓"; color: var(--terra); font-size: 14px;
  margin-left: 6px;
}

/* Course progress bar (overall) */
.ckurs-progress-bar {
  background: var(--blush);
  height: 4px;
  border-radius: 0;
  overflow: hidden;
  margin: 24px auto 0;
  max-width: 720px;
}
.ckurs-progress-bar-fill {
  height: 100%;
  background: var(--terra);
  width: 0;
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 1000px) {
  .ckurs-grid { grid-template-columns: repeat(2, 1fr); }
  .ckurs-grid .ckurs-card:first-child { grid-column: span 2; grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ckurs-grid { grid-template-columns: 1fr; gap: 16px; }
  .ckurs-grid .ckurs-card:first-child { grid-column: span 1; }
  .ckurs-card h3 { font-size: 22px !important; }
}

/* ============ FREEBIE LP — benefit split section ============ */
.clp-benefit {
  background: var(--blush);
  padding: 100px 40px;
}
.clp-benefit-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}
.clp-benefit-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.clp-benefit-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92);
}
.clp-benefit-text h2 {
  font-size: clamp(36px, 4.5vw, 60px) !important;
  margin: 14px 0 28px;
}
.clp-benefit-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin: 0 0 36px;
  padding: 0;
}
.clp-benefit-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
}
.clp-benefit-list .ix {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--rose); font-weight: 700;
  flex-shrink: 0;
  padding-top: 4px;
}

@media (max-width: 800px) {
  .clp-benefit { padding: 70px 24px; }
  .clp-benefit-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* refleksjons-profil LP — make CTA redirect to quiz instead of email signup */

/* ============ PAUSE — full-bleed image background ============ */
.cpause {
  position: relative;
  overflow: hidden;
}
.cpause-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.6);
  z-index: 0;
}
.cpause-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.5) 0%, rgba(8,38,37,0.85) 100%);
  z-index: 1;
}
.cpause-inner { position: relative; z-index: 2; }

/* ============ NAV — login + end group ============ */
.cnav-inner {
  grid-template-columns: auto 1fr auto !important;
}
.cnav-end {
  display: flex; align-items: center; gap: 18px;
  justify-self: end;
}
.cnav-login {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.cnav-login:hover, .cnav-login.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
}

@media (max-width: 900px) {
  .cnav-end .cnav-login { display: none; }
}

/* ============ Updated WORK CARDS — link wrappers + tag ============ */
.cwork-sub {
  margin-top: 12px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.cwork-card {
  display: flex; flex-direction: column;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.cwork-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8,38,37,0.10);
}
.cwork-card-img {
  aspect-ratio: 4 / 3 !important;
  margin-bottom: 0 !important;
}
.cwork-card-body {
  padding: 24px 24px 28px !important;
  display: flex; flex-direction: column;
  flex: 1;
}
.cwork-card-tag {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 10px;
}
.cwork-card h3 {
  font-size: 24px !important;
  margin-bottom: 10px !important;
}
.cwork-card p {
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 16px !important;
}
.cwork-card-link {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  padding-bottom: 4px;
  align-self: flex-start;
}

/* ============ LOGIN PAGE ============ */
.clogin {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.clogin::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(201,168,122,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(125,55,68,0.10) 0%, transparent 60%);
  z-index: 0;
}
.clogin-card {
  position: relative; z-index: 1;
  background: var(--cream);
  padding: 56px 48px;
  width: 100%; max-width: 440px;
  box-shadow: 0 20px 60px rgba(8,38,37,0.10), 0 4px 16px rgba(8,38,37,0.06);
}
.clogin-brand {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
}
.clogin-brand .dot { color: var(--rose); margin: 0 4px; font-weight: 400; }
.clogin h1 {
  font-size: 40px !important;
  margin: 12px 0 16px;
  line-height: 1.1 !important;
}
.clogin p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.clogin-form {
  display: grid; gap: 12px;
}
.clogin-form input {
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.clogin-form input:focus { border-color: var(--terra); }
.clogin-form button {
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.clogin-form button:hover { background: var(--terra-dk); }
.clogin-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}
.clogin-note a {
  color: var(--terra);
  border-bottom: 1px solid var(--terra);
  font-weight: 600;
}
.clogin-divider {
  margin: 32px 0 24px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--ink-soft);
  font-weight: 600;
}
.clogin-divider::before, .clogin-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.clogin-direct {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--blush);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s;
}
.clogin-direct:hover { background: var(--line); color: var(--terra); }

/* ============ SOFTEN — global radii + softer eyebrows ============ */
/* Less aggressive caps spacing */
.eyebrow,
.cnav-links a,
.cnav-cta,
.cnav-login,
.cnav-brand,
.cstrip-label,
.cstrip-row,
.cwork-card-tag,
.btn-fill,
.btn-ghost,
.cmod-progress-inner,
.cph-crumbs,
.cmod-nav a,
.ckurs-card-meta,
.ckurs-progress-pill,
.cfreebie-tag,
.clp-eyebrow,
.cnews-form button,
.cguide-form button,
.clp-form button,
.chero-eyebrow {
  letter-spacing: 0.12em !important;
}

/* Cards — soft rounded corners */
.cwork-card,
.cquote,
.ckurs-card,
.ckurs-mod,
.cfreebie,
.cmod-progress,
.cmeet-img,
.cwho-img,
.chero-img,
.cmod-hero,
.cmod-prompts,
.cmod-prompts-inner ol li,
.cnews-form,
.cguide-form,
.clp-form,
.cprofil-opt,
.cmod-write textarea,
.clogin-card,
.cprofil-result-next,
.cbook-embed {
  border-radius: var(--r-md);
}

/* Images inside cards inherit radius */
.cwork-card-img, .ckurs-card-img, .cfreebie-img, .cmeet-img, .cwho-img,
.chero-img, .cmod-hero, .cgallery-cell, .cart-img {
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Buttons — slightly softer */
.btn-fill, .btn-ghost, .cnav-cta,
.cguide-form button, .cnews-form button, .clp-form button,
.chero-freebie-form button, .clogin-form button, .clogin-form input,
.cguide-form input, .cnews-form input, .clp-form input, .chero-freebie-form input,
.clogin-direct, .pers-banner-cta, .pers-sticky-cta {
  border-radius: var(--r-sm);
}

/* Soft selection */
::selection { background: var(--rose); color: var(--ink); }

/* Soften body text contrast slightly */
p { color: var(--ink); opacity: 0.92; }
.cph-lede, .cmod-lede, .clp-lede, .cwho-text p, .cmeet-text p { opacity: 1; }

/* Softer hover lifts */
.btn-fill:hover, .cnav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(8,38,37,0.14);
}

/* Soften shadows on cards globally */
.cwork-card:hover, .cquote:hover, .ckurs-card:hover, .cfreebie:hover, .cart:hover {
  box-shadow: 0 10px 30px rgba(8,38,37,0.07), 0 2px 8px rgba(8,38,37,0.04) !important;
}


/* ============ KURS APP-SHELL — member stripe + sidebar ============ */
.cmod-memberbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--terra);
  color: var(--cream);
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}
.cmod-memberbar-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.cmod-memberbar-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
}
.cmod-memberbar-divider { color: rgba(250,245,238,0.4); }
.cmod-memberbar-progress {
  font-size: 12px;
  color: rgba(250,245,238,0.85);
}
.cmod-memberbar-end {
  margin-left: auto;
  display: flex; align-items: center; gap: 18px;
}
.cmod-memberbar-user {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: rgba(250,245,238,0.85);
}
.cmod-memberbar-user .dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}
.cmod-memberbar-user strong {
  color: var(--cream);
  font-weight: 600;
}
.cmod-memberbar-back {
  color: var(--rose);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.cmod-memberbar-back:hover { border-bottom-color: var(--rose); }

/* App layout — sidebar + main */
.cmod-app {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1380px;
  margin: 0 auto;
  background: var(--cream);
  align-items: start;
}
.cmod-app-sidebar {
  position: sticky;
  top: 38px;
  height: calc(100vh - 38px);
  border-right: 1px solid var(--line);
  background: var(--blush);
  overflow-y: auto;
}
.cmod-app-sidebar-inner {
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 24px; height: 100%;
}
.cmod-app-eyebrow {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
}
.cmod-app-sidebar h4 {
  font-family: var(--heading);
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  margin: 6px 0 14px;
  color: var(--ink);
}
.cmod-app-progress {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
}
.cmod-app-progress .bar {
  flex: 1;
  height: 4px;
  background: rgba(8,38,37,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.cmod-app-progress .fill {
  display: block;
  height: 100%;
  background: var(--terra);
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
}
.cmod-app-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.cmod-app-list li {
  border-bottom: 1px solid var(--line);
}
.cmod-app-list a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.4;
  transition: color 0.2s, padding 0.2s;
}
.cmod-app-list a:hover { color: var(--terra); padding-left: 4px; }
.cmod-app-list .dot {
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}
.cmod-app-list li.is-current a { color: var(--ink); font-weight: 600; }
.cmod-app-list li.is-current .dot {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}
.cmod-app-list li.is-done .dot {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--terra);
}
.cmod-app-list li.is-done.is-current .dot {
  background: var(--terra); border-color: var(--terra); color: var(--cream);
}
.cmod-app-list .title { flex: 1; }
.cmod-app-cta {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--r-sm);
}
.cmod-app-cta:hover { background: var(--terra-dk); }

/* Adjust main module content for sidebar */
.cmod-app .cmod {
  background: var(--cream);
  min-width: 0;
}
.cmod-app .cmod-progress { display: none; } /* replaced by sidebar progress */

@media (max-width: 1000px) {
  .cmod-app { grid-template-columns: 1fr; }
  .cmod-app-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .cmod-app-sidebar-inner { padding: 20px; }
  .cmod-app-list .title { font-size: 13px; }
  .cmod-memberbar-end { display: none; }
}

/* ============ CONVERSION FLOW — unique layout per section ============ */

/* Hero CTA — bigger, more direct */
.chero-cta-big {
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  padding: 22px 42px !important;
}
.chero-cta-sub {
  margin-top: 14px;
  font-size: 12px !important;
  color: rgba(250,245,238,0.7) !important;
  letter-spacing: 0.06em;
}

/* 2. Direct Action — narrow strip, tight call */
.cdirect {
  background: var(--blush);
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}
.cdirect-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cdirect-q {
  font-family: var(--heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
}
.cdirect-cta {
  background: var(--terra);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s;
}
.cdirect-cta:hover { background: var(--terra-dk); transform: translateY(-1px); }

/* 3. Recognition — single column, generous space, sharp text */
.crecog {
  background: var(--cream);
  padding: 110px 24px;
}
.crecog-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.crecog h2 {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  margin-bottom: 48px;
  line-height: 1.05 !important;
}
.crecog-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.crecog-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.crecog-list li::before {
  content: "—";
  color: var(--terra);
  margin-right: 14px;
  font-weight: 700;
}

/* 4. Quiz core — split layout with image, dominant CTA */
.cquizcore {
  background: var(--blush);
  padding: 110px 40px;
}
.cquizcore-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.cquizcore h2 {
  font-size: clamp(40px, 5.2vw, 68px) !important;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.04 !important;
}
.cquizcore p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 50ch;
}
.cquizcore-meta {
  list-style: none;
  margin: 0 0 36px;
  border-top: 1px solid var(--line);
}
.cquizcore-meta li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}
.cquizcore-meta strong {
  color: var(--terra);
  font-weight: 700;
}
.cquizcore-cta {
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  padding: 22px 42px !important;
}
.cquizcore-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
}
.cquizcore-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* 5. Freebie entry — small narrow band */
.cfreebie-entry {
  background: var(--cream);
  padding: 70px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cfreebie-entry-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cfreebie-entry h3 {
  font-family: var(--heading) !important;
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
  margin: 12px 0 18px;
}
.cfreebie-entry p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.cfreebie-entry-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cfreebie-entry-link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 4px;
}

/* 6. Consequence — full-bleed dark, image bg, strong text */
.cconseq {
  position: relative;
  padding: 130px 24px;
  overflow: hidden;
  background: var(--terra-dk);
}
.cconseq-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}
.cconseq-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,38,37,0.5) 0%, rgba(8,38,37,0.85) 100%);
  z-index: 1;
}
.cconseq-inner {
  position: relative; z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: var(--cream);
}
.cconseq h2 {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  color: var(--cream) !important;
  margin-bottom: 24px;
  line-height: 1.05 !important;
}
.cconseq h2 em {
  color: var(--rose) !important;
}
.cconseq p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 22px;
  color: rgba(250,245,238,0.85);
  max-width: 480px;
  margin: 0 auto;
}

/* 7. Torun — portrait left + text right, NOT same as Hero */
.ctorun {
  background: var(--cream);
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.ctorun-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
}
.ctorun-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.ctorun h2 {
  font-size: clamp(44px, 5.8vw, 84px) !important;
  margin-top: 14px;
  margin-bottom: 28px;
  line-height: 0.98 !important;
}
.ctorun p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 48ch;
}
.ctorun-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  border-bottom: 2px solid var(--terra);
  padding-bottom: 4px;
}

/* 8. Not for everyone — different layout from list above */
.cnot {
  background: var(--blush);
  padding: 90px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cnot-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.cnot h2 {
  font-size: clamp(32px, 4vw, 56px) !important;
  margin: 12px 0 32px;
  max-width: 18ch;
}
.cnot-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.cnot-list li {
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
}
.cnot-list li::before {
  content: "✕";
  color: var(--rose);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

/* 9. Final — two-choice card layout */
.cfinal {
  position: relative;
  padding: 130px 24px;
  background: var(--terra-dk);
  overflow: hidden;
}
.cfinal::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(201,168,122,0.1) 0%, transparent 70%);
  z-index: 0;
}
.cfinal-inner {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.cfinal h2 {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  color: var(--cream) !important;
  margin: 12px 0 56px;
}
.cfinal h2 em {
  color: var(--rose) !important;
}
.cfinal-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cfinal-choice {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,122,0.3);
  padding: 36px 32px;
  text-align: left;
  border-radius: var(--r-md);
  color: var(--cream);
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.cfinal-choice:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.cfinal-choice .num {
  font-family: var(--heading);
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--rose);
  display: inline-block;
  margin-bottom: 16px;
}
.cfinal-choice h3 {
  font-family: var(--heading) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--cream) !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.02em !important;
}
.cfinal-choice p {
  font-size: 15px;
  color: rgba(250,245,238,0.78);
  margin-bottom: 24px;
  line-height: 1.55;
}
.cfinal-choice .go {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
}
.cfinal-choice.primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.cfinal-choice.primary:hover { background: var(--rose); }
.cfinal-choice.primary .num { color: var(--terra); }
.cfinal-choice.primary h3 { color: var(--ink) !important; }
.cfinal-choice.primary p { color: var(--ink-soft); }
.cfinal-choice.primary .go { color: var(--terra); border-bottom-color: var(--terra); }

@media (max-width: 800px) {
  .cquizcore-inner { grid-template-columns: 1fr; gap: 40px; }
  .ctorun { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .cfinal-choices { grid-template-columns: 1fr; }
  .crecog h2, .cconseq h2, .cfinal h2 { font-size: 38px !important; }
}
