﻿/*
Theme Name: CIPD Redesign
Theme URI: http://localhost
Author: CIPD Team
Description: Custom redesign theme for CIPD pages.
Version: 1.0.0
Text Domain: cipd-redesign
*/

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

/* Homepage CSS from cipd_redesign_v2 (2).html */

:root {
  --ink:        #0E1520;
  --ink-mid:    #1C2B3A;
  --ink-soft:   #2C3E50;
  --gold:       #C8A951;
  --gold-light: #E4C97A;
  --gold-pale:  #FBF6E9;
  --cream:      #FAFAF7;
  --white:      #FFFFFF;
  --mist:       #F0F3F7;
  --slate:      #94A3B8;
  --slate-dark: #64748B;
  --green:      #16A34A;
  --wa:         #25D366;
  --wa-dark:    #128C4E;
  --red:        #DC2626;
  --blue:       #1D4ED8;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(14,21,32,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,81,0.18);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 68px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 17px;
  color: var(--white); letter-spacing: -0.3px;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color .2s; letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-wa {
  background: var(--wa);
  color: var(--white);
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: filter .2s;
}
.nav-wa:hover { filter: brightness(1.1); }
.nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  font-family: 'Fraunces', serif;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  background: var(--ink);
  padding: 88px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(200,169,81,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(22,163,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* SEO H1 â€” visible & prominent, search engine friendly */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.35);
  border-radius: 50px;
  padding: 5px 14px; margin-bottom: 24px;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1.2px; text-transform: uppercase;
}
.hero-eyebrow::before { content: '\2022'; font-size: 7px; animation: blink 2.2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08; letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .line-underline {
  position: relative; display: inline-block;
}
.hero h1 .line-underline::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
}

.hero-desc {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75; max-width: 520px; margin-bottom: 36px;
}

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: 14px 30px; border-radius: var(--radius-md);
  font-weight: 700; font-family: 'Fraunces', serif;
  font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(200,169,81,0.32);
  transition: all .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(200,169,81,0.42); }

