/* Red Leaf — Hi-fi homepage styles */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #EC2227;
  --red-deep: #C61A1F;
  --red-tint: #FBE5E2;
  --ink: #0F0F0F;
  --ink-2: #2A2A2A;
  --ink-3: #555555;
  --ink-4: #8A8A88;
  --paper: #FAF7F2;
  --paper-2: #F1EBE0;
  --line: #E5DFD3;
  --display: 'Inter Tight', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

.hifi {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.hifi h1, .hifi h2, .hifi h3, .hifi h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}

.hifi p { margin: 0; }
.hifi a { color: inherit; text-decoration: none; }
.hifi ul { list-style: none; padding: 0; margin: 0; }

/* Container */
.hf-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
.hf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.hf-nav-logo { height: 32px; display: block; }
.hf-nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.hf-nav-links li { cursor: pointer; transition: color .15s; }
.hf-nav-links li:hover { color: var(--red); }
.hf-nav-links li.is-active { color: var(--red); }
.hf-nav-links li a { color: inherit; text-decoration: none; }
.hf-nav-links li.is-active::after {
  content: ''; display: block; height: 2px; background: var(--red);
  margin-top: 6px; border-radius: 2px;
}
.hf-nav-cta { display: flex; gap: 14px; align-items: center; }
.hf-nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
}
.hf-nav-phone:hover { color: var(--red); }

/* Hamburger button — hidden on desktop, visible at ≤1024px */
.hf-nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color .15s, background .15s;
}
.hf-nav-burger:hover { border-color: var(--ink-2); }
.hf-nav-burger span {
  display: block;
  width: 18px;
  height: 1.75px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hf-nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.75px) rotate(45deg);
}
.hf-nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hf-nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.75px) rotate(-45deg);
}

