/* ============================================================
   TheHonestExit.com — Design System
   Colours: Navy #1B3A6B | Red #C0392B | Dark text #2C2C2C
   Typography: Inter (Google Fonts)
   ============================================================ */

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

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

:root {
  --navy:   #1B3A6B;
  --red:    #C0392B;
  --dark:   #2C2C2C;
  --mid:    #4A4A4A;
  --light:  #F5F7FA;
  --white:  #FFFFFF;
  --border: #DDE3ED;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  max-width: 1160px;
  margin: 0 auto;
}
.site-nav__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.site-nav__brand:hover { text-decoration: none; opacity: 0.9; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s;
}
.site-nav__link:hover { color: var(--white); text-decoration: none; }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.btn-nav:hover { background: #a93226; text-decoration: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ── Hero Sections ───────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
}
.hero--short { padding: 64px 0 56px; }

.hero__pre {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__h1 .red { color: var(--red); }

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}
.btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--primary:hover { background: #e8ecf5; text-decoration: none; color: var(--navy); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover { background: #a93226; text-decoration: none; color: var(--white); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: #152d55; text-decoration: none; color: var(--white); }

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px;
  padding: 20px 0;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 16px;
}
.trust-strip__item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--grey { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }

.section__h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.section__h2--white { color: var(--white); }

.section__intro {
  font-size: 17px;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── Contrast Grid (Reality Check) ───────────────────────── */
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.contrast-grid__header { display: grid; grid-template-columns: 1fr 1fr; }
.contrast-grid__header-left  { background: #fee; padding: 16px 24px; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--red); }
.contrast-grid__header-right { background: #e8ecf5; padding: 16px 24px; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--navy); }
.contrast-row { display: contents; }
.contrast-row__left,
.contrast-row__right { padding: 20px 24px; font-size: 15px; border-top: 1px solid var(--border); line-height: 1.5; }
.contrast-row__left  { background: var(--white); color: var(--mid); font-style: italic; }
.contrast-row__right { background: #f0f3f8; color: var(--dark); font-weight: 600; }

/* ── About Section ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.about-photo { width: 200px; height: 240px; border-radius: 6px; background: var(--border); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo__placeholder {
  width: 200px; height: 240px; border-radius: 6px;
  background: #d0d7e8; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 13px; font-weight: 600; text-align: center; padding: 16px;
  border: 2px dashed var(--navy);
}
.about-body p { margin-bottom: 16px; color: var(--mid); line-height: 1.7; }

/* ── Lead Magnet ─────────────────────────────────────────── */
.lead-magnet-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
.guide-cover { width: 260px; border-radius: 6px; overflow: hidden; background: var(--border); }
.guide-cover__placeholder {
  width: 260px; height: 340px; border-radius: 6px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; text-align: center; padding: 16px;
  border: 2px dashed rgba(255,255,255,0.3);
}
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bullet-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.bullet-list li::before { content: '●'; color: var(--red); font-size: 10px; flex-shrink: 0; margin-top: 4px; }

/* ── Email Capture Form ───────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  max-width: 480px;
}
.form-card__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 6px; }
.form-input {
  display: block; width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-size: 15px; font-family: inherit; color: var(--dark);
  transition: border-color 0.15s;
}
.form-input:focus { outline: none; border-color: var(--navy); }
.form-input.error { border-color: var(--red); }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.form-small { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.form-small--dark { color: var(--mid); }
.form-success { display: none; background: #e8f5e9; border: 1px solid #4caf50; border-radius: 4px; padding: 16px; font-size: 14px; color: #2e7d32; }

/* ── Sector Cards ────────────────────────────────────────── */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sector-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 24px;
}
.sector-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sector-card p  { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── Financial Criteria ───────────────────────────────────── */
.criteria-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.criteria-block { text-align: center; padding: 24px 16px; }
.criteria-block__label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.criteria-block__value { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* ── Pull Quote ───────────────────────────────────────────── */
.pull-quote { padding: 56px 0; background: var(--navy); text-align: center; }
.pull-quote blockquote { font-size: clamp(18px, 2.5vw, 24px); font-style: italic; color: rgba(255,255,255,0.9); max-width: 760px; margin: 0 auto 20px; line-height: 1.6; }
.pull-quote cite { font-size: 15px; color: rgba(255,255,255,0.6); font-style: normal; }
.pull-quote .cta-wrap { margin-top: 32px; }

/* ── Reality Check Sections (for-sellers) ─────────────────── */
.reality-section { padding: 64px 0; }
.reality-section h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.reality-section p  { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.callout {
  border-left: 4px solid var(--red);
  background: #fff5f5;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}
.stat-block {
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  margin: 20px 0;
}

/* ── Checklist Card ───────────────────────────────────────── */
.checklist-card { background: var(--white); border-radius: 8px; padding: 36px; border: 1.5px solid var(--border); }
.checklist-card h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--dark); }
.check-box { width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 3px; flex-shrink: 0; margin-top: 2px; }
.red-callout { background: #fff0ef; border: 1.5px solid var(--red); border-radius: 6px; padding: 20px 24px; margin-top: 28px; color: var(--red); font-style: italic; font-size: 15px; line-height: 1.6; }

/* ── Reassurance Strip ───────────────────────────────────── */
.reassurance-strip { background: var(--light); padding: 40px 0; }
.reassurance-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 16px; }
.reassurance-strip__item strong { display: block; font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.reassurance-strip__item span  { font-size: 14px; color: var(--mid); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #132d55; color: rgba(255,255,255,0.65); padding: 48px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-nav a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; text-align: center; }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .site-nav__links.open { display: flex; }
  .hamburger { display: flex; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 10px; }
  .contrast-grid { grid-template-columns: 1fr; }
  .contrast-grid__header { grid-template-columns: 1fr; }
  .contrast-row__left, .contrast-row__right { border-top: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1fr; }
  .lead-magnet-grid { grid-template-columns: 1fr; }
  .guide-cover__placeholder { width: 100%; }
  .sector-grid { grid-template-columns: 1fr; }
  .criteria-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .reassurance-strip__inner { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; align-items: center; }
}
