/* ============================================================
   ElevPay — Editorial Premium design system
   ============================================================ */

:root {
  --ink: #15110d;
  --ink-soft: #241d16;
  --cream: #f7f1e4;
  --cream-deep: #efe4cd;
  --paper: #fffdf8;
  --gold: #b8863b;
  --gold-light: #d8a857;
  --gold-pale: #ecd9b4;
  --text: #2b241c;
  --text-muted: #776c5a;
  --text-on-ink: #f3ece0;
  --text-on-ink-muted: #b3a794;
  --line: rgba(21, 17, 13, 0.12);
  --line-on-ink: rgba(243, 236, 224, 0.14);
  --shadow-lg: 0 40px 80px -30px rgba(21, 17, 13, 0.35);
  --shadow-md: 0 20px 40px -20px rgba(21, 17, 13, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 560;
  letter-spacing: -0.01em;
}

em, .accent-italic {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

p { color: var(--text); }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 128px 0;
}

.section-tight { padding: 88px 0; }

.text-center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-on-ink {
  background: var(--text-on-ink);
  color: var(--ink);
  border-color: transparent;
}

.btn-on-ink:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-block { width: 100%; }
.btn-lg { padding: 19px 38px; font-size: 1.02rem; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 241, 228, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.site-nav.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 241, 228, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-mark { width: 30px; height: 30px; }

.brand span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 86px;
  left: 0;
  width: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 24px 28px 32px;
  flex-direction: column;
  gap: 20px;
}

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

.mobile-nav a {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--ink);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 176px 0 72px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  max-width: 820px;
  margin: 0 auto 20px;
}

.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  padding: 96px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line-on-ink);
}

.footer-brand .brand { color: var(--text-on-ink); }

.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
  color: var(--text-on-ink-muted);
  font-size: 0.96rem;
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  color: var(--text-on-ink);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 14px; }

.footer-col a {
  font-size: 0.94rem;
  color: var(--text-on-ink-muted);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact-note {
  font-size: 0.85rem;
  color: var(--text-on-ink-muted);
  border: 1px dashed var(--line-on-ink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  line-height: 1.5;
}

.footer-legal {
  padding: 32px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-on-ink-muted);
}

.footer-legal-entity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.footer-legal-entity strong { color: var(--text-on-ink); font-weight: 700; }

/* ============================================================
   Home page
   ============================================================ */

.hero {
  padding: 168px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, var(--gold-pale) 0%, rgba(236, 217, 180, 0) 70%);
  z-index: 0;
}

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

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  margin-bottom: 26px;
}

.hero-copy p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-badge svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; }

.hero-visual {
  position: relative;
  height: 480px;
}

.elevation-card {
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.elevation-card-label {
  position: absolute;
  top: 32px;
  left: 36px;
  right: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-on-ink-muted);
}

.elevation-card-label strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--text-on-ink);
  font-weight: 500;
  margin-bottom: 4px;
}

.elevation-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
}

.elevation-bars .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 6px 6px 0 0;
  opacity: 0.92;
}

.floating-chip {
  position: absolute;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-chip svg { width: 18px; height: 18px; stroke: var(--gold); }
.chip-1 { top: 18%; left: -8%; }
.chip-2 { bottom: 14%; right: -10%; }

/* Trust bar */

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item svg { width: 20px; height: 20px; stroke: var(--gold); }

/* Bento products grid */

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin: 16px 0 18px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.bento-card {
  grid-column: span 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.bento-card--featured {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  background: var(--ink);
  border-color: var(--ink);
}

.bento-card--featured .bento-copy { flex: 1.2; }
.bento-card--featured h3, .bento-card--featured p { color: var(--text-on-ink); }
.bento-card--featured p { color: var(--text-on-ink-muted); }
.bento-card--featured .product-tag { background: var(--gold); color: var(--ink); }

.bento-visual {
  flex: 1;
  align-self: stretch;
}

.bento-visual .product-cover { height: 100%; margin-bottom: 0; }

/* Product cover art */

.product-cover {
  position: relative;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
  margin-bottom: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.07;
}

.cover-dark {
  background: linear-gradient(155deg, var(--ink) 0%, #2b2015 100%);
  color: var(--gold-light);
}

.cover-light {
  background: linear-gradient(155deg, var(--gold-pale) 0%, var(--cream-deep) 100%);
  color: var(--ink);
}

.cover-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.8rem;
  opacity: 0.4;
}

.cover-format {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

.cover-art {
  width: 58%;
  max-width: 190px;
  position: relative;
  z-index: 1;
}

.bento-card--featured .product-cover { aspect-ratio: auto; border-radius: var(--radius-md); }
.bento-card--featured .cover-art { width: 68%; max-width: 260px; }
.bento-card--featured .cover-num { font-size: 2.4rem; top: 22px; left: 26px; }
.bento-card--featured .cover-format { font-size: 0.75rem; bottom: 20px; right: 26px; }

.product-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold-pale);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.bento-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.bento-card p { color: var(--text-muted); margin-bottom: 24px; flex-grow: 1; }

.bento-link {
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.bento-card--featured .bento-link { color: var(--text-on-ink); }
.bento-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.bento-card:hover .bento-link svg { transform: translateX(4px); }

/* About */

.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  position: relative;
}

.about-visual .quote-mark {
  font-family: "Fraunces", serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.about-visual blockquote {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-visual cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

.about-copy h2 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin: 16px 0 24px; }
.about-copy p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 20px; }

.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
}

.checklist svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Principles (dark) */

.principles { background: var(--ink); color: var(--text-on-ink); }
.principles .section-head h2 { color: var(--text-on-ink); }
.principles .section-head p { color: var(--text-on-ink-muted); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principle-card {
  background: rgba(247, 241, 228, 0.04);
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
}

.principle-card:hover { background: rgba(247, 241, 228, 0.07); border-color: var(--gold); }

.principle-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.principle-card h3 { color: var(--text-on-ink); font-size: 1.2rem; margin-bottom: 12px; }
.principle-card p { color: var(--text-on-ink-muted); font-size: 0.94rem; }

/* CTA banner */

.cta-banner {
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-deep));
  border-radius: var(--radius-lg);
  margin: 0 28px;
  padding: 90px 60px;
  text-align: center;
  max-width: calc(var(--container) - 56px);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 720px; margin: 0 auto 20px; }
