/* ============================================================
   GarenWell — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --white:             #FFFFFF;
  --bg-alt:            #F9F4EC;
  --card-bg:           #FFFDF8;
  --forest-night:      #0F1E18;
  --stats-dark:        #162219;
  --warm-white:        #F5F0E8;
  --heading:           #2D4A3E;
  --green:             #2D4A3E;
  --green-light:       #3D6B57;
  --green-dark:        #1E3329;
  --terracotta:        #C8634A;
  --terracotta-dark:   #A8502A;
  --terracotta-hover:  #E8876E;
  --gold:              #D4A853;
  --charcoal:          #0F1E18;
  --text-body:         #3D3530;
  --text-muted:        #7A6E68;
  --border:            rgba(45,74,62,0.15);
}

/* ===== BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-alt);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--heading); letter-spacing: -0.5px;
  text-decoration: none; flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
}
.logo span { color: var(--terracotta); }
.logo-img {
  height: 56px; width: auto;
  display: block; object-fit: contain;
  flex-shrink: 0;
}
.footer-logo {
  height: 56px; width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}
nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav ul a {
  text-decoration: none; color: var(--text-body);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative;
}
nav ul a:hover,
nav ul a.active { color: var(--green); }

/* Animated underline — regular links only (not the pill CTA) */
nav ul a:not(.nav-cta)::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
nav ul a:not(.nav-cta):hover::after,
nav ul a:not(.nav-cta).active::after { width: 100%; }
.nav-cta {
  background: var(--terracotta); color: white !important;
  padding: 10px 22px; border-radius: 100px;
  transition: background 0.2s !important;
}
.nav-cta:hover  { background: var(--terracotta-hover) !important; color: white !important; }
.nav-cta.active { background: var(--terracotta-dark)  !important; color: white !important; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--heading); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== TYPOGRAPHY ===== */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--heading); line-height: 1.2; margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--terracotta); }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--terracotta); color: white;
  padding: 16px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.3px;
  transition: all 0.25s; box-shadow: 0 8px 24px rgba(200,99,74,0.32);
  display: inline-block;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 32px rgba(200,99,74,0.44); }
.btn-secondary {
  background: transparent; color: var(--heading);
  padding: 16px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--heading);
  transition: all 0.25s; display: inline-block;
}
.btn-secondary:hover { background: var(--heading); color: white; transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 28px rgba(74,127,196,0.3); }
.btn-white {
  background: white; color: var(--green);
  padding: 16px 36px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: inline-block;
}
.btn-white:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,0.22); }
.btn-outline-white {
  background: transparent; color: white;
  padding: 16px 36px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s; display: inline-block;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px) scale(1.03); }

/* ===== PAGE HEADER (interior pages) ===== */
.page-header {
  padding: 140px 60px 72px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--heading); line-height: 1.14; margin-bottom: 16px;
}
.page-header h1 em { color: var(--terracotta); font-style: italic; }
.page-header p {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; max-width: 560px;
}

