/* === Freedom AZ Real Estate — style.css === */
/* UX/UI Audit Pass — 2026-06-15 */

/* ===============================
   DESIGN TOKENS
   =============================== */
:root {
  /* Brand */
  --color-accent:       #C8972B;
  --color-accent-dark:  #A67A1E;
  --color-accent-soft:  rgba(200, 151, 43, 0.10);

  /* Light body theme */
  --color-bg:              #FFFFFF;
  --color-surface:         #F9F8F6;
  --color-text:            #1A1A1A;
  --color-text-primary:    #1A1A1A;
  --color-muted:           #555555;
  --color-text-secondary:  #555555;
  --color-border:          #E5E2DC;

  /* Dark zones (nav + footer) — preserves white logo visibility */
  --color-nav-bg:       rgba(13, 13, 13, 0.96);
  --color-footer-bg:    #161616;
  --color-footer-muted: #888880;
  --color-footer-border:#2a2a2a;

  /* Components */
  --radius-card:       8px;
  --shadow-card:       0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 6px 20px rgba(0, 0, 0, 0.10);
  --max-width:         920px;

  /* Typography */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ===============================
   RESET
   =============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}
p { max-width: 68ch; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

/* ===============================
   LAYOUT
   =============================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }

/* ===============================
   NAV (stays dark — white logos require dark bg)
   =============================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}

.nav-powered { display: flex; align-items: center; gap: 6px; }

.nav-powered-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-incyte-logo { height: 13px; width: auto; }
.nav-logo        { height: 64px; width: auto; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.12s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: #fff; }

.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

/* Nav CTA pill button */
.nav-cta {
  display: inline-block;
  padding: 8px 18px;
  background: var(--color-accent);
  color: #0d0d0d !important;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: none !important;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  background: var(--color-accent-dark) !important;
  color: #0d0d0d !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 151, 43, 0.35);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}

/* Mobile nav */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #111;
    border-bottom: 1px solid var(--color-footer-border);
    padding: 8px 0 12px;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  /* CTA at top of mobile menu */
  .nav-links li:has(.nav-cta) { padding: 12px 24px 6px; }
  .nav-cta { display: block !important; text-align: center; border-radius: 6px !important; }

  .nav-links a {
    display: block;
    padding: 10px 24px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-links a.active {
    background: rgba(200, 151, 43, 0.12);
    color: var(--color-accent);
  }
}

/* ===============================
   BUTTONS
   =============================== */
.btn,
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary, .btn.btn-primary {
  background: var(--color-accent);
  color: #0d0d0d;
  border-color: var(--color-accent);
}

.btn-primary:hover, .btn.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #0d0d0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.btn-primary:active, .btn.btn-primary:active { transform: translateY(0); }

.btn-outline, .btn.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover, .btn.btn-secondary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn-outline:active, .btn.btn-secondary:active { transform: translateY(0); }

/* ===============================
   CARDS
   =============================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  border-top: 3px solid var(--color-accent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.card h3 { margin-bottom: 10px; color: var(--color-text); }
.card p  { color: var(--color-muted); font-size: 0.95rem; }

.card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-bottom: 14px;
  display: block;
}

.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}
.card-link:hover { color: var(--color-accent-dark); }

/* ===============================
   GRIDS
   =============================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===============================
   HERO
   =============================== */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  /* TODO: Replace gradient with photo → background-image: url('/Images/hero-phoenix.jpg'); */
  background-color: #1C1208;
  background-image: linear-gradient(160deg, #0F0C08 0%, #1D1610 50%, #0F1318 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.68) 40%, rgba(0,0,0,0.20) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 16px;
  max-width: none;
}

.hero h1  { color: #fff; margin-bottom: 20px; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ===============================
   SECTION CHROME
   =============================== */
.section-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-title { margin-bottom: 14px; }
.section-intro { color: var(--color-muted); margin-bottom: 48px; max-width: 60ch; }

/* ===============================
   SOCIAL PROOF
   =============================== */
.social-proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

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

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
  max-width: none;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.stat-bar {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 28px 0 0;
  border-top: 1px solid var(--color-border);
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

/* ===============================
   CITY PILLS / MARKETS
   =============================== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.tag-list a {
  display: inline-block;
  padding: 6px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.88rem;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.tag-list a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ===============================
   CTA STRIP
   =============================== */
.cta-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p  { color: var(--color-muted); margin: 0 auto 28px; max-width: 52ch; }

/* ===============================
   TRUST BULLETS
   =============================== */
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.trust-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Checklist variant (checkmarks) */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.checklist li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===============================
   PAGE HEADER
   =============================== */
.page-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.page-header h1 { margin-bottom: 10px; }
.page-subhead {
  color: var(--color-accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Page intro paragraph */
.page-intro {
  font-size: 1.125rem;
  color: var(--color-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===============================
   AREAS PAGE
   =============================== */
.area-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}
.area-section:last-of-type { border-bottom: none; }
.area-section h2 { margin-bottom: 20px; }
.area-section p  { color: var(--color-muted); margin-bottom: 14px; max-width: 68ch; }
.area-section p:last-child { margin-bottom: 0; }

/* ===============================
   FAQ
   =============================== */
.faq-category { padding: 48px 0 16px; }
.faq-category h2 {
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}
.faq-item { margin-bottom: 36px; }
.faq-item h3 { color: var(--color-accent); margin-bottom: 10px; font-size: 1.05rem; }
.faq-item p  { color: var(--color-muted); max-width: 72ch; }

/* ===============================
   CONTACT
   =============================== */
.contact-info h2 { margin-bottom: 24px; }

.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.15s;
}
.contact-phone:hover { color: var(--color-accent-dark); }

.contact-email { display: block; margin-bottom: 28px; font-size: 1rem; }
.contact-detail { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 6px; }
.contact-detail strong { color: var(--color-text); }
.contact-divider { border: none; border-top: 1px solid var(--color-border); margin: 28px 0; }

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.15rem; }

/* ===============================
   FORMS — INPUTS
   =============================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-muted);
  font-weight: 600;
}

input, select, textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 151, 43, 0.15);
}

select option { background: var(--color-bg); color: var(--color-text); }
textarea { resize: vertical; min-height: 100px; }

.form-submit { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--color-muted); margin-top: 12px; }

.label-note {
  color: var(--color-muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.helper-text {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ===============================
   FORM SECTION WRAPPERS
   =============================== */
.form-section-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 20px;
}

.form-section-wrap.contact-section {
  background: var(--color-bg);
  border-color: var(--color-accent);
  border-width: 2px;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.form-section-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: #0d0d0d;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-section-title {
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0;
  border: none;
  padding: 0;
}

/* Legacy form-section (contact page) */
.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

/* ===============================
   CHECKBOX CHIPS
   =============================== */
.checkbox-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.checkbox-chip { display: inline-flex; }

.checkbox-chip input[type="checkbox"] { display: none; }

.checkbox-chip label {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  transition: all 0.12s ease;
  line-height: 1.4;
  user-select: none;
}

.checkbox-chip label:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.checkbox-chip input[type="checkbox"]:checked + label {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Radio chips */
.radio-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.radio-chip { display: inline-flex; }
.radio-chip input[type="radio"] { display: none; }

.radio-chip label {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text);
  transition: all 0.12s ease;
  line-height: 1.4;
  user-select: none;
}

.radio-chip label:hover { border-color: var(--color-accent); color: var(--color-accent); }

.radio-chip input[type="radio"]:checked + label {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ===============================
   VALUE STRIP (sellers page)
   =============================== */
.value-strip {
  background: var(--color-accent);
  border-radius: var(--radius-card);
  padding: 20px 28px;
  margin-bottom: 28px;
}

.value-strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  max-width: none;
}

.value-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  list-style: none;
}

.value-strip-list li {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

/* ===============================
   MARKET NOTE CALLOUT (sellers page)
   =============================== */
.market-note {
  border-left: 3px solid var(--color-accent);
  padding: 14px 16px;
  background: var(--color-surface);
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  max-width: none;
  line-height: 1.65;
}

.market-note strong { color: var(--color-text); }

/* ===============================
   CREDENTIALS
   =============================== */
.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential-list li {
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* ===============================
   SPECIALTY LIST
   =============================== */
.specialty-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}
@media (max-width: 480px) { .specialty-list { grid-template-columns: 1fr; } }
.specialty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.specialty-list li::before {
  content: '▸';
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===============================
   BIO / ABOUT
   =============================== */
.bio-section p {
  color: var(--color-muted);
  margin-bottom: 18px;
  max-width: 68ch;
}
.bio-section p:last-child { margin-bottom: 0; }

.bio-headshot {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-border);
  margin-bottom: 28px;
  display: block;
}

/* ===============================
   LEAD FORMS (buyers / sellers)
   =============================== */
.lead-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .lead-layout { grid-template-columns: 1fr; }
  .lead-sidebar { order: -1; } /* sidebar above form on mobile */
}

.lead-sidebar { position: sticky; top: 20px; }

/* ===============================
   FOOTER (3-column, stays dark)
   =============================== */
footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-footer-border);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-footer-border);
}

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