.cta-banner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; }

/* ============================================================
   Product detail pages
   ============================================================ */

.product-hero {
  padding: 168px 0 80px;
  border-bottom: 1px solid var(--line);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.breadcrumb a { color: var(--text-muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }

.product-hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.4rem); margin: 18px 0 22px; }
.product-hero .lead { color: var(--text-muted); font-size: 1.12rem; margin-bottom: 32px; max-width: 540px; }

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.meta-item { font-size: 0.85rem; color: var(--text-muted); }
.meta-item strong { display: block; color: var(--ink); font-family: "Fraunces", serif; font-size: 1.1rem; }

.product-hero-visual {
  background: var(--ink);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.product-hero-visual svg { width: 40%; height: 40%; stroke: var(--gold-light); opacity: 0.9; }

.product-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(184, 134, 59, 0.25));
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--ink); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Curriculum / module list */

.module-list { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }

.module-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.module-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
}

.module-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.module-item p { color: var(--text-muted); font-size: 0.93rem; }

/* Guarantee block */

.guarantee-block {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-badge svg { width: 48px; height: 48px; stroke: var(--gold-light); }
.guarantee-block h3 { color: var(--text-on-ink); font-size: 1.6rem; margin-bottom: 10px; }
.guarantee-block p { color: var(--text-on-ink-muted); }

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.pricing-grid--single { grid-template-columns: 1fr; max-width: 460px; }

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.is-popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .tier-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; min-height: 42px; }

.pricing-card .price {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-family: "Manrope", sans-serif; }
.pricing-card .price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }

.pricing-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.pricing-features svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-features li.is-muted { opacity: 0.4; }
.pricing-features li.is-muted svg { stroke: var(--text-muted); }

/* FAQ */

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.faq-item.is-open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p { padding: 0 28px 24px; color: var(--text-muted); font-size: 0.96rem; }

.faq-item.is-open .faq-answer { max-height: 260px; }

.disclaimer-note {
  max-width: 760px;
  margin: 56px auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal-wrap { padding: 72px 0 128px; }

.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 64px;
}

.legal-doc .updated-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-doc h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p { margin-bottom: 14px; color: var(--text); }
.legal-doc ul, .legal-doc ol { margin: 0 0 20px 22px; color: var(--text); }
.legal-doc li { margin-bottom: 8px; }
.legal-doc strong { color: var(--ink); }
.legal-doc a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Contact page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--text-on-ink);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h3 { color: var(--text-on-ink); font-size: 1.4rem; }

.info-row { display: flex; gap: 16px; align-items: flex-start; }

.info-row .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(247, 241, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-row svg { width: 20px; height: 20px; stroke: var(--gold-light); }
.info-row h4 { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text-on-ink); margin-bottom: 4px; }
.info-row p { color: var(--text-on-ink-muted); font-size: 0.9rem; }

.pending-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line-on-ink);
  border-radius: 999px;
  padding: 3px 10px;
}

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-control {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text);
  transition: border-color 0.3s var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .hero-grid, .about-grid, .product-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-visual { order: 2; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .pricing-grid--two { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-card.is-popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .guarantee-block { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 48px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 88px 0; }
  .bento-card, .bento-card--featured { grid-column: span 6; }
  .bento-card--featured { flex-direction: column; }
  .principles-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 56px 28px; margin: 0 20px; }
  .legal-doc { padding: 36px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .product-hero-visual { height: 280px; }
  .guarantee-block { padding: 36px 24px; }
}