.btn-wa {
  background: var(--wa); color: var(--white);
  padding: 14px 26px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.28);
  transition: all .2s;
}
.btn-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75);
  padding: 14px 26px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n {
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 26px; color: var(--gold); line-height: 1;
}
.stat-l { font-size: 12px; color: var(--slate); font-weight: 400; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* Hero right card */
.hero-card {
  background: var(--ink-mid);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hcard-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 4px; padding: 3px 10px;
  display: inline-block; margin-bottom: 14px;
}
.hero-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.hero-card > p {
  font-size: 13px; color: var(--slate); line-height: 1.6; margin-bottom: 20px;
}
.hcard-row {
  display: flex; flex-direction: column; gap: 8px;
}
.hcard-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px 14px;
  transition: border-color .2s;
}
.hcard-item:hover { border-color: rgba(200,169,81,0.3); }
.hcard-ico {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(200,169,81,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.hcard-info strong {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--white); font-family: 'Fraunces', serif;
}
.hcard-info span { font-size: 11px; color: var(--slate-dark); }

.hcard-bubble {
  position: absolute;
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; font-weight: 700;
  font-family: 'Fraunces', serif;
  white-space: nowrap; box-shadow: var(--shadow-md);
}
.bubble-1 {
  top: -18px; right: -20px;
  background: var(--green); color: var(--white);
  box-shadow: 0 8px 20px rgba(22,163,74,0.4);
}
.bubble-2 {
  bottom: -18px; left: -24px;
  background: var(--ink); color: var(--gold);
  border: 1px solid rgba(200,169,81,0.4);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROOF BAR
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.proof-bar {
  background: var(--ink-mid);
  border-top: 1px solid rgba(200,169,81,0.12);
  border-bottom: 1px solid rgba(200,169,81,0.12);
  padding: 18px 56px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.proof-item b { color: var(--gold); font-weight: 600; }
.proof-sep { color: rgba(255,255,255,0.1); font-size: 18px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DUAL LEAD STRIP
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lead-strip {
  display: grid; grid-template-columns: 1fr 1fr;
}
.lead-panel {
  padding: 60px 56px;
  display: flex; flex-direction: column; gap: 18px;
}
.lp-email { background: linear-gradient(135deg, #0E1520 0%, #1C2B3A 100%); }
.lp-wa    { background: linear-gradient(135deg, #071810 0%, #0f2d1e 100%); }

.lp-icon { font-size: 34px; }
.lead-panel h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 900; color: var(--white);
  line-height: 1.2; letter-spacing: -0.4px;
}
.lead-panel p { font-size: 14px; color: var(--slate); line-height: 1.65; font-weight: 300; }

.input-row {
  display: flex; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.input-row input {
  flex: 1; padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: none; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; outline: none;
}
.input-row input::placeholder { color: rgba(255,255,255,0.28); }
.input-row button {
  background: var(--gold); color: var(--ink);
  border: none; padding: 13px 22px;
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 13px;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.input-row button:hover { background: var(--gold-light); }
.ir-wa button { background: var(--wa); color: var(--white); }
.ir-wa button:hover { filter: brightness(1.1); }
.lp-hint { font-size: 11px; color: var(--slate-dark); margin-top: -6px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   EXAMPLES SECTION â€” SEO ANCHOR
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.examples-section {
  background: var(--cream); padding: 96px 56px;
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* This is the SEO-critical H1 â€” rendered visually within the examples section */
.examples-section .seo-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1; letter-spacing: -1px;
  color: var(--ink); margin-bottom: 14px;
}
.examples-section .seo-h1 em { color: var(--gold); font-style: normal; }

.examples-section .section-desc {
  font-size: 16px; color: var(--slate-dark); line-height: 1.7;
  max-width: 620px; margin-bottom: 56px; font-weight: 300;
}

/* Level tabs */
.level-tabs {
  display: flex; gap: 6px; margin-bottom: 40px; flex-wrap: wrap;
}
.level-tab {
  padding: 9px 24px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--mist);
  background: var(--white); color: var(--slate-dark);
  transition: all .2s;
}
.level-tab.active, .level-tab:hover {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}
.level-tab.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.15); }

/* Level block */
.level-block { margin-bottom: 56px; }
.level-block:last-child { margin-bottom: 0; }

.level-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--mist);
}
.level-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 900;
  color: var(--white); background: var(--ink);
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: -0.5px;
}
.level-num.l5 { background: var(--ink-soft); }
.level-num.l7 { background: linear-gradient(135deg,#1e1b4b,#312e81); }

.level-header-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 2px;
}
.level-header-text p { font-size: 13px; color: var(--slate); }

.level-badge-count {
  margin-left: auto;
  font-size: 12px; font-weight: 600;
  color: var(--gold); background: var(--gold-pale);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 50px; padding: 4px 12px;
  font-family: 'Fraunces', serif;
  white-space: nowrap;
}

/* Module cards grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.module-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold); opacity: 0;
  transition: opacity .25s;
}
.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,81,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.module-card:hover::before { opacity: 1; }

.module-code {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.module-title {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); line-height: 1.5;
}
.module-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--ink); margin-top: 4px;
  font-family: 'Fraunces', serif;
  transition: color .2s;
}
.module-card:hover .module-link { color: var(--gold); }
.module-link::after { content: '\2192'; transition: transform .2s; }
.module-card:hover .module-link::after { transform: translateX(4px); }

.module-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 600;
  color: var(--slate-dark); background: var(--mist);
  border-radius: 4px; padding: 2px 7px;
  letter-spacing: 0.5px;
}
.module-tag.new { background: #DCFCE7; color: var(--green); }
.module-tag.hot { background: #FEF2F2; color: var(--red); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HOW IT WORKS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how-section { background: var(--white); padding: 96px 56px; }
.how-section .inner { max-width: 900px; margin: 0 auto; text-align: center; }
.how-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 900;
  color: var(--ink); letter-spacing: -0.8px; margin-bottom: 12px;
}
.how-section .sub { font-size: 16px; color: var(--slate-dark); margin-bottom: 60px; font-weight: 300; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 30px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.step { padding: 0 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-n {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 22px;
  color: var(--gold); margin-bottom: 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(200,169,81,0.08);
}
.step h4 { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--slate-dark); line-height: 1.6; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TESTIMONIALS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-section { background: var(--ink); padding: 96px 56px; }
.testi-section .section-eyebrow { margin-bottom: 14px; }
.testi-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 900;
  color: var(--white); letter-spacing: -0.8px; margin-bottom: 10px;
}
.testi-section .sub { font-size: 15px; color: var(--slate); margin-bottom: 52px; font-weight: 300; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; transition: all .3s;
}
.tcard:hover { border-color: rgba(200,169,81,0.35); transform: translateY(-4px); }
.tcard-level {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,169,81,0.1);
  border: 1px solid rgba(200,169,81,0.2);
  padding: 3px 8px; border-radius: 4px;
}
.tcard-q {
  font-size: 44px; color: var(--gold);
  line-height: 0.7; margin-bottom: 16px;
  font-family: Georgia, serif; opacity: 0.5;
}
.tcard p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; font-style: italic; margin-bottom: 22px; font-weight: 300; }
.tcard-foot { display: flex; align-items: center; gap: 11px; }
.tcard-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 13px; flex-shrink: 0;
}
.tcard-name { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; color: var(--white); }
.tcard-role { font-size: 11px; color: var(--slate); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   WHATSAPP COMMUNITY
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa-section {
  background: linear-gradient(135deg, #071810 0%, #0f2a1c 100%);
  padding: 96px 56px; text-align: center; position: relative; overflow: hidden;
}
.wa-section::before {
  content: '';
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wa-section h2 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(26px,3vw,40px); color: var(--white);
  letter-spacing: -0.8px; margin-bottom: 12px;
}
.wa-section .sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 44px; font-weight: 300; }

.wa-box {
  display: inline-flex; flex-direction: column; align-items: center; gap: 18px;
  background: rgba(37,211,102,0.07);
  border: 1.5px solid rgba(37,211,102,0.25);
  border-radius: 22px; padding: 44px 56px;
  position: relative; z-index: 1; max-width: 480px;
}
.wa-box-icon { font-size: 50px; }
.wa-box h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--white); }
.wa-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; }
.wa-btn {
  background: var(--wa); color: var(--white);
  padding: 16px 44px; border-radius: var(--radius-md);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
  transition: all .2s;
}
.wa-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.wa-perks { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.wa-perk { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 5px; }
.wa-perk::before { content: '\2713'; color: var(--wa); font-weight: 700; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SUBMIT CTA
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.submit-section {
  background: var(--gold-pale);
  border-top: 1px solid rgba(200,169,81,0.2);
  border-bottom: 1px solid rgba(200,169,81,0.2);
  padding: 72px 56px; text-align: center;
}
.submit-section h2 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(24px, 2.8vw, 38px); color: var(--ink);
  letter-spacing: -0.8px; margin-bottom: 12px;
}
.submit-section p { font-size: 15px; color: var(--slate-dark); margin-bottom: 36px; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }
.submit-section .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ink {
  background: var(--ink); color: var(--white);
  padding: 16px 36px; border-radius: var(--radius-md);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(14,21,32,0.2);
  transition: all .2s;
}
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--ink); padding: 64px 56px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand p {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 900;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand p em { color: var(--gold); font-style: normal; }
.footer-brand small {
  font-size: 13px; color: var(--slate); line-height: 1.7; display: block; max-width: 280px; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all .2s;
}
.fsoc:hover { border-color: var(--gold); background: rgba(200,169,81,0.1); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 16px; font-family: 'Fraunces', serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; color: var(--slate); transition: color .2s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--slate-dark); }
.footer-bottom em { color: var(--gold); font-style: normal; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   STICKY CTA
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sticky {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.sticky-wa-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s;
}
.sticky-wa-btn:hover { transform: scale(1.1); }
.sticky-quote-btn {
  background: var(--gold); color: var(--ink);
  padding: 11px 22px; border-radius: 50px;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 13px;
  box-shadow: 0 8px 22px rgba(200,169,81,0.38);
  transition: all .2s; white-space: nowrap;
}
.sticky-quote-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DESIGN NOTES PANEL
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.notes {
  background: #FFFFF0;
  border-top: 4px solid var(--gold);
  padding: 72px 56px;
}
.notes h2 {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900;
  color: var(--ink); margin-bottom: 6px;
}
.notes > p { color: var(--slate-dark); margin-bottom: 40px; font-size: 15px; }
.notes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.note-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 22px; border: 1px solid #E8E4C8;
}
.note-card h4 { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.note-card p { font-size: 13px; color: var(--slate-dark); line-height: 1.65; }
.note-card h4 span { margin-right: 6px; }

/* Home hero overlap fix on smaller viewports */
.hcard-bubble {
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
    overflow: visible;
  }
  .bubble-1 {
    top: 10px;
    right: 10px;
  }
  .bubble-2 {
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 640px) {
  .hcard-bubble {
    display: none;
  }
}


/* Single module CSS from 5co01_page (1).html (scoped for single views) */

body.single-post, body.single-modules {
  --ink:       #0D1B2A;
  --ink-mid:   #1A2F45;
  --gold:      #C8A951;
  --gold-lt:   #E4C97A;
  --gold-pale: #FBF6E9;
  --cream:     #F8F7F4;
  --white:     #FFFFFF;
  --mist:      #EEF1F6;
  --slate:     #7A8FA0;
  --slate-dk:  #4A5E6D;
  --green:     #15803D;
  --green-lt:  #DCFCE7;
  --wa:        #25D366;
  --red:       #DC2626;
  --border:    #E2E8F0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.single-post, body.single-modules { scroll-behavior: smooth; }
body.single-post, body.single-modules {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink); background: var(--white);
  line-height: 1.6; font-size: 16px;
  overflow-x: hidden;
}
body.single-post a, body.single-modules a { text-decoration: none; color: inherit; }

/* â”€â”€ NAV â”€â”€ */
body.single-post .nav, body.single-modules .nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px; height: 64px;
}
body.single-post .nav-logo, body.single-modules .nav-logo {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 16px; color: var(--white);
}
body.single-post .nav-logo em, body.single-modules .nav-logo em { color: var(--gold); font-style: normal; }
body.single-post .nav-links, body.single-modules .nav-links { display: flex; gap: 28px; list-style: none; }
body.single-post .nav-links a, body.single-modules .nav-links a { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; transition: color .2s; }
body.single-post .nav-links a:hover, body.single-modules .nav-links a:hover { color: var(--gold); }
body.single-post .nav-right, body.single-modules .nav-right { display: flex; gap: 8px; align-items: center; }
.btn-nav-wa {
  background: var(--wa); color: var(--white);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  transition: filter .2s;
}
.btn-nav-wa:hover { filter: brightness(1.1); }
.btn-nav-cta {
  background: var(--gold); color: var(--ink);
  padding: 7px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  font-family: 'Lora', serif;
  transition: background .2s;
}
.btn-nav-cta:hover { background: var(--gold-lt); }

/* â”€â”€ BREADCRUMB â”€â”€ */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 48px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--slate);
}
.breadcrumb a { color: var(--slate-dk); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--slate); }

/* â”€â”€ PAGE LAYOUT â”€â”€ */
.page-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* â”€â”€ MAIN CONTENT â”€â”€ */
.main-col {}

/* Module header */
.module-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.module-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 4px;
}
.tag-level { background: var(--ink); color: var(--gold); }
.tag-free  { background: var(--green-lt); color: var(--green); }
.tag-ref   { background: var(--mist); color: var(--slate-dk); }