/* ===== HERO (index.html) ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 60px 80px;
  position: relative; overflow: hidden;
  background: var(--forest-night);
}
/* Gradient bridge — blends dark hero into the cream section below */
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-alt) 100%);
  z-index: 5; pointer-events: none;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.hero-glow-top {
  top: 0; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px;
  background: rgba(51,110,74,0.14); filter: blur(140px);
}
.hero-glow-bottom {
  bottom: 0; right: 0; width: 360px; height: 360px;
  background: rgba(200,99,74,0.10); filter: blur(120px);
}
.hero-glow-mid {
  top: 50%; left: 25%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: rgba(212,168,83,0.07); filter: blur(150px);
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 820px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,34,25,0.72);
  border: 1px solid rgba(61,120,85,0.38);
  border-radius: 100px; padding: 8px 20px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,232,0.70); margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: heroFadeUp 0.6s ease-out 0.10s both;
}
.hero-badge svg { color: var(--terracotta); flex-shrink: 0; }
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.1; color: var(--warm-white); margin-bottom: 24px;
  animation: heroFadeUp 0.6s ease-out 0.22s both;
}
#hero h1 em { font-style: italic; color: var(--terracotta); }
.hero-sub {
  font-size: 1.15rem; line-height: 1.75;
  color: rgba(245,240,232,0.68); max-width: 640px; margin: 0 0 40px;
  animation: heroFadeUp 0.6s ease-out 0.34s both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 32px;
  animation: heroFadeUp 0.6s ease-out 0.46s both;
}
/* Secondary button override — readable on dark hero background */
#hero .btn-secondary {
  color: rgba(245,240,232,0.85);
  border-color: rgba(245,240,232,0.40);
}
#hero .btn-secondary:hover {
  background: rgba(245,240,232,0.10);
  color: var(--warm-white);
  border-color: rgba(245,240,232,0.75);
  box-shadow: none;
}
.btn-arrow {
  display: inline-block; vertical-align: middle;
  margin-left: 8px; transition: transform 0.25s ease;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.hero-pills {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 36px;
  animation: heroFadeUp 0.6s ease-out 0.58s both;
}
.hero-pill {
  background: rgba(15,30,24,0.68);
  border: 1px solid rgba(61,120,85,0.30);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,232,0.62); backdrop-filter: blur(8px);
}
.hero-stats {
  width: 100%;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(61,120,85,0.20);
  border: 1px solid rgba(61,120,85,0.24);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(14px);
  animation: heroFadeUp 0.6s ease-out 0.70s both;
}
.hero-stat {
  background: var(--stats-dark);
  padding: 24px 20px; text-align: center;
}
.hero-stat-lbl {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,240,232,0.48); margin-bottom: 8px;
}
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--warm-white);
}

/* ===== QUICK NAV CARDS (index.html) ===== */
.quick-nav { background: var(--bg-alt); padding: 80px 60px; }
.quick-nav .section-sub { margin-bottom: 48px; }
.quick-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.quick-card {
  background: var(--card-bg); border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--border); text-decoration: none;
  transition: all 0.3s; display: flex; flex-direction: column; gap: 10px;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
.quick-card-icon { font-size: 2rem; }
.quick-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--heading);
}
.quick-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.quick-card .arrow { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* ===== HOW IT WORKS section ===== */
.how-section {
  background: var(--heading); padding: 100px 60px;
}
.how-section .section-label { color: var(--gold); }
.how-section h2 { color: white; }
.how-section h2 em { color: var(--gold); }
.how-section .section-sub { color: rgba(255,255,255,0.65); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 60px; }
.step {
  background: rgba(255,255,255,0.07); border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.1); position: relative; transition: transform 0.3s;
}
.step:hover { transform: translateY(-6px); }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
  color: rgba(212,168,83,0.55); position: absolute; top: 20px; right: 24px;
  text-shadow: 0 0 24px rgba(212,168,83,0.45);
}
.step-icon { font-size: 2rem; margin-bottom: 20px; }
.step h3 { font-size: 1.15rem; font-weight: 600; color: white; margin-bottom: 12px; }
.step p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* HOW-SECTION LIGHT VARIANT (e-book path) */
.how-section-light { background: var(--white); padding: 100px 60px; }
.how-section-light .section-label { color: var(--terracotta); }
.how-section-light h2 { color: var(--heading); }
.how-section-light h2 em { color: var(--terracotta); }
.how-section-light .step { background: var(--bg-alt); border-color: var(--border); }
.how-section-light .step .step-num { color: rgba(45,74,62,0.35); text-shadow: 0 0 20px rgba(200,99,74,0.3); }
.how-section-light .step h3 { color: var(--heading); }
.how-section-light .step p { color: var(--text-muted); }

/* ===== SERVICES section ===== */
.services-section { background: var(--bg-alt); padding: 100px 60px; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.card {
  background: var(--card-bg); border-radius: 24px; padding: 40px 32px;
  border: 1px solid var(--border); position: relative; overflow: hidden; transition: all 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.1); }
