/* ============================================================
   SFS Models — Global Stylesheet
   ============================================================

   FILE: css/style.css
   AESTHETIC: Bloomberg / Goldman dark institutional

   PALETTE:
   - Background:  #0A0C10 (near-black), #0F1218 (surface)
   - Gold accent:  #C9A84C (sharp, sparingly)
   - Text:         #E8E6E0 (primary), #8A8880 (muted)
   - Borders:      #1E2028 (subtle)
   - Green:        #4ADE80 (positive)
   - Red:          #F87171 (negative)

   FONTS:
   - Headlines: 'DM Serif Display', serif
   - Body:      'DM Sans', sans-serif
   ============================================================ */


/* ==========================================================
   1. RESET & DESIGN TOKENS
   ========================================================== */

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

:root {
  /* Core palette */
  --bg:         #0A0C10;
  --bg-surface: #0F1218;
  --bg-card:    #13161D;
  --bg-hover:   #191C24;

  /* Gold accent */
  --gold:       #C9A84C;
  --gold-light: #D4B85E;
  --gold-dim:   rgba(201,168,76,.15);
  --gold-glow:  rgba(201,168,76,.25);

  /* Text */
  --text:       #E8E6E0;
  --text-muted: #8A8880;
  --text-dim:   #5A5850;

  /* Borders */
  --border:     #1E2028;
  --border-light: #282C36;

  /* Semantic */
  --green:      #4ADE80;
  --red:        #F87171;

  /* Shared */
  --radius:     8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --shadow:     0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.5);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.2);
  --transition: .2s cubic-bezier(.4,0,.2,1);
  --transition-slow: .35s cubic-bezier(.4,0,.2,1);
  --max-width:  1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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


/* ==========================================================
   2. TYPOGRAPHY
   ========================================================== */

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.7;
}

.gold-text { color: var(--gold); }


/* ==========================================================
   3. BUTTONS
   ========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: .01em;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border-color: var(--border-light);
}

.btn-sm { padding: 9px 20px; font-size: .84rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }


/* ==========================================================
   4. HEADER / NAVIGATION
   ========================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(10,12,16,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

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

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.95rem;
  color: var(--gold);
  letter-spacing: -.01em;
  text-decoration: none;
}
.logo span { color: var(--text); }
.logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta { display: flex; align-items: center; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all var(--transition);
}


/* ==========================================================
   5. SKIP LINK
   ========================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  z-index: 10000;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }


/* ==========================================================
   6. HERO
   ========================================================== */

.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}

/* Subtle radial glow behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 32px;
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .02em;
  opacity: .7;
}


/* ==========================================================
   7. STATS BAR
   ========================================================== */

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stats-bar__number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-bar__label {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}


/* ==========================================================
   8. SECTION SPACING
   ========================================================== */

section {
  padding: 96px 0;
}

.alt-bg {
  background: var(--bg-surface);
}


/* ==========================================================
   9. MODEL CARDS (used on index + models pages)
   ========================================================== */

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

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.model-card__badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.model-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.model-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.model-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.model-card__features li {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 3px 0 3px 16px;
  position: relative;
}

.model-card__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.model-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.model-card__price small {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.model-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.model-card__actions .btn {
  flex: 1;
  justify-content: center;
}

.model-card__actions a:not(.btn) {
  font-size: .85rem;
  color: var(--text-muted);
}
.model-card__actions a:not(.btn):hover {
  color: var(--gold);
}


/* ==========================================================
   10. CATALOGUE FILTERS
   ========================================================== */

.catalogue__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.catalogue__filter {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}

.catalogue__filter:hover {
  border-color: var(--border-light);
  color: var(--text);
}

.catalogue__filter.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.catalogue__count {
  text-align: center;
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: 32px;
}


/* ==========================================================
   11. USP / THREE-COLUMN SECTION
   ========================================================== */

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

.usp-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.usp-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.usp-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ==========================================================
   12. TESTIMONIALS
   ========================================================== */

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

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--bg);
}

.testimonial__author strong {
  display: block;
  font-size: .88rem;
  color: var(--text);
}

.testimonial__author span {
  font-size: .8rem;
  color: var(--text-dim);
}


/* ==========================================================
   13. CTA BANNER
   ========================================================== */

.cta-banner {
  padding: 80px 0;
}

.cta-banner__inner {
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06), transparent 70%);
  pointer-events: none;
}