.module-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.5px; color: var(--ink);
  margin-bottom: 14px;
}
.module-header h1 em { color: var(--gold); font-style: normal; }

.module-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--slate);
  margin-bottom: 20px;
}
.meta-item { display: flex; align-items: center; gap: 6px; }
.meta-item b { color: var(--slate-dk); font-weight: 600; }

/* Trust accordion */
.trust-accordion {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 6px 24px rgba(0,0,0,.08),
    0 0 0 1px rgba(0,0,0,.05);
  background: #ffffff;
  margin: 4px 0 18px;
}
.trust-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  background: #1a1a2e;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.trust-trigger:hover { background: #16213e; }
.trust-trigger-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #e8b84b, #d4973a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.trust-trigger-text { flex: 1; }
.trust-trigger-text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.trust-trigger-text span {
  font-size: 0.78rem;
  color: #9ca3b8;
  font-weight: 300;
}
.trust-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(232,184,75,0.15);
  color: #e8b84b;
  border: 1px solid rgba(232,184,75,0.3);
}
.chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.2s;
  color: #9ca3b8;
}
.trust-accordion.open .chevron {
  transform: rotate(180deg);
  background: rgba(232,184,75,0.15);
  color: #e8b84b;
}
.trust-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1);
}
.trust-accordion.open .trust-body {
  max-height: 600px;
}
.trust-inner {
  padding: 4px 0 6px;
  background: #ffffff;
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 22px;
  border-bottom: 1px solid #f0ede8;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.trust-item:last-child { border-bottom: none; }
.trust-accordion.open .trust-item:nth-child(1) { transition-delay: 0.08s; opacity:1; transform:none; }
.trust-accordion.open .trust-item:nth-child(2) { transition-delay: 0.14s; opacity:1; transform:none; }
.trust-accordion.open .trust-item:nth-child(3) { transition-delay: 0.20s; opacity:1; transform:none; }
.trust-accordion.open .trust-item:nth-child(4) { transition-delay: 0.26s; opacity:1; transform:none; }
.trust-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-top: 2px;
}
.icon-human   { background: #fff3e0; }
.icon-harvard { background: #e8f5e9; }
.icon-plagiar { background: #e3f2fd; }
.icon-nodraft { background: #fce4ec; }
.trust-item-title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.97rem;
  color: #1a1a2e;
  margin-bottom: 3px;
}
.trust-item-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.55;
  font-weight: 300;
}
.trust-item-desc strong {
  color: #374151;
  font-weight: 500;
}
.trust-footer {
  padding: 12px 22px 14px;
  background: #fafaf8;
  border-top: 1px solid #f0ede8;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease 0.32s;
}
.trust-accordion.open .trust-footer { opacity: 1; }
.trust-footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4caf7d;
  box-shadow: 0 0 0 3px rgba(76,175,125,0.2);
  flex-shrink: 0;
}
.trust-footer span {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 400;
}
.trust-footer span strong { color: #374151; font-weight: 500; }

.module-intro {
  font-size: 16px; color: var(--slate-dk);
  line-height: 1.75; font-weight: 300;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 0 8px 8px 0;
}

/* Assessment criteria nav */
.ac-nav {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px; margin-bottom: 36px;
}
.ac-nav-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--slate); margin-bottom: 12px;
}
.ac-nav-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.ac-nav-list a {
  font-size: 13px; color: var(--slate-dk);
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 6px;
  transition: all .2s;
}
.ac-nav-list a:hover { background: var(--gold-pale); color: var(--gold); }
.ac-badge {
  font-size: 10px; font-weight: 700;
  background: var(--ink); color: var(--gold);
  padding: 2px 7px; border-radius: 3px;
  font-family: 'Lora', serif; flex-shrink: 0;
  line-height: 1.2;
}