.card.featured { background: var(--heading); border-color: var(--heading); }
.card.featured * { color: white !important; }
.card.featured .card-tag  { background: var(--gold); color: var(--heading) !important; }
.card.featured .price-sub { color: rgba(255,255,255,0.6) !important; }
.card.featured .feature-item { border-color: rgba(255,255,255,0.15) !important; }
.card.featured .btn-card  { background: var(--terracotta) !important; color: white !important; border-color: var(--terracotta) !important; }
.popular-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--gold); color: var(--heading);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.card-tag {
  display: inline-block; background: var(--bg-alt); color: var(--heading); /* sits on --card-bg, still readable */
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--heading); margin-bottom: 8px; }
.card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.price { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--heading); }
.price-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }
.features { list-style: none; margin-bottom: 32px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-body);
}
.feature-item:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 700; }
.btn-card {
  display: block; text-align: center;
  background: var(--bg-alt); color: var(--heading);
  padding: 14px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--heading); transition: all 0.25s;
}
.btn-card:hover { background: var(--green); border-color: var(--green); color: white; }

/* ===== EBOOKS section ===== */
.ebooks-section { background: var(--white); padding: 100px 60px; }
.ebooks { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.ebook {
  background: var(--card-bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
}
.ebook:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); }
.ebook-cover {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.ebook-cover.green { background: linear-gradient(135deg, var(--heading), #2D4A6E); }
.ebook-cover.terra { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.ebook-cover.gold  { background: linear-gradient(135deg, #B8873A, var(--gold)); }
.ebook-cover-text {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.ebook-cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: white; line-height: 1.3;
}
.ebook-body { padding: 24px; }
.ebook-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.ebook-footer { display: flex; align-items: center; justify-content: space-between; }
.ebook-price {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--heading);
}
.ebook-price span { font-size: 0.8rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.btn-ebook {
  background: var(--terracotta); color: white;
  padding: 10px 20px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.btn-ebook:hover { background: var(--terracotta-hover); transform: translateY(-1px); }

/* ===== EBOOK OVERVIEW CARDS (2-book dark layout) ===== */
.ebook-cards-section { background: var(--bg-alt); padding: 80px 60px; }
.ebook-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 60px auto 0;
}
.ebook-overview-card {
  background: #162219;
  border: 1px solid rgba(245,240,232,0.10);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ebook-overview-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.ebook-overview-cover {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(245,240,232,0.10);
}
.ebook-overview-cover.cover-green { background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-light) 100%); }
.ebook-overview-cover.cover-terra { background: linear-gradient(145deg, #1A2E24 0%, #2D4A3E 55%, #8B3E2B 100%); }
.ebook-overview-cover img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ebook-overview-body { padding: 20px 20px 22px; text-align: center; }
.ebook-overview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: #F5F0E8;
  margin-bottom: 8px; line-height: 1.3;
}
.ebook-overview-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--gold);
}

/* ===== EBOOK DETAIL PAGE ===== */
.ebook-detail-hero { background: var(--white); padding: 80px 60px; }
.ebook-detail-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 510px 1fr; gap: 64px; align-items: start;
}
.ebook-detail-cover {
  border-radius: 16px; overflow: hidden; aspect-ratio: 3/4;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px; text-align: center; gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.ebook-detail-cover.cover-green { background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-light) 100%); }
.ebook-detail-cover.cover-terra { background: linear-gradient(145deg, #1A2E24 0%, #2D4A3E 55%, #8B3E2B 100%); }
.ebook-detail-cover img { position: static; width: 100%; height: auto; display: block; }
.ebook-detail-cover:has(img) { aspect-ratio: auto; padding: 0; }
.ebook-detail-cover-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}
.ebook-detail-cover-title {
  font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: #F5F0E8; line-height: 1.35;
}
.ebook-detail-cover-gw {
  font-family: 'Playfair Display', serif; font-size: 0.82rem; color: rgba(245,240,232,0.35); margin-top: auto;
}
.ebook-detail-info { padding-top: 8px; }
.ebook-detail-section-label {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px; display: block;
}
.ebook-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--heading); line-height: 1.2; margin-bottom: 14px;
}
.ebook-detail-title em { color: var(--terracotta); font-style: italic; }
.ebook-detail-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 32px; max-width: 480px; }
.ebook-detail-price {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--heading);
  line-height: 1; margin-bottom: 4px;
}
.ebook-detail-price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.price-was { text-decoration: line-through; color: var(--text-muted); font-weight: 400; font-size: 0.82em; margin-right: 5px; }
.ebook-detail-price-old { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.btn-kop-nu {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terracotta); color: white;
  padding: 15px 36px; border-radius: 10px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-kop-nu:hover { background: var(--terracotta-hover); transform: translateY(-2px); }
.payment-soon-note { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

/* What's included */
.ebook-included-section { background: var(--bg-alt); padding: 80px 60px; }
.ebook-included-inner { max-width: 800px; margin: 0 auto; }
.ebook-included-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.ebook-included-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 20px; font-size: 0.93rem; color: var(--text-body); line-height: 1.55;
}
.ebook-check-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(45,74,62,0.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
/* Numbered variant */
.ebook-numbered-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.ebook-numbered-item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 22px; font-size: 0.93rem; color: var(--text-body); line-height: 1.65;
}
.ebook-num-badge {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--terracotta); color: white;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Ebook detail testimonials */
.ebook-testi-section { background: var(--white); padding: 80px 60px; }
.ebook-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

/* ===== TESTIMONIALS section ===== */
.reviews-section { background: var(--bg-alt); padding: 100px 60px; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testi {
  background: var(--card-bg); border-radius: 20px; padding: 32px; border: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; background: var(--heading); color: white; font-weight: 700;
  font-family: 'Playfair Display', serif; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.88rem; color: var(--heading); }
.author-loc  { font-size: 0.78rem; color: var(--text-muted); }

/* ===== TRUST STATS (recensioner.html) ===== */
.trust-stats {
  background: var(--heading); padding: 64px 60px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center;
}
.trust-stat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 700; color: var(--gold); line-height: 1.2;
}
.trust-stat-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ===== CONTACT section ===== */
.contact-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 100px 60px;
}
.kontakt-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-section .section-label { color: rgba(255,255,255,0.7); }
.contact-section h2 { color: white; }
.contact-section h2 em { color: var(--gold); }
.contact-section .section-sub { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.contact-info-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 0.92rem;
}
.contact-info-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white; border-radius: 24px; padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--heading); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--heading); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-body);
  background: var(--bg-alt); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,82,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.btn-submit {
  width: 100%; padding: 15px; border-radius: 100px;
  background: var(--terracotta); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(200,99,74,0.32); letter-spacing: 0.3px; margin-top: 4px;
}
.btn-submit:hover { background: var(--terracotta-dark); transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 32px rgba(200,99,74,0.44); }

