/* Friendly HR Professional™ brand styles
 * Navy blue (#1B2A4A) + terracotta (#C8604A) + cream warm background
 * Warm, approachable, trustworthy, non-corporate
 */

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

/* ── Variables ──────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-light: #2D4F7A;
  --terracotta: #C8604A;
  --terracotta-lt: #D4877A;
  --terracotta-dk: #A84E3A;
  --cream:      #FDF6EC;
  --cream-dk:   #F0DCC4;
  --beige:      #F5EDE0;
  --white:      #FFFFFF;
  --text:       #2A2A2A;
  --text-soft:  #5A5A5A;
  --heart:      #C8604A;
  --orange-yw:  #F5C842;
}

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

html { scroll-behavior: smooth; }

/* ── Base ──────────────────────────────────────────── */
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
}

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(27,42,74,0.18);
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}

.logo-name {
  font-family: 'Caveat', 'Cookie', 'Lora', Georgia, serif;
  font-size: 1.35rem;
  color: var(--terracotta-lt);
  letter-spacing: 0.01em;
  font-weight: 600;
}

.logo-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 400;
  font-style: italic;
}

.navbar-cta {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(200,96,74,0.3);
}

.navbar-cta:hover {
  background: var(--terracotta-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,96,74,0.4);
}

.navbar-chat-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  border: 1.5px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}

.navbar-chat-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-1px);
}

.navbar-try-free {
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  border: 1.5px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.navbar-try-free:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 4.5rem 2rem 5rem;
  background: var(--cream);
  overflow: hidden;
}

/* Warm terracotta radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,96,74,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(27,42,74,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative heart doodle top-right */
.hero::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: 3.5rem;
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8604A' opacity='0.18'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  box-shadow: 0 2px 8px rgba(27,42,74,0.08);
  border: 1.5px solid var(--cream-dk);
}

.hero h1 {
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

/* "Friendly" in warm handwritten style */
.hero-script {
  font-family: 'Caveat', 'Cookie', 'Lora', Georgia, serif;
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  line-height: 1.05;
}

/* "HR PROFESSIONAL" bold uppercase navy */
.hero-title-block {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0.9rem auto 2.5rem;
  font-weight: 300;
  line-height: 1.78;
}

/* Doodle star decorations — hand-drawn feel */
.hero-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-doodles::before {
  content: '~ ✦ · ~ ✦ · ~ ✦ ~';
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-size: 0.8rem;
  color: var(--terracotta);
  opacity: 0.2;
  letter-spacing: 0.35rem;
}

.hero-doodles::after {
  content: '♥ · ♥ · ♥ · ♥';
  position: absolute;
  bottom: 1.8rem;
  right: 3rem;
  font-size: 0.85rem;
  color: var(--navy);
  opacity: 0.1;
  letter-spacing: 0.35rem;
}

.hero-image-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(27,42,74,0.15),
    0 2px 6px rgba(200,96,74,0.12);
  border: 2.5px solid var(--terracotta);
  opacity: 0.96;
  position: relative;
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Values bar ─────────────────────────────────────── */
.values-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--navy);
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.value-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.value-chip .heart-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--terracotta);
  opacity: 0.8;
}

/* ── App Areas Showcase ──────────────────────────────── */
.app-areas {
  padding: 4.5rem 2rem 4rem;
  text-align: center;
  background: var(--beige);
  position: relative;
}

.app-areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0.35;
}

.app-areas-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.app-areas h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2.8rem;
}

.app-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.app-area-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--cream-dk);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(27,42,74,0.07);
  text-decoration: none;
  display: block;
}

.app-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,42,74,0.12);
  border-color: var(--terracotta);
}

.app-area-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--cream-dk);
}

.app-area-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--terracotta);
}

.app-area-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.app-area-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.app-area-card .learn-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.app-area-card .learn-more svg {
  width: 12px;
  height: 12px;
  fill: var(--terracotta);
  transition: transform 0.15s;
}

.app-area-card:hover .learn-more svg {
  transform: translateX(3px);
}