/* â”€â”€ ASSIGNMENT CONTENT â”€â”€ */
.assignment-body {}

.assignment-body h2 {
  font-family: 'Lora', serif;
  font-size: 19px; font-weight: 700;
  color: var(--ink); margin: 36px 0 14px;
  padding-top: 8px;
  line-height: 1.35;
}
.assignment-body h2:first-child { margin-top: 0; }

.assignment-body h3 {
  font-family: 'Lora', serif;
  font-size: 16px; font-weight: 600;
  color: var(--ink-mid); margin: 24px 0 10px;
}

.assignment-body p {
  font-size: 15px; color: #334155;
  line-height: 1.8; margin-bottom: 18px;
  font-weight: 300;
}

.assignment-body strong { font-weight: 600; color: var(--ink); }

.ac-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  background: var(--ink); color: var(--gold);
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 10px; font-family: 'Lora', serif;
}

/* â”€â”€ FADE / GATE â”€â”€ */
.content-preview {
  position: relative;
}
.fade-out {
  position: relative;
  overflow: hidden;
  max-height: 600px;
}
.fade-out::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 80%);
  pointer-events: none;
}

/* â”€â”€ GATE BLOCK â”€â”€ */
.gate {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  margin-top: -8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  position: relative; z-index: 2;
}
.gate-lock { font-size: 40px; margin-bottom: 12px; }
.gate h3 {
  font-family: 'Lora', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.gate p {
  font-size: 14px; color: var(--slate-dk);
  line-height: 1.7; margin-bottom: 28px;
  max-width: 420px; margin-left: auto; margin-right: auto; font-weight: 300;
}

.gate-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 520px; margin: 0 auto 20px;
}
.gate-option {
  border-radius: 12px; padding: 22px 18px;
  text-align: left;
  border: 1.5px solid var(--border);
  position: relative; transition: all .2s;
}
.gate-option:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.gate-option.email-opt {
  border-color: rgba(200,169,81,0.4);
  background: var(--gold-pale);
}
.gate-option.wa-opt {
  border-color: rgba(37,211,102,0.35);
  background: #F0FFF4;
}