/* ===== CTA BAND (bottom of interior pages) ===== */
.cta-band { background: var(--heading); padding: 80px 60px; text-align: center; }
.cta-band h2 { color: white; max-width: 560px; margin: 0 auto 16px; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--forest-night); color: rgba(245,240,232,0.50);
  padding: 40px 60px; text-align: center; font-size: 0.85rem;
}
footer strong { color: rgba(245,240,232,0.88); }
footer a { color: rgba(245,240,232,0.50); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: rgba(245,240,232,0.88); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible      { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.22s; }
.fade-in-delay-3 { transition-delay: 0.34s; }

/* ===== HERO ANIMATIONS ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SUCCESS PAGE ===== */
.success-hero {
  background: linear-gradient(160deg, var(--forest-night) 0%, var(--heading) 100%);
  padding: 140px 60px 80px;
  text-align: center;
}
.success-check-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,99,74,0.18);
  border: 2px solid rgba(200,99,74,0.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  color: var(--terracotta);
}
.success-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--warm-white); line-height: 1.2; margin-bottom: 14px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.success-sub {
  font-size: 1.05rem; color: rgba(245,240,232,0.65); margin: 0 auto;
}
.success-body {
  background: var(--bg-alt); padding: 80px 60px;
}
.success-inner { max-width: 640px; margin: 0 auto; }
.success-steps-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--heading);
  margin-bottom: 20px;
}
.success-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.success-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  font-size: 0.93rem; color: var(--text-body); line-height: 1.65;
}
.success-step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--heading); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.success-body-text {
  font-size: 1rem; color: var(--text-body); line-height: 1.75;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 28px; margin-bottom: 36px;
}
.success-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FAQ PAGE ===== */
.faq-page-section { background: var(--bg-alt); padding: 80px 60px; }
.faq-page-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: 0 8px 32px rgba(45,74,62,0.09); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--heading);
  line-height: 1.4; transition: color 0.2s;
}
.faq-question:hover { color: var(--green-light); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--terracotta); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  font-size: 0.93rem; color: var(--text-body); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* ===== SCROLL-TO-TOP BUTTON ===== */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--terracotta); color: white;
  border: none; cursor: pointer; font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(200,99,74,0.38);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--terracotta-dark);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 32px rgba(200,99,74,0.45);
}

