/* ============================================================
   POCITOS 1 BEDROOM — Design System
   Colour accent: Slate Blue / Dusk (#4A6FA5 / #6B8CC7)
   Mood: Coastal-modern, urban couple, professional warmth
   ============================================================ */

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

/* ── Tokens ── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --accent:     #4A6FA5;
  --accent-light: #6B8CC7;
  --accent-pale: #EEF3FB;
  --gold:       #C9A96E;
  --sand:       #F5F0E8;
  --stone:      #E8E2D9;
  --mist:       #F8F7F4;
  --white:      #FFFFFF;
  --text-dark:  #1A1A2E;
  --text-mid:   #4A4A5A;
  --text-light: #7A7A8A;
  --border:     rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:      1160px;
  --nav-h:      76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
}
.headline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}
.body-sm { font-size: 0.9rem; color: var(--text-mid); }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.italic { font-style: italic; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,111,165,0.35);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo-main { color: var(--navy); }
.nav.scrolled .nav-logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav.scrolled .nav-links a:hover { color: var(--accent); }

.nav-cta .btn-primary {
  background: var(--accent);
  font-size: 0.82rem;
  padding: 11px 22px;
}
.nav.scrolled .nav-cta .btn-primary { background: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--stone);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(74,111,165,0.25) 60%, rgba(13,27,42,0.85) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%230D1B2A'/%3E%3Cstop offset='0.5' stop-color='%231A3A5C'/%3E%3Cstop offset='1' stop-color='%230D1B2A'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='1440' height='900'/%3E%3Ccircle cx='1100' cy='200' r='400' fill='%234A6FA5' opacity='0.12'/%3E%3Ccircle cx='200' cy='700' r='300' fill='%234A6FA5' opacity='0.08'/%3E%3C/svg%3E") center/cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,111,165,0.2);
  border: 1px solid rgba(74,111,165,0.35);
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ── FORM (2-step) ── */
.catalog-form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
}
.catalog-form-block h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.catalog-form-block p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
  background: var(--mist);
  text-align: center;
}
.form-check:hover, .form-check.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}
.form-check input { display: none; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select {
  padding: 13px 16px;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--mist);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.85rem; color: var(--accent); text-align: center; margin-top: 12px; }
.form-status[hidden] { display: none; }
.form-status-error { color: #c0392b; }
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stone);
  transition: background 0.2s;
}
.step-dot.active { background: var(--accent); }
.step-line { flex: 1; height: 1px; background: var(--stone); }

/* ── HERO SPLIT LAYOUT ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
}

/* ── SECTION LAYOUTS ── */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-mist { background: var(--mist); }
.section-sand { background: var(--sand); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header .eyebrow { margin-bottom: 12px; }

/* ── ICON BADGE SYSTEM ── */
/* Elegant monoline icons in softly tinted rounded-square badges */
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
}
.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.icon-badge-sm {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}
.icon-badge-sm svg { width: 18px; height: 18px; }
.icon-badge-lg {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}
.icon-badge-lg svg { width: 28px; height: 28px; }

/* Badge colour variants */
.badge-accent { background: var(--accent-pale); color: var(--accent); }
.badge-accent svg { stroke: var(--accent); }
.badge-gold { background: #FBF5EC; color: var(--gold); }
.badge-gold svg { stroke: var(--gold); }
.badge-navy { background: rgba(13,27,42,0.06); color: var(--navy); }
.badge-navy svg { stroke: var(--navy); }
.badge-sage { background: #EFF5F0; color: #4A7C59; }
.badge-sage svg { stroke: #4A7C59; }
.badge-rose { background: #FBF0EE; color: #A0522D; }
.badge-rose svg { stroke: #A0522D; }
.badge-white {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}
.badge-white svg { stroke: rgba(255,255,255,0.85); }

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-card .icon-badge { margin-bottom: 20px; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
/* Three-column cards with icon left */
.feature-row-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-row-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-row-card .icon-badge { flex-shrink: 0; margin-top: 2px; }
.feature-row-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.feature-row-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--mist);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .highlight { color: var(--accent); font-weight: 600; }

/* ── STAT CARDS ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
}
.stat-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.stat-card-val {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.stat-card-source {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* dark stat cards */
.stat-card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
}
.stat-card-dark .stat-card-val { color: var(--gold); }
.stat-card-dark .stat-card-label { color: rgba(255,255,255,0.6); }
.stat-card-dark .stat-card-source { color: rgba(255,255,255,0.3); }

/* ── CHECKLIST ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon-accent { background: var(--accent-pale); }
.check-icon-accent svg { stroke: var(--accent); }
.check-icon-gold { background: #FBF5EC; }
.check-icon-gold svg { stroke: var(--gold); }
.checklist-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.checklist-item strong { color: var(--text-dark); font-weight: 600; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: var(--stone);
}
.timeline-step { position: relative; margin-bottom: 32px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -28px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--accent);
}
.timeline-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-step p { font-size: 0.88rem; color: var(--text-mid); }

/* ── LEGAL BOX ── */
.legal-box {
  background: var(--accent-pale);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
}
.legal-box h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--accent); }
.legal-box p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.legal-box a { color: var(--accent); text-decoration: underline; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question span {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-icon svg { stroke: var(--text-mid); }
.faq-item.open .faq-icon {
  background: var(--accent-pale);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-answer a { color: var(--accent); text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* ── CALLOUT ── */
.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}
.callout h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.callout p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ── SOURCE LINKS ── */
.source-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.source-link:hover { border-bottom-color: var(--accent); }
.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 500;
}

/* ── SPLIT CONTENT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.page-hero-mist::after {
  background: linear-gradient(to top, var(--mist), transparent);
}
.page-hero-sand::after {
  background: linear-gradient(to top, var(--sand), transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ── PILL TAGS ── */
.tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag-accent { background: var(--accent-pale); color: var(--accent); }
.tag-gold { background: #FBF5EC; color: #8B6914; }
.tag-navy { background: rgba(13,27,42,0.07); color: var(--navy); }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom a:hover { color: var(--white); }

/* ── INLINE SOURCES (data citations) ── */
.data-citation {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.data-citation a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split, .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout { padding: 48px 28px; }
  /* tablet: 3-col → 2-col */
  .feature-grid { grid-template-columns: 1fr 1fr; }
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  /* hero collapses to 1 col */
  .hero .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .stat-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-split { padding-top: 100px; }
  .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .catalog-form-block { padding: 28px 20px; }
  /* 3-col grids collapse to 1 on mobile */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* 2-col grids collapse to 1 on mobile */
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(1,minmax(0,1fr)); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ── UTILITIES ── */
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8       { gap: 8px; }
.gap-12      { gap: 12px; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.gap-32      { gap: 32px; }
.w-full      { width: 100%; }
.max-w-640   { max-width: 640px; }
.max-w-760   { max-width: 760px; }
.max-w-860   { max-width: 860px; }
.mx-auto     { margin-left: auto; margin-right: auto; }
.hidden-mobile { }
@media(max-width:768px){ .hidden-mobile { display: none !important; } }