.opt-icon { font-size: 24px; margin-bottom: 8px; }
.opt-title {
  font-family: 'Lora', serif;
  font-size: 14px; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
}
.opt-desc { font-size: 12px; color: var(--slate-dk); line-height: 1.5; margin-bottom: 14px; }

.opt-input-row {
  display: flex; flex-direction: column; gap: 8px;
}
.opt-input-row input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  background: var(--white); color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; outline: none;
  transition: border-color .2s;
}
.opt-input-row input:focus { border-color: var(--gold); }

.btn-email-dl {
  width: 100%; padding: 11px 16px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 7px;
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 13px; cursor: pointer;
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(200,169,81,0.28);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-email-dl:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(200,169,81,0.34); }
.btn-email-dl:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-email-dl.is-loading {
  position: relative;
  color: transparent;
}
.btn-email-dl.is-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(17,24,39,0.25);
  border-top-color: var(--ink);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -7px;
  animation: unlock-spin .8s linear infinite;
}

.btn-wa-dl {
  width: 100%; padding: 11px 16px;
  background: var(--wa); color: var(--white);
  border: none; border-radius: 7px;
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 13px; cursor: pointer;
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37,211,102,0.28);
  transition: filter .2s, transform .15s, box-shadow .2s;
}
.btn-wa-dl:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(37,211,102,0.34); }