/* ===== PRICING CARDS (tjanster.html) ===== */
.pc-section {
  background: var(--bg-alt);
  padding: 60px 60px 100px;
}
.pc-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ── Card shell ── */
.pc-card {
  background: #162219;
  border: 1px solid rgba(245,240,232,0.10);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pc-card.pc-featured {
  border-color: #C8634A;
  box-shadow: 0 0 0 1px rgba(200,99,74,0.32),
              0 20px 60px rgba(200,99,74,0.16);
  transform: translateY(-8px);
}
.pc-card.pc-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: #C8634A;
}

/* ── Name + badge row ── */
.pc-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1.2;
}
.pc-badge {
  background: rgba(212,168,83,0.14);
  color: #D4A853;
  border: 1px solid rgba(212,168,83,0.28);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pc-badge.pc-badge-featured {
  background: rgba(200,99,74,0.14);
  color: #E8876E;
  border-color: rgba(200,99,74,0.32);
}

/* ── Price ── */
.pc-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #F5F0E8;
  line-height: 1;
  margin-bottom: 6px;
}
.pc-price-kr {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}
.pc-period {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.40);
  margin-bottom: 28px;
}

/* ── Feature list ── */
.pc-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}
.pc-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.45;
}
.pc-feat svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-feat.pc-feat-no {
  color: rgba(245,240,232,0.35);
}
.pc-feat.pc-feat-no svg circle,
.pc-feat.pc-feat-no svg path {
  stroke: #C84A4A;
}

/* ── CTA button ── */
.pc-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s;
  background: rgba(245,240,232,0.07);
  color: rgba(245,240,232,0.85);
  border: 1px solid rgba(245,240,232,0.18);
  letter-spacing: 0.2px;
}
.pc-cta:hover {
  background: rgba(245,240,232,0.14);
  border-color: rgba(245,240,232,0.35);
  color: #F5F0E8;
  transform: translateY(-1px);
}
.pc-cta.pc-cta-featured {
  background: #C8634A;
  color: #fff;
  border-color: #C8634A;
  box-shadow: 0 4px 16px rgba(200,99,74,0.28);
}
.pc-cta.pc-cta-featured:hover {
  background: #E8876E;
  border-color: #E8876E;
  box-shadow: 0 6px 22px rgba(200,99,74,0.40);
  transform: translateY(-2px);
}

/* ── Dual-price (VIP card) ── */
.pc-price-secondary {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(245,240,232,0.60);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-price-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  color: rgba(245,240,232,0.30);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.pc-price-divider::before,
.pc-price-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245,240,232,0.12);
}

/* ===== OM MIG PAGE ===== */

/* Hero */
.om-hero {
  background: var(--forest-night);
  padding: 140px 60px 100px;
  text-align: center;
  position: relative;
}
.om-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-alt) 100%);
  pointer-events: none;
  z-index: 1;
}
.om-photo-ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(245,240,232,0.06);
  border: 2px solid rgba(212,168,83,0.35);
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.om-photo-ring svg {
  width: 50px; height: 50px;
  color: rgba(245,240,232,0.30);
}
.om-hero-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.om-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.om-hero-sub {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.45);
  position: relative; z-index: 2;
}

/* Story */
.story-section {
  background: var(--bg-alt);
  padding: 80px 60px 64px;
}
.story-inner {
  max-width: 700px;
  margin: 0 auto;
}
.story-inner .section-label { margin-bottom: 12px; }
.story-inner h2 { margin-bottom: 40px; }
.story-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.story-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