/* ── Features section ──────────────────────────────── */
.features {
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.features h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.features h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.features-sub {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem;
  text-align: left;
  border: 1.5px solid var(--cream-dk);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,42,74,0.07);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-lt));
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,42,74,0.12);
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--terracotta);
  border: 1.5px solid var(--cream-dk);
  font-size: 1.1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--terracotta);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── How it works ──────────────────────────────────── */
.how-it-works {
  padding: 4.5rem 2rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Warm terracotta glow accent */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-lt), var(--terracotta));
}

.how-it-works .section-eyebrow {
  color: var(--terracotta-lt);
}

.how-it-works h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.how-it-works h2 em {
  font-style: italic;
  color: var(--terracotta-lt);
}

.how-sub {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200,96,74,0.15);
  border: 2.5px solid var(--terracotta);
  color: var(--terracotta-lt);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  font-family: 'DM Sans', sans-serif;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Subscription teaser section ────────────────────── */
.sub-teaser {
  padding: 5rem 2rem 4.5rem;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-teaser::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-lt), var(--terracotta));
}

.sub-teaser-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: 0.7rem;
}

.sub-teaser h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.sub-teaser h2 em {
  font-style: italic;
  color: var(--terracotta-lt);
}

.sub-teaser-sub {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.sub-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sub-tier-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 1.2rem;
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.sub-tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
}

.sub-tier-card.popular {
  border-color: var(--terracotta);
  background: rgba(200,96,74,0.1);
}

.sub-tier-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.sub-tier-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.9rem;
}

.sub-tier-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--terracotta-lt);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.sub-tier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.sub-tier-price.free-tier {
  color: #6BCB77;
}

.sub-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.sub-tier-features li {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.sub-tier-features li .check {
  color: var(--terracotta-lt);
  font-weight: 700;
  flex-shrink: 0;
}

.tier-see-plans {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta-lt);
  text-decoration: none;
  transition: color 0.15s;
}

.tier-see-plans:hover {
  color: var(--white);
}

.popular-tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

/* ── Digital Products teaser ─────────────────────────── */
.products-teaser {
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  background: var(--beige);
  position: relative;
}

.products-teaser-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.products-teaser h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.products-teaser h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.products-teaser-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.5rem;
  text-align: left;
  border: 1.5px solid var(--cream-dk);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(27,42,74,0.07);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,42,74,0.12);
}

.product-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  background: var(--cream);
}

.product-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.product-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.8rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.product-price.free {
  color: #2E7D32;
}

.btn-shop {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}

.btn-shop:hover {
  background: var(--terracotta-dk);
  transform: translateY(-1px);
}

.products-cta-row {
  margin-top: 0.5rem;
}

.btn-shop-all {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 4px 16px rgba(27,42,74,0.2);
}

.btn-shop-all:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ── Masterclass teaser ────────────────────────────── */
.masterclass-teaser {
  padding: 4.5rem 2rem;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.masterclass-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,96,74,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.masterclass-teaser-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.masterclass-teaser h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.masterclass-teaser h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.masterclass-teaser-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.mc-teaser-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.mc-teaser-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  border: 1.5px solid var(--cream-dk);
  width: 280px;
  box-shadow: 0 2px 12px rgba(27,42,74,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mc-teaser-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,42,74,0.1);
}

.mc-teaser-card-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0.7rem;
  background: var(--cream);
}

.mc-teaser-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.mc-teaser-card-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.mc-teaser-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mc-teaser-card-cta svg {
  width: 12px;
  height: 12px;
  fill: var(--terracotta);
  transition: transform 0.15s;
}

.mc-teaser-card:hover .mc-teaser-card-cta svg {
  transform: translateX(3px);
}

.btn-browse-classes {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 4px 16px rgba(200,96,74,0.3);
}

.btn-browse-classes:hover {
  background: var(--terracotta-dk);
  transform: translateY(-2px);
}

/* ── Trust section ──────────────────────────────────── */
.trust-section {
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  background: var(--white);
  position: relative;
}

.trust-section .section-eyebrow {
  color: var(--terracotta);
}