.gate-divider {
  font-size: 12px; color: var(--slate); margin-bottom: 16px;
}
.gate-trust {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; font-size: 12px; color: var(--slate);
}
.gate-trust span { display: flex; align-items: center; gap: 4px; }
.gate-trust span::before { content: '\2713'; color: var(--green); font-weight: 700; }

/* What you get */
.gate-included {
  background: var(--mist);
  border-radius: 10px; padding: 16px 20px;
  margin: 20px auto 0;
  max-width: 520px; text-align: left;
}
.gate-included-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--slate-dk);
  margin-bottom: 10px;
}
.gate-included ul {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.gate-included li {
  font-size: 13px; color: var(--slate-dk);
  display: flex; align-items: flex-start; gap: 8px;
}
.gate-included li::before { content: '\2192'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* â”€â”€ REFERENCES â”€â”€ */
.references {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.references h2 {
  font-family: 'Lora', serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
}
.references p {
  font-size: 13px; color: var(--slate-dk);
  line-height: 1.7; margin-bottom: 8px;
  font-style: italic; font-weight: 300;
}

/* â”€â”€ SIDEBAR â”€â”€ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  border-radius: 14px; padding: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
}

/* Quick info */
.info-card { background: var(--cream); }
.info-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 14px;
}
.info-rows { display: flex; flex-direction: column; gap: 10px; }
.info-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 10px;
  font-size: 13px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-label { color: var(--slate); font-weight: 400; flex-shrink: 0; }
.info-row-val { color: var(--ink); font-weight: 600; text-align: right; }

/* CTA card */
.cta-card {
  background: var(--ink);
  border-color: var(--ink);
}
.cta-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.25);
  padding: 3px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 14px;
}
.cta-card h3 {
  font-family: 'Lora', serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: 10px;
}
.cta-card p {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 20px; font-weight: 300;
}
.btn-cta-gold {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--gold); color: var(--ink);
  padding: 16px 18px; border-radius: 10px;
  text-align: center;
  font-family: 'Lora', serif; font-weight: 800;
  font-size: 16px; margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(200,169,81,0.38);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-cta-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(200,169,81,0.46); }
.btn-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; background: var(--wa); color: var(--white);
  padding: 13px 16px; border-radius: 8px;
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 14px; transition: filter .2s;
}
.btn-cta-wa:hover { filter: brightness(1.08); }
.cta-card-hint {
  font-size: 11px; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 10px;
}

/* Related modules */
.related-card {}
.related-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--slate); margin-bottom: 14px;
}
.related-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.related-item a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px; color: var(--ink);
  transition: all .2s;
}
.related-item a:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold); }
.rel-code {
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 12px; color: var(--gold);
  background: var(--ink); padding: 2px 7px;
  border-radius: 3px; flex-shrink: 0;
}

