/* ============================================================
   APEX — Hostcare landing template
   Premium editorial · Deep navy + cream + gold · Magazine-style
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #1a2942;
  background: #f5f1eb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

:root {
  --navy:        #0d1f3c;
  --navy-deep:   #081428;
  --navy-soft:   #1a2942;
  --cream:       #f5f1eb;
  --cream-light: #faf7f2;
  --cream-dark:  #ebe4d6;
  --paper:       #ffffff;
  --gold:        #c9a961;
  --gold-deep:   #a88840;
  --gold-soft:   #f5edd8;
  --teal:        #008080;
  --teal-light:  #20a4a4;
  --teal-soft:   #d9f0f0;
  --ink:         #1a2942;
  --text:        #3d4a5e;
  --text-mute:   #6b7689;
  --text-dim:    #9aa3b3;
  --border:      #e1d9c9;
  --border-hi:   #c8bfae;
  --border-dark: #1a2942;
  --red:         #b9342a;
  --green:       #2d7a4d;
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-xs:   0 1px 2px rgba(13, 31, 60, 0.06);
  --shadow-sm:   0 4px 16px rgba(13, 31, 60, 0.08);
  --shadow:      0 16px 48px rgba(13, 31, 60, 0.12);
  --shadow-lg:   0 32px 80px rgba(13, 31, 60, 0.18);
  --container:   1240px;
  --container-narrow: 920px;
}

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

/* Typography — editorial feel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 5.5vw + 1rem, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.625rem, 1.5vw + 1rem, 2.25rem); }
h4 { font-size: 1.375rem; font-weight: 600; line-height: 1.25; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 235, 0.3);
}
.btn-ghost-light:hover {
  background: rgba(245, 241, 235, 0.08);
  color: var(--paper);
  border-color: var(--cream);
}
.btn-lg { padding: 1.125rem 2.125rem; font-size: 0.95rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 235, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 0.625rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* Hero — editorial split */
.hero {
  position: relative;
  padding: 6rem 0 8rem;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-deep);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.88rem;
  color: var(--text-mute);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-meta-icon {
  color: var(--teal);
  font-weight: 800;
}

/* Hero visual — editorial product card */
.hero-visual {
  position: relative;
  perspective: 1500px;
}
.hero-visual-frame {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(1.5deg) translateX(-1rem);
  transition: transform 0.4s ease;
}
.hero-visual-frame:hover { transform: rotate(0deg) translateX(0); }
.hero-visual-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  background: var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}
.hero-visual-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.hero-visual-bar span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--cream-dark);
}
.hero-visual-screen {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.hero-visual-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.hero-visual-stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem;
}
.hero-visual-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-visual-stat-num.gold { color: var(--gold-deep); }
.hero-visual-stat-num.teal { color: var(--teal); }
.hero-visual-stat-label {
  font-size: 0.65rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 0.25rem;
}
.hero-visual-row {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-visual-row + .hero-visual-row { margin-top: 0.4rem; }
.hero-visual-row-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.82rem;
}
.hero-visual-row-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-mute);
}
.hero-visual-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Trust strip */
.trust {
  padding: 3rem 0;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid var(--navy-deep);
}
.trust-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.75rem;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 2.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 241, 235, 0.85);
}
.trust-badge-icon { color: var(--gold); }

/* Section */
.section { padding: 7rem 0; position: relative; }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--paper); }
.section-navy .eyebrow { color: var(--gold); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4.5rem;
}
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
}
.section-navy .section-head p { color: rgba(245, 241, 235, 0.75); }