.trust-section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.trust-section h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.trust-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.6rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-card {
  background: var(--cream);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1.5px solid var(--cream-dk);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(27,42,74,0.06);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(27,42,74,0.1);
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1.5px solid var(--cream-dk);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── CTA section with email capture ────────────────── */
.cta-section {
  text-align: center;
  padding: 5.5rem 2rem 5rem;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,96,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: var(--text-soft);
  max-width: 440px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  font-weight: 300;
}

/* Email capture form */
.email-capture {
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

.email-capture-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-capture-form .form-row {
  display: flex;
  gap: 0.75rem;
}

.email-capture-input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: 999px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}

.email-capture-input:focus {
  border-color: var(--terracotta);
}

.email-capture-input::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.btn-capture {
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(200,96,74,0.3);
  white-space: nowrap;
}

.btn-capture:hover {
  background: var(--terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,96,74,0.38);
}

.cta-privacy {
  font-size: 0.75rem;
  color: var(--text-soft);
  opacity: 0.8;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 400;
}

/* ── Quiz entry section ───────────────────────────────── */
.quiz-entry {
  padding: 5rem 2rem;
  background: var(--beige);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-entry::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,96,74,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(27,42,74,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.quiz-entry-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.quiz-entry-badge {
  display: inline-block;
  background: var(--white);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  border: 1.5px solid var(--cream-dk);
  box-shadow: 0 2px 6px rgba(27,42,74,0.08);
}

.quiz-entry h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.quiz-entry p {
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.quiz-entry-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(200,96,74,0.32);
  letter-spacing: 0.03em;
}

.quiz-entry-btn:hover {
  background: var(--terracotta-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,96,74,0.42);
}

.quiz-entry-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 400;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: left;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--terracotta-lt);
}

.footer-brand {
  text-align: center;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-bottom: 0.4rem;
}

.footer-brand strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.footer-brand .footer-heart {
  color: var(--terracotta);
  margin: 0 0.25rem;
}

.footer-brand .footer-values {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

/* ── Hamburger (mobile) ──────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Responsive: show hamburger, hide full nav menu ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .navbar-right .navbar-tagline { display: none; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(27,42,74,0.3);
    z-index: 150;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }

  .nav-menu.mobile-open { display: flex; }

  .nav-item { width: 100%; }

  .nav-link {
    width: 100%;
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
    color: rgba(255,255,255,0.9);
  }

  .nav-link-stack {
    flex-direction: row;
    gap: 0.4rem;
    align-items: baseline;
  }

  .nav-link-caption {
    font-size: 0.7rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 0.92rem;
    padding: 0.75rem 0.8rem;
    color: rgba(255,255,255,0.9);
  }

  .nav-dropdown {
    position: static;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 0.6rem;
    margin: 0.2rem 0 0.4rem 0.6rem;
    padding: 0.4rem 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, visibility 0.18s;
    max-width: 100%;
  }

  .nav-dropdown::before { display: none; }

  .nav-dropdown.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown li a {
    color: rgba(255,255,255,0.75);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-left: 2px solid rgba(200,96,74,0.35);
  }

  .nav-dropdown li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }

  .sub-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .email-capture-form .form-row { flex-direction: column; }
}

@media (max-width: 640px) {
  .navbar { padding: 1rem 1.4rem; }
  .navbar-tagline { display: none; }
  .values-bar { gap: 1.4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.2rem 4rem; }
  .quiz-entry { padding: 3.5rem 1.2rem; }
  .sub-teaser-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .mc-teaser-cards { flex-direction: column; align-items: center; }
  .mc-teaser-card { width: 100%; max-width: 300px; }
}

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

/* ── Animations ─────────────────────────────────────── */
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.heart-pulse {
  display: inline-block;
  animation: heartPulse 1.8s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.float-up {
  animation: floatUp 3s ease-in-out infinite;
}

/* ── Dropdown Navigation ─────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.navbar .navbar-logo { flex-shrink: 0; margin-right: auto; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-link-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-link-caption {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-link-store {
  color: var(--orange-yw);
}

.nav-link-store:hover {
  color: #FFD968;
}

.nav-link-library {
  /* uses inherited --white on hover via .nav-link:hover */
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-caret {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: rgba(255,255,255,0.6);
}

.has-dropdown:hover .nav-caret,
.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  background: var(--white);
  border: 1.5px solid var(--cream-dk);
  border-radius: 1rem;
  min-width: 240px;
  padding: 0.6rem 0;
  list-style: none;
  margin: 0;
  box-shadow:
    0 8px 28px rgba(27,42,74,0.14),
    0 2px 8px  rgba(27,42,74,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
  max-width: 320px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 18px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1.5px solid var(--cream-dk);
  border-top: 1.5px solid var(--cream-dk);
  transform: rotate(45deg);
  z-index: -1;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li { margin: 0; }

.nav-dropdown li a {
  display: block;
  padding: 0.62rem 1.3rem;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-radius: 0;
  transition: background 0.12s, color 0.12s;
  line-height: 1.4;
}

.nav-dropdown li a:hover {
  background: var(--cream);
  color: var(--navy);
  font-weight: 500;
}

/* ── Subscription/feature gating overlays ───────────────────────────────── */

.doc-limit-reached {
  background: #fff;
  border: 1.5px solid var(--cream-dk, #F0DCC4);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-soft, #5A5A5A);
}

.doc-limit-reached svg { color: var(--terracotta, #C8604A); }

.doc-limit-reached h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy, #1B2A4A);
  margin: 0;
}

.doc-limit-reached p {
  font-size: 0.88rem;
  color: var(--text-soft, #5A5A5A);
  max-width: 380px;
  line-height: 1.55;
}

.btn-subscribe-overlay {
  display: inline-block;
  background: var(--terracotta, #C8604A);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(200,96,74,0.32);
  margin-top: 0.5rem;
}

.btn-subscribe-overlay:hover {
  background: var(--terracotta-dk, #A84E3A);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,96,74,0.4);
}

.catalog-limit-reached {
  background: var(--cream, #FDF6EC);
  border: 1.5px solid var(--cream-dk, #F0DCC4);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
}

.catalog-limit-reached p {
  font-size: 0.88rem;
  color: var(--text-soft, #5A5A5A);
  margin-bottom: 1rem;
}

/* ── Triage upsell page ─────────────────────────────────────────────────── */

.triage-upsell {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.triage-upsell-illustration {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.triage-upsell h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy, #1B2A4A);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.triage-upsell p {
  font-size: 1rem;
  color: var(--text-soft, #5A5A5A);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.triage-upsell-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.triage-upsell-card {
  background: var(--white, #fff);
  border: 1.5px solid var(--cream-dk, #F0DCC4);
  border-radius: 1rem;
  padding: 1.5rem;
}

.triage-upsell-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy, #1B2A4A);
  margin-bottom: 0.4rem;
}

.triage-upsell-card p {
  font-size: 0.82rem;
  color: var(--text-soft, #5A5A5A);
  margin: 0;
  line-height: 1.5;
}

.btn-upgrade {
  display: inline-block;
  background: var(--terracotta, #C8604A);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(200,96,74,0.38);
}

.btn-upgrade:hover {
  background: var(--terracotta-dk, #A84E3A);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,96,74,0.45);
}

/* ── Knowledge limit reached page ──────────────────────────────────────── */

.kb-limit-reached {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.kb-limit-reached-icon {
  width: 72px;
  height: 72px;
  background: rgba(200,96,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--terracotta, #C8604A);
}

.kb-limit-reached h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy, #1B2A4A);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.kb-limit-reached p {
  font-size: 0.95rem;
  color: var(--text-soft, #5A5A5A);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ── iPad (tablet) ───────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0.9rem 1.25rem; }
  .navbar-cta {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .navbar-chat-btn,
  .navbar-try-free { min-height: 44px; display: inline-flex; align-items: center; }
  .values-bar { gap: 1rem; padding: 1.2rem 1.25rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}