/* Progress bar */
.progress-bar {
  position: fixed; top: 64px; left: 0; right: 0;
  height: 3px; background: var(--mist); z-index: 998;
}
.progress-fill {
  height: 100%; background: var(--gold);
  width: 0%; transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* Sticky CTA */
body.single-post .sticky, body.single-modules .sticky { position: fixed; bottom: 24px; right: 24px; z-index: 990; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.sticky-wa { width: 52px; height: 52px; border-radius: 50%; background: var(--wa); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform .2s; }
.sticky-wa:hover { transform: scale(1.1); }
.sticky-quote { background: var(--gold); color: var(--ink); padding: 10px 20px; border-radius: 50px; font-family: 'Lora', serif; font-weight: 700; font-size: 13px; box-shadow: 0 6px 20px rgba(200,169,81,0.35); transition: all .2s; white-space: nowrap; }
.sticky-quote:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Success state */
.gate-success {
  display: none;
  background: var(--green-lt);
  border: 1.5px solid rgba(21,128,61,0.3);
  border-radius: 12px; padding: 28px;
  text-align: center; margin-top: 12px;
}
.gate-success.show { display: block; }
.gate-success h4 { font-family: 'Lora', serif; font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.gate-success p { font-size: 14px; color: var(--slate-dk); margin-bottom: 16px; }

.unlock-status {
  font-size: 12px;
  color: var(--slate);
  min-height: 16px;
  margin-top: 4px;
}
.unlock-status.error { color: #B91C1C; }

.unlock-success-message {
  margin-bottom: 14px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(21,128,61,0.25);
  background: #F0FFF4;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.assignment-body.unlock-transition {
  opacity: 0.35;
  transform: translateY(4px);
  transition: opacity .35s ease, transform .35s ease;
}
.assignment-body.unlock-transition.is-unlocked {
  opacity: 1;
  transform: translateY(0);
}

@keyframes unlock-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
  #email-unlock-form .btn-email-dl {
    min-height: 44px;
  }
  .unlock-status {
    line-height: 1.4;
    word-break: break-word;
  }
}
.btn-dl-now {
  background: var(--green); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-family: 'Lora', serif; font-weight: 700;
  font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px;
  transition: filter .2s;
}
.btn-dl-now:hover { filter: brightness(1.1); }

/* Responsive patch */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 72px 28px 56px;
  }
  .proof-bar,
  .submit-section,
  .wa-section,
  footer,
  .notes {
    padding-left: 28px;
    padding-right: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .nav {
    padding: 10px 16px;
    height: auto;
    min-height: 60px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .nav-links {
    order: 3;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  .nav-links li {
    flex: 0 0 auto;
  }
  .nav-right {
    margin-left: auto;
  }
  .lead-strip {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps,
  .testi-grid,
  .notes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sticky {
    right: 16px;
    bottom: 16px;
  }

  body.single-post .nav,
  body.single-modules .nav {
    padding: 10px 16px;
    height: auto;
    min-height: 60px;
    gap: 10px;
    flex-wrap: wrap;
  }
  body.single-post .nav-links,
  body.single-modules .nav-links {
    order: 3;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  body.single-post .page-wrap,
  body.single-modules .page-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
  }
  body.single-post .gate-options,
  body.single-modules .gate-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 62px 16px 42px;
  }
  .hero-ctas {
    gap: 10px;
  }
  .hero-ctas a {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
  .proof-bar,
  .lead-panel,
  .examples-section,
  .how-section,
  .testi-section,
  .wa-section,
  .submit-section,
  footer,
  .notes {
    padding-left: 16px;
    padding-right: 16px;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .steps,
  .testi-grid,
  .footer-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }
  .level-header {
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .sticky-quote-btn {
    display: none;
  }
  .sticky-wa-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  body.single-post .breadcrumb,
  body.single-modules .breadcrumb {
    padding: 10px 16px;
    flex-wrap: wrap;
  }
  body.single-post .sticky,
  body.single-modules .sticky {
    right: 12px;
    bottom: 12px;
  }
  body.single-post .sticky-quote,
  body.single-modules .sticky-quote {
    display: none;
  }
}