/* Col 1 — Logo + tagline */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-logo-freedom { height: 52px; width: auto; }

.footer-powered { display: flex; align-items: center; gap: 8px; }

.footer-powered-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-footer-muted);
}

.footer-logo-incyte { height: 40px; width: auto; }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-footer-muted);
  line-height: 1.6;
  max-width: 26ch;
}

/* Col 2 — Quick links */
.footer-col-links h4,
.footer-col-contact h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav-links a {
  font-size: 0.88rem;
  color: var(--color-footer-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav-links a:hover { color: var(--color-accent); }

/* Col 3 — Contact */
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
  line-height: 1.2;
}
.footer-phone:hover { color: var(--color-accent-dark); }

.footer-email {
  display: block;
  font-size: 0.85rem;
  color: var(--color-footer-muted);
  margin-bottom: 18px;
  transition: color 0.15s;
}
.footer-email:hover { color: var(--color-accent); }

.footer-schedule {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-schedule:hover { background: var(--color-accent); color: #0d0d0d; }

/* Footer bottom bar */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-text {
  font-size: 0.76rem;
  color: var(--color-footer-muted);
  line-height: 1.9;
  max-width: none;
  text-align: center;
}

.footer-bottom-text a { color: var(--color-footer-muted); }
.footer-bottom-text a:hover { color: var(--color-accent); }

/* ===============================
   UTILITY
   =============================== */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .hero { min-height: 380px; }
  .hero-inner { padding: 52px 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .faq-category { padding: 36px 0 8px; }
  .stat-bar { gap: 28px; }
  .value-strip-list { flex-direction: column; gap: 6px; }
}