/* Slide-down drawer */
.hf-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}
.hf-nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.hf-nav-drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0);
  transition: background .25s ease;
}
.hf-nav-drawer.is-open .hf-nav-drawer-scrim {
  background: rgba(15, 15, 15, 0.45);
}
.hf-nav-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg, #FAFAF7);
  border-bottom: 1px solid var(--line);
  padding: 96px 32px 40px;
  transform: translateY(-100%);
  transition: transform .32s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 24px 60px rgba(15,15,15,0.08);
}
.hf-nav-drawer.is-open .hf-nav-drawer-panel {
  transform: translateY(0);
}
.hf-nav-drawer-links {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hf-nav-drawer-links li {
  border-bottom: 1px solid var(--line);
}
.hf-nav-drawer-links li:first-child { border-top: 1px solid var(--line); }
.hf-nav-drawer-links li a {
  display: block;
  padding: 18px 4px;
  font-family: var(--display, 'Inter Tight', system-ui, sans-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.hf-nav-drawer-links li a:hover { color: var(--red); }
.hf-nav-drawer-links li.is-active a { color: var(--red); }
.hf-nav-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.hf-nav-drawer-cta .hf-btn {
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}
.hf-nav-drawer-phone {
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.hf-nav-drawer-phone:hover { color: var(--red); }

/* Buttons */
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  text-decoration: none;
}
a.hf-btn { text-decoration: none; }
.hf-btn-primary {
  background: var(--red);
  color: white !important;
  border-color: var(--red);
}
.hf-btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-1px); }
.hf-btn-ink {
  background: var(--ink);
  color: white !important;
  border-color: var(--ink);
}
.hf-btn-ink:hover { background: #000; }
.hf-btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.hf-btn-ghost:hover { background: var(--ink); color: white !important; }
.hf-btn-quiet {
  background: transparent;
  color: var(--ink-2) !important;
  font-weight: 500;
}
.hf-btn-quiet:hover { color: var(--red); }
.hf-btn-lg { padding: 16px 28px; font-size: 15px; }

.hf-arrow { transition: transform .15s; }
.hf-btn:hover .hf-arrow { transform: translateX(3px); }

/* Eyebrow */
.hf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.hf-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
}

/* Trust pills (top of hero) */
.hf-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hf-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.hf-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Hero */
.hf-hero {
  padding: 56px 0 72px;
  position: relative;
}
.hf-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hf-h1 {
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.hf-h1 .accent { color: var(--red); }
.hf-hero-sub {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 510px;
}
.hf-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}
.hf-hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hf-stars { color: var(--red); letter-spacing: 2px; font-size: 16px; }
.hf-trust-text { font-size: 13px; color: var(--ink-3); font-weight: 500; }

/* Hero visual — abstract composition with photo placeholder */
.hf-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hf-hero-photo {
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hf-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hf-hero-card {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(15,15,15,0.06);
}
.hf-hero-card-1 {
  top: 24px;
  left: -28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hf-hero-card-2 {
  bottom: 32px;
  right: -36px;
  width: 220px;
}
.hf-hero-card-3 {
  top: 38%;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hf-hc-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hf-hc-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}
.hf-hc-quote {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
  font-weight: 500;
}
.hf-hc-author {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 6px;
  font-weight: 500;
}

/* Stat strip */
.hf-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.hf-stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.hf-stat:last-child { border-right: none; }
.hf-stat-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hf-stat-num .accent { color: var(--red); }
.hf-stat-lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.3;
  font-weight: 500;
}

/* Sections */
.hf-section { padding: 96px 0; }
.hf-section-hd { max-width: 720px; margin-bottom: 48px; }
.hf-h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 12px;
}
.hf-h2 .accent { color: var(--red); }
.hf-section-sub {
  margin-top: 28px;
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 580px;
}

/* Problem/Solution */
.hf-ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hf-ps {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  transition: border-color .15s;
}
.hf-ps:hover { border-color: var(--ink); }
.hf-ps-from {
  font-size: 14px;
  color: var(--ink-4);
  text-decoration: line-through;
  font-weight: 500;
}
.hf-ps-arrow {
  display: block;
  width: 18px; height: 1px;
  background: var(--red);
  margin: 16px 0;
  position: relative;
}
.hf-ps-arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--red);
  border-right: 1px solid var(--red);
  transform: rotate(45deg);
}
.hf-ps-to {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* Pricing pillars */
.hf-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.hf-pillar {
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hf-pillar-popular {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(15,15,15,0.18);
}
.hf-nowrap-md { white-space: nowrap; }
@media (max-width: 720px) {
  .hf-nowrap-md { white-space: normal; display: block; }
}
.hf-pillar-popular .hf-pillar-name { color: white; }
.hf-pillar-popular .hf-pillar-desc { color: #C9C9C9; }
.hf-pillar-popular .hf-pillar-price { color: var(--red); }
.hf-pillar-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.hf-pillar-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.hf-pillar-price {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-top: 14px;
  line-height: 1;
  color: var(--red);
}
.hf-pillar-price .unit {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0;
}
.hf-pillar-popular .hf-pillar-price .unit { color: #999; }
.hf-pillar-desc {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  flex: 1;
}
.hf-pillar-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hf-pillar-item {
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 500;
}
.hf-pillar-popular .hf-pillar-item { color: #E5E5E5; }
.hf-pillar-check {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.hf-pillar-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* Pricing tier detail */
.hf-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.hf-tier {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .15s;
}
.hf-tier:last-child { border-right: none; }
.hf-tier:hover { background: var(--paper); }
.hf-tier-range {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 600;
}
.hf-tier-price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 10px;
  line-height: 1;
}
.hf-tier-unit { font-size: 14px; color: var(--ink-3); font-weight: 500; }

/* How it works */
.hf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hf-step {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.hf-step-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}
.hf-step-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.hf-step-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* Objection block (dark) */
.hf-objection {
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 64px 56px;
}
.hf-objection .hf-h2 { color: white; }
.hf-objection .hf-section-sub { color: #C9C9C9; }
.hf-obj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.hf-obj {
  padding: 24px;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
}
.hf-obj-q {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.hf-obj-a {
  margin-top: 12px;
  font-size: 13px;
  color: #C9C9C9;
  line-height: 1.5;
}

/* Founder */
.hf-founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hf-founder-photo {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.hf-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hf-founder p { color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.hf-founder p + p { margin-top: 16px; }
.hf-founder-sig {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  margin-top: 24px;
  letter-spacing: -0.015em;
}
.hf-founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

/* Testimonials */
.hf-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hf-testimonial {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.hf-testimonial-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}
.hf-testimonial-quote {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--ink);
  margin-top: 14px;
  flex: 1;
}
.hf-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hf-testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}
.hf-testimonial-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.hf-testimonial-role { font-size: 12px; color: var(--ink-4); margin-top: 1px; }

/* SEO block */
.hf-seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hf-seo-keyword {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
}
.hf-seo-keyword::before { content: '→ '; color: var(--red); }
.hf-faqs { display: grid; grid-template-columns: 1fr; gap: 12px; }
.hf-faq {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
}
.hf-faq-q {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.012em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hf-faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
}
.hf-faq-open .hf-faq-q::after { content: '−'; }
.hf-faq-a {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* Final CTA */
.hf-final {
  background: var(--red);
  color: white;
  border-radius: 24px;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hf-final::before, .hf-final::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hf-final::before { top: -200px; left: -100px; }
.hf-final::after { bottom: -200px; right: -100px; }
.hf-final > * { position: relative; z-index: 1; }
.hf-final-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.hf-final-h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 14px;
  color: white;
}
.hf-final-sub {
  margin-top: 18px;
  font-size: 18px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  line-height: 1.5;
  text-align: center;
}
.hf-final-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.hf-btn-on-red {
  background: white;
  color: var(--ink) !important;
  border-color: white;
}
.hf-btn-on-red:hover { background: var(--ink); color: white !important; }
.hf-btn-on-red-ghost {
  background: transparent;
  color: white !important;
  border-color: rgba(255,255,255,0.5);
}
.hf-btn-on-red-ghost:hover { background: white; color: var(--ink) !important; border-color: white; }

/* Footer */
.hf-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.hf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.hf-footer-col h5 {
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 16px;
}
.hf-footer-col li {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .15s;
}
.hf-footer-col li:hover { color: var(--red); }
.hf-footer-col li a {
  color: inherit;
  text-decoration: none;
}
.hf-footer-col li a:hover { color: var(--red); }
.hf-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-4);
}
.hf-footer-tagline {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 24px;
  max-width: 320px;
  line-height: 1.3;
}
.hf-footer-contact {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.01em;
}
.hf-footer-contact a {
  color: var(--ink-2);
  text-decoration: none;
}
.hf-footer-contact a:hover { color: var(--red); }
.hf-footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.hf-footer-bottom a:hover { color: var(--red); }


/* ============================================================
   Responsive — tablet (≤1024) and mobile (≤640)
   ============================================================ */

/* Make wrap fluid below container width */
@media (max-width: 1264px) {
  .hf-wrap { padding: 0 24px; }
}

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  .hf-nav { padding: 22px 0; gap: 24px; }
  /* Collapse the inline nav into a hamburger drawer */
  .hf-nav-links { display: none; }
  .hf-nav-phone { display: none; }
  .hf-nav-book { display: none; }
  .hf-nav-burger { display: inline-flex; }
  .hf-nav-cta { gap: 10px; margin-left: auto; }
  .hf-btn { padding: 10px 16px; font-size: 13px; }

  .hf-hero { padding: 40px 0 56px; }
  .hf-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hf-hero-visual { max-width: 480px; margin: 0 auto; }
  /* Hide floating cards once the hero collapses — they end up floating
     in empty space beside the centered photo at this width. */
  .hf-hero-card { display: none; }
  .hf-h1 { font-size: clamp(40px, 7vw, 64px); }
  .hf-hero-sub { font-size: 17px; margin-top: 28px; }

  .hf-stats { grid-template-columns: repeat(5, 1fr); }
  .hf-stat-num { font-size: 26px; }

  .hf-ps-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hf-pillars { grid-template-columns: 1fr; }
  .hf-tiers { grid-template-columns: repeat(5, 1fr); }
  .hf-tier-price { font-size: 28px; }

  .hf-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hf-obj-grid { grid-template-columns: repeat(2, 1fr); }

  .hf-founder { grid-template-columns: 1fr; gap: 36px; }
  .hf-founder-photo { max-width: 380px; }

  .hf-testimonials { grid-template-columns: 1fr; }

  .hf-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .hf-footer-grid > .hf-footer-col:nth-child(4) { grid-column: 1 / -1; }
}

/* ---------- Mobile (≤640px) ---------- */
@media (max-width: 640px) {
  .hf-wrap { padding: 0 18px; }

  .hf-nav { padding: 18px 0; gap: 12px; }
  /* Tablet rules already hide .hf-nav-links / -phone / -book and show burger */
  .hf-btn { padding: 9px 14px; font-size: 12px; }
  .hf-nav-drawer-panel { padding: 88px 22px 32px; }
  .hf-nav-drawer-links li a { font-size: 22px; padding: 16px 4px; }

  .hf-hero { padding: 28px 0 40px; }
  .hf-hero-grid { gap: 40px; }
  .hf-h1 { font-size: clamp(36px, 9vw, 48px); }
  .hf-hero-sub { font-size: 16px; max-width: 100%; margin-top: 20px; }
  .hf-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hf-hero-cta .hf-btn { justify-content: center; }
  .hf-hero-trust { margin-top: 22px; }

  /* Hide floating cards on mobile — they overflow */
  .hf-hero-card { display: none; }
  .hf-hero-visual { aspect-ratio: 1 / 1; }

  .hf-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .hf-stat { padding: 24px 16px; border-bottom: 1px solid var(--line); }
  .hf-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .hf-stat:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
  .hf-stat-num { font-size: 24px; }
  .hf-stat-lbl { font-size: 12px; }

  .hf-section-h, .hf-h2 { font-size: clamp(28px, 7vw, 38px) !important; }
  .hf-section-sub { font-size: 16px; margin-top: 20px; }

  .hf-ps-grid { grid-template-columns: 1fr; }
  .hf-tiers { grid-template-columns: 1fr; }
  .hf-tier { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 24px; }
  .hf-tier:last-child { border-bottom: 0; }

  .hf-pillar-price { font-size: 36px; }
  .hf-pillar-popular { transform: none; margin: 12px 0; }
  .hf-pillars { gap: 14px; }

  .hf-steps { grid-template-columns: 1fr; gap: 24px; }
  .hf-obj-grid { grid-template-columns: 1fr; }

  .hf-final { padding: 56px 24px; }
  .hf-final-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hf-final-cta .hf-btn { justify-content: center; width: 100%; }
  .hf-final-sub { font-size: 16px; }

  .hf-footer { padding: 56px 0 32px; }
  .hf-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hf-footer-grid > .hf-footer-col:first-child { grid-column: 1 / -1; }
  .hf-footer-grid > .hf-footer-col:nth-child(4) { grid-column: 1 / -1; }
  .hf-footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; text-align: left; }
}