/* Certifications */
.certs-section {
  background: var(--bg-alt);
  padding: 0 60px 100px;
}
.certs-inner {
  max-width: 700px;
  margin: 0 auto;
}
.certs-inner .section-label { margin-bottom: 12px; }
.certs-inner h2 { margin-bottom: 36px; }
.cert-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cert-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.cert-card:hover {
  border-color: rgba(45,74,62,0.30);
  box-shadow: 0 4px 14px rgba(45,74,62,0.07);
}
.cert-number {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(45,74,62,0.07);
  border: 1px solid rgba(45,74,62,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--heading);
  flex-shrink: 0;
}
.cert-info { flex: 1; min-width: 0; }
.cert-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 3px;
}
.cert-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.cert-issuer {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
/* Master Trainer gold accent */
.cert-card.cert-master {
  border-color: rgba(212,168,83,0.38);
  background: linear-gradient(to right, rgba(212,168,83,0.05) 0%, var(--card-bg) 55%);
}
.cert-card.cert-master .cert-number {
  background: rgba(212,168,83,0.14);
  border-color: rgba(212,168,83,0.40);
  color: #8A6018;
}
.cert-card.cert-master .cert-title { color: #7A5510; }
.cert-card.cert-master:hover { border-color: rgba(212,168,83,0.60); }

/* Certificate thumbnail */
.cert-thumb {
  max-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(45,74,62,0.08);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  user-select: none;
}
.cert-thumb:hover {
  border-color: rgba(45,74,62,0.32);
  box-shadow: 0 5px 18px rgba(45,74,62,0.13);
  transform: translateY(-2px);
}
.cert-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.cert-thumb-cta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.84);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  overflow: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  line-height: 0;
}
.lightbox-inner img {
  display: block;
  max-width: min(960px, 90vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 901;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.24);
}

/* ===== HOMEPAGE TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
  white-space: nowrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,74,62,0.06);
  border: 1px solid rgba(45,74,62,0.14);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--heading);
  white-space: nowrap;
  text-decoration: none;
}
.trust-badge svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-strip-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 4px;
}
.trust-strip-link:hover { text-decoration: underline; }

/* ===== HERO GUIDE LINK (index.html) ===== */
.hero-guide-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.92rem; font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(212,168,83,0.55);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 20px;
  background: rgba(212,168,83,0.10);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  animation: heroFadeUp 0.6s ease-out 0.52s both;
  backdrop-filter: blur(8px);
}
.hero-guide-link svg { flex-shrink: 0; }
.hero-guide-link:hover {
  background: rgba(212,168,83,0.20);
  border-color: rgba(212,168,83,0.85);
  color: #e0b96a;
}

/* ===== FEATURED TESTIMONIAL (recensioner.html) ===== */
.featured-testi-section {
  background: var(--white);
  padding: 80px 60px;
}
.featured-testi-inner {
  max-width: 860px;
  margin: 0 auto;
}
.featured-testi {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.featured-testi::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}
.featured-testi-top {
  display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
}
.featured-photo {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--heading), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(45,74,62,0.2);
  overflow: hidden;
}
.featured-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-photo-label {
  font-size: 0.65rem; color: rgba(255,255,255,0.7);
  font-weight: 500; text-align: center; line-height: 1.4;
}
.featured-testi-meta { display: flex; flex-direction: column; gap: 10px; }
.featured-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.featured-result-badge {
  display: inline-flex; align-items: center;
  background: var(--heading); color: white;
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.2px;
  white-space: nowrap;
}
.featured-testi-text {
  font-size: 1rem; line-height: 1.85; color: var(--text-body);
  font-style: italic; margin-bottom: 28px;
}

/* Placeholder testimonial cards */
.testi-placeholder {
  background: var(--bg-alt); border-radius: 20px; padding: 32px;
  border: 1.5px dashed rgba(45,74,62,0.20);
  display: flex; align-items: center; justify-content: center;
  min-height: 180px; color: var(--text-muted);
  font-size: 0.88rem; font-style: italic;
}

/* ===== LEAD MAGNET PAGE (gratis-guide.html) ===== */
.lm-header {
  padding: 24px 40px; text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.lm-logo-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--heading); letter-spacing: -0.5px;
}
.lm-logo-img { height: 120px; width: auto; display: block; object-fit: contain; }
.lm-main {
  max-width: 1080px; margin: 0 auto;
  padding: 72px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.lm-eyebrow {
  display: block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.lm-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--heading); line-height: 1.15; margin-bottom: 16px;
}
.lm-headline em { font-style: italic; color: var(--terracotta); }
.lm-subheadline {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px;
}
.lm-photo-wrap {
  margin: 0 0 36px;
}
.lm-photo {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--heading), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--white); box-shadow: 0 8px 32px rgba(45,74,62,0.18);
  overflow: hidden;
}
.lm-photo img { width: 100%; height: 100%; object-fit: cover; }
.lm-photo-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
  font-weight: 500; text-align: center; line-height: 1.5;
}
.lm-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 16px;
}
.lm-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.97rem; line-height: 1.55; color: var(--text-body);
}
.lm-bullet-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--heading); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.lm-form-card {
  background: var(--white); border-radius: 24px; padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}