.cta-banner__inner h2 {
  position: relative;
  margin-bottom: 12px;
}

.cta-banner__inner p {
  position: relative;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner__actions {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================
   14. FOOTER
   ========================================================== */

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: .88rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--gold); }


/* ==========================================================
   15. PAGE HERO (inner pages)
   ========================================================== */

.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 16px;
}

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


/* ==========================================================
   16. PRICING TIERS
   ========================================================== */

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-card--featured .pricing-card__header {
  padding-top: 16px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-card__desc {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.pricing-card__price small {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card__note {
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Custom pricing tiers (3-col) */
.custom-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.custom-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.custom-tier h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.custom-tier .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.custom-tier p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing tiers (Simple / Standard / Complex) */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-tier--popular {
  border-color: var(--gold);
}

.pricing-tier__badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-tier--popular .pricing-tier__header {
  padding-top: 16px;
}

.pricing-tier__header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-tier__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-tier__price {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-tier__amount {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
}

.pricing-tier__period {
  font-size: .82rem;
  color: var(--text-dim);
}

.pricing-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-tier__features li {
  padding: 6px 0;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-tier__features li.included::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-tier__features li.excluded::before {
  content: '\2014';
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Bundle highlight */
.bundle-highlight {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.bundle-highlight__content h2 {
  font-size: 1.8rem;
  margin-bottom: .75rem;
}

.bundle-highlight__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.bundle-highlight__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bundle-highlight__price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

.bundle-highlight__note {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.bundle-highlight__savings {
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* Format bar */
.format-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

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

.format-bar__item strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.format-bar__item span {
  font-size: .88rem;
  color: var(--text-muted);
}


/* ==========================================================
   17. FAQ ACCORDION
   ========================================================== */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question .arrow {
  font-size: .65rem;
  color: var(--text-dim);
  transition: transform var(--transition);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ==========================================================
   18. FORMS
   ========================================================== */

.form__group {
  margin-bottom: 20px;
}

.form__group label,
.form label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form__group input,
.form__group select,
.form__group textarea,
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
  margin-bottom: 20px;
}

.form__group input,
.form__group select,
.form__group textarea {
  margin-bottom: 0;
}

.form__group input::placeholder,
.form__group textarea::placeholder,
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-dim);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus,
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form__group select,
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238A8880' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__group select option,
.form select option {
  background: var(--bg-card);
  color: var(--text);
}

.form__group textarea,
.form textarea {
  resize: vertical;
  min-height: 100px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


/* ==========================================================
   19. MULTI-STEP FORM
   ========================================================== */

.step-form__progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.step-form__dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background var(--transition);
}

.step-form__dot.active {
  background: var(--gold);
}

.step-form__dot.completed {
  background: var(--gold);
  opacity: .5;
}

.step-form__panel {
  display: none;
}

.step-form__panel.active {
  display: block;
  animation: fadeInStep .3s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-form__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-form__title .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
}

.step-form__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Multistep form (contact.html custom model request) */

.multistep-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.multistep-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.multistep-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.multistep-progress__step span {
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 500;
}

.multistep-progress__step.active span {
  color: var(--gold);
}

.multistep-progress__step.completed span {
  color: var(--text-muted);
}

.multistep-progress__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all var(--transition);
}

.multistep-progress__step.active .multistep-progress__dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.multistep-progress__step.completed .multistep-progress__dot {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.multistep-progress__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 28px;
}

.multistep-panel {
  display: none;
}

.multistep-panel.active {
  display: block;
  animation: fadeInStep .3s ease;
}

.multistep-panel h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.multistep-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.multistep-review {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1rem;
}

.multistep-review__section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.multistep-review__section h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.multistep-review__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
}

.multistep-review__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.multistep-review__value {
  display: block;
  font-size: .92rem;
  color: var(--text);
  margin-top: 2px;
}


/* ==========================================================
   20. CONTACT PAGE SECTIONS
   ========================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: .95rem;
  color: var(--text);
}

.contact-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.contact-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.contact-bar__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-bar__value {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.contact-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-trust-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-trust-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-trust-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-trust-list li strong {
  display: block;
  color: var(--text);
  font-size: .9rem;
  margin-bottom: 2px;
}

.contact-trust-list li p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-trust-list li a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-trust-list li a:hover {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
}


/* ==========================================================
   21. ABOUT PAGE
   ========================================================== */

.about-prose {
  max-width: 680px;
  margin: 0 auto;
}

.about-prose p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-prose em {
  color: var(--text);
  font-style: italic;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.expertise-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.expertise-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Positioning grid (are / aren't) */
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.positioning-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.positioning-heading--positive { color: var(--green); }
.positioning-heading--negative { color: var(--red); }

.positioning-list {
  list-style: none;
  padding: 0;
}

.positioning-list li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.positioning-icon {
  font-weight: 700;
  flex-shrink: 0;
}
.positioning-icon--positive { color: var(--green); }
.positioning-icon--negative { color: var(--red); }


/* ==========================================================
   22. FORMAT INFO BAR (models page)
   ========================================================== */

.format-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.format-bar span {
  font-size: .85rem;
  color: var(--text-muted);
}

.format-bar strong {
  color: var(--text);
}


/* ==========================================================
   23. BUNDLE HIGHLIGHT (pricing)
   ========================================================== */

.bundle-card {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06), transparent 70%);
  pointer-events: none;
}

.bundle-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  position: relative;
}

.bundle-card__price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 16px 0 8px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}

.bundle-card__original {
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  position: relative;
}

.bundle-card__saving {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 12px 0 24px;
  position: relative;
}

.bundle-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 28px;
  position: relative;
}


/* ==========================================================
   24. COMPARISON TABLE
   ========================================================== */

.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.comparison-table th {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table tr:hover td {
  background: var(--bg-surface);
}

.comparison-table .check {
  color: var(--gold);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--text-dim);
}


/* ==========================================================
   25. HIDDEN UTILITY
   ========================================================== */

.hidden { display: none !important; }


/* ==========================================================
   26. SCROLL ANIMATION BASE (driven by JS)
   ========================================================== */

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-on-scroll:nth-child(2) { transition-delay: .08s; }
.fade-in-on-scroll:nth-child(3) { transition-delay: .16s; }
.fade-in-on-scroll:nth-child(4) { transition-delay: .24s; }
.fade-in-on-scroll:nth-child(5) { transition-delay: .32s; }
.fade-in-on-scroll:nth-child(6) { transition-delay: .40s; }


/* ==========================================================
   27. RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-tiers { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .bundle-highlight { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: block; z-index: 1001; }

  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  section { padding: 64px 0; }
  .page-hero { padding: 130px 0 60px; }

  .model-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .custom-tiers { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .bundle-highlight { grid-template-columns: 1fr; text-align: center; padding: 2rem; }
  .bundle-highlight__pricing { margin-top: 2rem; }
  .contact-bar__divider { display: none; }
  .contact-bar__grid { flex-direction: column; gap: 1rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .positioning-grid { grid-template-columns: 1fr; }

  .stats-bar__divider { display: none; }
  .stats-bar__inner { gap: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-banner__inner { padding: 40px 24px; }
  .form__row { grid-template-columns: 1fr; }

  .format-bar { flex-direction: column; align-items: center; gap: 12px; }
}

/* ── Free Samples ──────────────────────────────────────────────────────── */
.model-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.free-sample__full-link {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.free-sample__full-link:hover {
  color: var(--gold);
}

.model-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.model-card__footer .model-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
}

.model-card__footer .btn + .btn {
  margin-top: 0.5rem;
}

/* ── Buy / Coming Soon button variants ───────────────────────────────── */
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #C9A84C;
  background: #C9A84C;
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
  transition: all var(--transition);
}
.btn-buy:hover {
  background: #d4b65c;
  border-color: #d4b65c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
}
.btn-buy:active {
  transform: translateY(0);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(232, 230, 224, .4);
  cursor: not-allowed;
  letter-spacing: .02em;
  pointer-events: none;
  user-select: none;
}

.model-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ── Model search ──────────────────────────────────────────────────────── */
.model-search {
  margin-top: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.model-search__input {
  width: 100%;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color var(--transition);
}

.model-search__input:focus {
  outline: none;
  border-color: var(--gold);
}

.model-search__input::placeholder {
  color: var(--text-muted);
}

/* ── Hero gold subtitle ────────────────────────────────────────────────── */
.hero__subtitle--gold {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 0.75rem;
  max-width: 650px;
}
.page-hero .hero__subtitle--gold {
  margin-left: auto;
  margin-right: auto;
}

/* ── Category section headers ─────────────────────────────────────────── */
.cat-header {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}
.cat-header__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.cat-header__audience {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.cat-header__price {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0.35rem 0 0;
}

/* ── Notify Me form (Expanding Library) ──────────────────────────────── */
.notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}
.notify-form__input {
  flex: 1;
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color var(--transition);
}
.notify-form__input::placeholder { color: var(--text-dim); }
.notify-form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.notify-error {
  color: #ef4444;
  font-size: .82rem;
  text-align: center;
  margin-top: 8px;
}
.notify-success {
  color: var(--gold);
  font-size: .92rem;
  text-align: center;
  opacity: .85;
}

/* ── Expanding Library ────────────────────────────────────────────────── */
.expanding-library {
  background: var(--bg);
  border-top: 2px solid var(--gold);
  padding: 64px 0;
}
.expanding-library__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.expanding-library__copy {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.expanding-library__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 3rem;
  margin-bottom: 2.5rem;
  opacity: 0.6;
}
.expanding-library__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pill-soon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.expanding-library__notify {
  text-align: center;
}
.expanding-library__notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.expanding-library__notify-btn:hover {
  background: var(--gold-light);
}

/* ── Custom Model CTA ─────────────────────────────────────────────────── */
.custom-cta {
  padding: 80px 0;
}
.custom-cta__inner {
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.custom-cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.custom-cta__subtitle {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.custom-cta__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.custom-cta__values {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.custom-cta__value {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-cta__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.custom-cta__btn {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ── Responsive: 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .expanding-library__grid { grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
  .custom-cta__values { gap: 2rem; }
  .custom-cta__inner { padding: 3rem 2.5rem; }
}

/* ── Responsive: 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .expanding-library__grid { grid-template-columns: 1fr; }
  .custom-cta__values { flex-direction: column; gap: 0.75rem; align-items: center; }
  .custom-cta__inner { padding: 2.5rem 1.5rem; }
  .custom-cta__title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .section-header { margin-bottom: 40px; }
  .cat-header__title { font-size: 1.3rem; }
  .expanding-library__item { font-size: 0.82rem; }
  .custom-cta__inner { padding: 2rem 1.25rem; }
}


/* ==========================================================
   ENQUIRY MODAL
   ========================================================== */

.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

/* ─��� Pricing table ────────────────────────────────────────────────────── */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.pricing-table th {
  text-align: left;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-light);
}

.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.pricing-table td:nth-child(3) {
  font-weight: 600;
  white-space: nowrap;
}

.pricing-table td:last-child {
  text-align: right;
}

.pricing-table tbody tr:hover {
  background: var(--bg-surface);
}

.pricing-includes {
  margin-top: 56px;
  text-align: center;
}

.pricing-includes h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 24px;
}

.pricing-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  text-align: left;
}

.pricing-includes__item {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-includes__item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

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

.enquiry-modal.is-open {
  display: flex;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px);
}

.enquiry-modal__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,168,76,.1);
}

.enquiry-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.enquiry-modal__close:hover { color: var(--gold-light); }

.enquiry-modal__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.enquiry-modal__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.enquiry-modal__form .form__group { margin-bottom: 1.25rem; }

.enquiry-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.enquiry-modal__success,
.enquiry-modal__error {
  text-align: center;
  padding: 2rem 0;
}
.enquiry-modal__success p {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
}
.enquiry-modal__error p {
  color: #ef4444;
  font-size: 0.95rem;
}
.enquiry-modal__error a { color: var(--gold); text-decoration: underline; }

/* ── Modal responsive ── */
@media (max-width: 768px) {
  .enquiry-modal__panel {
    padding: 2rem 1.5rem;
    width: 96%;
    max-height: 95vh;
  }
  .enquiry-modal__title { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .enquiry-modal__panel {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
  }
}


/* ==========================================================
   PRINT STYLES
   ========================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body { font-size: 11pt; line-height: 1.4; }

  .site-header,
  .site-footer,
  .hamburger,
  .nav-cta,
  .cta-banner,
  .enquiry-modal,
  .skip-link,
  .btn { display: none !important; }

  a { text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }

  .container { max-width: 100%; padding: 0; }
  section { padding: 24px 0; }
  .model-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .model-card { border: 1px solid #ccc; padding: 12px; break-inside: avoid; }

  img { max-width: 100% !important; }
}