/* Editorial number-led showcase */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
}
.editorial-item {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid var(--gold);
}
.editorial-item-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.625rem;
}
.editorial-item h3 {
  margin-bottom: 1rem;
  font-size: 1.875rem;
}
.editorial-item p {
  color: var(--text);
  font-size: 1.025rem;
  line-height: 1.65;
}

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.problem-card {
  padding: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.25s ease;
}
.problem-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.problem-card-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.problem-card h4 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.problem-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Comparison table */
.compare {
  background: var(--paper);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 1.25rem 1.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare-table thead th {
  background: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  border-bottom: 2px solid var(--navy);
}
.compare-table th:first-child, .compare-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.compare-table .col-stack { color: var(--text-mute); font-weight: 500; }
.compare-table .col-host {
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 700;
  border-left: 3px solid var(--gold);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-cross { color: var(--red); font-weight: 800; }
.compare-check { color: var(--green); font-weight: 800; }

/* Module showcase — editorial */
.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}
.module:last-child { margin-bottom: 0; }
.module-text h3 { font-size: 2.5rem; margin-bottom: 1.25rem; }
.module-text p {
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.module-text-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.module-text-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.025rem;
  color: var(--ink);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.module-text-list li:last-child { border-bottom: none; padding-bottom: 0; }
.module-text-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.module-visual {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.module-visual::before {
  content: '';
  position: absolute;
  top: 16px; right: -16px;
  width: 100%; height: 100%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}
.module:nth-child(even) .module-visual { order: -1; }
.module:nth-child(even) .module-visual::before { left: -16px; right: auto; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.price-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3 { color: var(--paper); }
.price-card.featured .price-card-tag { color: rgba(245, 241, 235, 0.7); }
.price-card.featured .price-card-price { color: var(--paper); }
.price-card.featured .price-card-price-currency { color: var(--gold); }
.price-card.featured .price-card-price-period { color: rgba(245, 241, 235, 0.6); }
.price-card.featured .price-card-divider { background: rgba(245, 241, 235, 0.2); }
.price-card.featured .price-card-features li { color: rgba(245, 241, 235, 0.9); }
.price-card.featured .price-card-features li::before { color: var(--gold); }
.price-card.featured .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.price-card.featured .btn-primary:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }
.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.price-card-tag {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 1.75rem;
}
.price-card-price {
  font-family: 'Fraunces', serif;
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.price-card-price-currency {
  font-size: 1.4rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.price-card-price-period {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
}
.price-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0 1.75rem;
}
.price-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.price-card-features li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
}
.price-card-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }
.pricing-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 3rem;
}
.pricing-toggle-wrap { display: flex; justify-content: center; }
.pricing-toggle button {
  background: transparent;
  border: none;
  padding: 0.625rem 1.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-toggle button.active {
  background: var(--navy);
  color: var(--cream);
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  background: transparent;
}
.faq-item summary {
  list-style: none;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item-body {
  padding: 0 0 1.5rem;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 720px;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.final-cta h2 .accent {
  font-style: italic;
  color: var(--gold);
}
.final-cta p {
  color: rgba(245, 241, 235, 0.75);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  background: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-brand { margin-bottom: 1.25rem; }
.footer-brand p {
  color: var(--text-mute);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 340px;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  color: var(--text);
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page header */
.page-header {
  position: relative;
  padding: 6rem 0 4rem;
  text-align: center;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
}
.page-header .eyebrow { padding-left: 0; }
.page-header .eyebrow::before { display: none; }
.page-header h1 { margin-bottom: 1.25rem; }
.page-header p {
  color: var(--text);
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.875rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card p { color: var(--text); font-size: 0.95rem; }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form-textarea { resize: vertical; min-height: 150px; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-card-image {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  background: var(--cream-dark);
}
.blog-card-body { padding: 1.75rem; }
.blog-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; color: var(--gold-deep);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.75rem; font-weight: 700;
}
.blog-card h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.blog-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.alert-success {
  background: var(--teal-soft);
  border-left: 3px solid var(--teal);
  color: var(--teal);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual-frame { transform: rotate(0); }
  .editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .navbar.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .module {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .module:nth-child(even) .module-visual { order: 0; }
  .module-visual::before { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .compare { overflow-x: auto; }
}
@media (max-width: 540px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 4rem 0; }
  .hero { padding: 4rem 0 5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-visual { display: none; }
  .navbar-inner { padding: 0 20px; }
  .compare-table th, .compare-table td { padding: 0.875rem 1rem; font-size: 0.85rem; }
}

/* ─── Mobile nav auth visibility (H-1 fix) ───────────── */
.nav-link-mobile-only { display: none; }
@media (max-width: 968px) {
  .nav-auth-buttons { display: none; }
  .navbar.menu-open .nav-link-mobile-only { display: flex; }
  .nav-link-mobile-only a {
    color: var(--text);
    font-weight: 700;
  }
  .nav-link-mobile-only a:hover { color: var(--gold-deep); }
}

/* ─── Honeypot — invisible to humans, attractive to bots ─ */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