.lm-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--heading);
  margin-bottom: 8px; line-height: 1.2;
}
.lm-form-sub {
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.55;
}
.lm-form { display: flex; flex-direction: column; gap: 14px; }
.lm-input {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text-body);
  background: var(--bg-alt); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.lm-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,82,0.12);
  background: white;
}
.lm-submit {
  width: 100%; padding: 16px; border-radius: 100px;
  background: var(--terracotta); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(200,99,74,0.32); letter-spacing: 0.3px;
}
.lm-submit:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(200,99,74,0.44);
}
.lm-no-spam {
  text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px;
}
.lm-trust {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.lm-footer {
  background: var(--forest-night); color: rgba(245,240,232,0.50);
  padding: 32px 20px; text-align: center; font-size: 0.82rem;
}
.lm-footer strong { color: rgba(245,240,232,0.88); }
.lm-footer a { color: rgba(245,240,232,0.50); text-decoration: none; transition: color 0.2s; }
.lm-footer a:hover { color: rgba(245,240,232,0.88); }

/* ===== GUIDE COVER / PDF MOCKUP (gratis-guide.html) ===== */
.lm-cover-wrap {
  margin: 0 0 36px;
}
.lm-cover {
  width: 100%; max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(45,74,62,0.22), 0 4px 12px rgba(0,0,0,0.12);
}
.lm-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lm-cover-placeholder-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--warm-white); text-align: center; line-height: 1.3;
}
.lm-cover-placeholder-icon { color: var(--gold); }

/* ===== TRANSFORMATION REVEAL (recensioner.html) ===== */
.transformation-reveal {
  margin: 24px 0 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.btn-transformation {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--heading);
  padding: 10px 22px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--heading);
  cursor: pointer; transition: all 0.25s;
}
.btn-transformation:hover {
  background: var(--heading); color: white;
}
.btn-transformation svg { flex-shrink: 0; }
.transformation-img-wrap {
  width: 100%; max-width: 600px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.55s ease, opacity 0.4s ease;
  opacity: 0;
}
.transformation-img-wrap.open {
  max-height: 900px;
  opacity: 1;
}
.transformation-img {
  width: 100%; border-radius: 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ========================================================
   RESPONSIVE — 1024px (tablet)
   ======================================================== */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  #hero          { padding: 100px 40px 60px; }
  .page-header   { padding: 130px 40px 60px; }
  .how-section,
  .how-section-light,
  .services-section,
  .ebooks-section,
  .reviews-section,
  .contact-section,
  .cta-band,
  .quick-nav,
  .trust-stats   { padding-left: 40px; padding-right: 40px; }
  footer         { padding: 40px 40px; }

  .steps          { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cards          { grid-template-columns: 1fr; max-width: 520px; }
  .ebooks         { grid-template-columns: repeat(2,1fr); }
  .testimonials   { grid-template-columns: 1fr 1fr; }
  .quick-cards    { grid-template-columns: repeat(2,1fr); }
  .trust-stats    { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .kontakt-inner  { gap: 48px; }

  /* Pricing cards — tablet */
  .pc-section { padding: 60px 40px 80px; }
  .pc-grid    { gap: 18px; }

  /* Ebook detail — tablet */
  .ebook-cards-section, .ebook-detail-hero, .ebook-included-section, .ebook-testi-section { padding-left: 40px; padding-right: 40px; }
  .ebook-detail-inner { grid-template-columns: 380px 1fr; gap: 48px; }
  .ebook-testi-grid   { grid-template-columns: 1fr 1fr; }

  /* Om mig — tablet */
  .om-hero         { padding: 130px 40px 90px; }
  .story-section   { padding: 70px 40px 56px; }
  .certs-section   { padding: 0 40px 80px; }
  .trust-strip     { padding: 20px 40px; }

  /* Featured testimonial — tablet */
  .featured-testi-section { padding: 64px 40px; }
  .featured-testi { padding: 40px 36px; }

  /* Lead magnet — tablet */
  .lm-main { gap: 48px; padding: 56px 40px; }
  .lm-form-card { padding: 36px 32px; }
  .lm-logo-img { height: 96px; }
}

/* ========================================================
   RESPONSIVE — 768px (mobile)
   ======================================================== */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 16px 20px; }
  .logo-img { height: 56px; }
  nav ul {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 12px 24px; font-size: 0.95rem; }
  nav ul a.nav-cta {
    background: none !important; color: var(--green) !important;
    border-radius: 0; padding: 12px 24px; margin: 0;
  }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 100px 20px 64px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat-val { font-size: 1.9rem; }
  .hero-pills { gap: 8px; }

  /* Page Header */
  .page-header { padding: 110px 20px 48px; }
  .page-header h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Section paddings */
  .how-section,
  .how-section-light,
  .services-section,
  .ebooks-section,
  .reviews-section,
  .contact-section,
  .cta-band,
  .quick-nav     { padding: 56px 20px; }
  .trust-stats   { padding: 48px 20px; grid-template-columns: repeat(2,1fr); }
  footer         { padding: 32px 20px; }

  /* Grids → single column */
  .steps        { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .cards        { grid-template-columns: 1fr; max-width: 100%; margin-top: 40px; }
  .ebooks       { grid-template-columns: 1fr; margin-top: 40px; }
  .testimonials { grid-template-columns: 1fr; margin-top: 40px; }
  .quick-cards  { grid-template-columns: 1fr; }

  /* Contact */
  .kontakt-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 24px 20px; }
  .cta-btns      { flex-direction: column; }
  .btn-white, .btn-outline-white { text-align: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }

  /* Pricing cards — mobile */
  .pc-section             { padding: 40px 20px 60px; }
  .pc-grid                { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pc-card.pc-featured    { transform: none; }

  /* Ebook detail — mobile */
  .ebook-cards-section, .ebook-detail-hero, .ebook-included-section, .ebook-testi-section { padding: 56px 20px; }
  .ebook-cards-grid       { grid-template-columns: 1fr; }
  .ebook-detail-inner     { grid-template-columns: 1fr; }
  .ebook-detail-cover     { aspect-ratio: auto; min-height: 280px; max-width: 300px; margin: 0 auto; }
  .ebook-testi-grid       { grid-template-columns: 1fr; }

  /* Why-grid (ebocker.html) — collapse to 1 column to prevent layout-viewport overflow
     that pushes the fixed nav off-screen and hides the hamburger */
  .why-grid               { grid-template-columns: 1fr !important; }

  /* FAQ grid (tjanster.html) — collapse to 1 column on narrow screens */
  .faq-grid               { grid-template-columns: 1fr !important; }

  /* Success page — mobile */
  .success-hero           { padding: 110px 20px 60px; }
  .success-body           { padding: 56px 20px; }
  .success-btns           { flex-direction: column; }

  /* FAQ page — mobile */
  .faq-page-section       { padding: 56px 20px; }

  /* Om mig — mobile */
  .om-hero         { padding: 110px 20px 80px; }
  .story-section   { padding: 56px 20px 48px; }
  .certs-section   { padding: 0 20px 60px; }
  .trust-strip     { padding: 16px 20px; gap: 8px; }
  .trust-strip-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 4px; }
  .cert-card-top   { flex-wrap: wrap; gap: 10px; }
  .cert-issuer     { margin-left: 48px; }

  /* Featured testimonial — mobile */
  .featured-testi-section { padding: 56px 20px; }
  .featured-testi { padding: 32px 24px; }
  .featured-testi-top { flex-direction: column; gap: 16px; align-items: flex-start; }
  .featured-result-badge { font-size: 0.82rem; }

  /* Lead magnet — mobile */
  .lm-header   { padding: 16px 20px; }
  .lm-logo-img { height: 80px; }
  .lm-main     { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px; }
  .lm-form-card { padding: 28px 20px; }
  .lm-cover    { max-width: 240px; }

  /* Transformation reveal — mobile */
  .btn-transformation { font-size: 0.85rem; padding: 9px 18px; }
  .transformation-img-wrap.open { max-height: 1200px; }
}
