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

/* ============================================================
   We Buy Any House In Florida
   v1 — Minnect-faithful: centered statement, massive light type,
   alternating black + cream, coral accent
   ============================================================ */

:root {
  color-scheme: light;

  /* Restored original Carrot palette */
  --ink: #032e88;          /* deep navy — primary dark / hero */
  --ink-2: #0a3aa0;        /* lighter navy */
  --ink-3: #1346b8;        /* hover navy */
  --ink-soft: #2b59c4;
  --paper: #ffffff;
  --paper-2: #eef3fb;      /* soft mint-tinted off-white (original) */
  --paper-3: #e7eef8;      /* slightly deeper soft surface */
  --paper-warm: #eef3fb;
  --text: #13243a;         /* deep navy text on light */
  --text-2: #4a5a72;
  --text-3: #5d6a7a;       /* original muted */
  --muted: #8b95a5;
  --line: #dfe7f2;         /* mint-tinted line */
  --line-2: #ccd7e8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-dark-2: rgba(255, 255, 255, 0.22);

  /* Coral CTA + gold accent (original) */
  --accent: #3f9410;       /* warm coral */
  --accent-2: #2f7a08;
  --accent-3: #245f06;
  --accent-soft: #e8f3dd;

  --navy: #032e88;
  --green: #0c9f4a;        /* original green */
  --green-dark: #087737;
  --gold: #f2a900;         /* original gold */
  --gold-dark: #c98a00;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 3px rgba(0, 0, 0, .06);
  --shadow: 0 8px 24px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .16), 0 6px 18px rgba(0, 0, 0, .08);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, .55);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: min(1180px, calc(100vw - 40px));
  --container-wide: min(1320px, calc(100vw - 40px));

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);
}

/* Legacy aliases */
:root {
  --bg: var(--paper);
  --bg-soft: var(--paper-2);
  --bg-blue: var(--ink);
  --bg-blue-2: var(--ink-2);
  --surface: var(--paper);
  --surface-tint: var(--paper-3);
  --coral: var(--accent);
  --green-dark: var(--accent-2);
  --line-strong: var(--line-2);
  --font: var(--font-sans);
  --shadow-soft: var(--shadow-sm);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--accent); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 500;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem); font-weight: 400; letter-spacing: -.045em; }
h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 3.6rem); font-weight: 400; letter-spacing: -.04em; }
h3 { font-size: clamp(1.3rem, 0.7vw + 1rem, 1.55rem); font-weight: 600; letter-spacing: -.015em; }
h4 { font-size: 1.15rem; font-weight: 600; }

.text-italic { font-style: italic; font-weight: 400; }

:focus-visible {
  outline: 3px solid rgba(240, 101, 67, .55);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: #fff; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container { margin-inline: auto; width: var(--container); }
.container-wide { width: var(--container-wide); }

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xs);
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ============================================================
   HEADER / NAV — Minnect: dark header on dark hero
   ============================================================ */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}

body.has-light-header .site-header,
.site-header.is-light {
  position: sticky;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1.05;
}
.brand:hover { color: var(--accent); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(240, 101, 67, .35);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
}
.brand-text span { display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.site-nav a[aria-current="page"] { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 4px;
}
.phone-link:hover { color: var(--accent); }

/* When header is over light background (interior pages, blog) */
.site-header:not(.is-dark) ~ main > .page-hero:first-child,
.site-header:not(.is-dark) ~ main > .hero {
  /* hero compensates for absolute header */
}

/* Make header turn solid white background after non-hero pages */
main:not(:has(> .hero)):not(:has(> .page-hero)) ~ .site-header,
body:not(:has(.hero, .page-hero)) .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

/* Light-header treatment when no hero is present */
body:not(:has(.hero)):not(:has(.page-hero)) .site-header .brand,
body:not(:has(.hero)):not(:has(.page-hero)) .site-header .site-nav a,
body:not(:has(.hero)):not(:has(.page-hero)) .site-header .phone-link {
  color: var(--text);
}
body:not(:has(.hero)):not(:has(.page-hero)) .site-header .site-nav a:hover {
  background: var(--paper-3);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  font: inherit;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    inset: 100% 16px auto 16px;
    background: #1a1c20;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 14px;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    box-shadow: var(--shadow-dark);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; border-radius: var(--radius-sm); color: rgba(255, 255, 255, .85); }
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .header-actions .phone-link { display: none; }
}

/* ============================================================
   BUTTONS — Minnect pill pairs
   ============================================================ */

.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: #fff;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-coral {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(240, 101, 67, .28);
}
.btn-coral:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover { background: var(--paper-2); color: var(--ink); border-color: var(--paper-2); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .7); color: #fff; }

.btn-lg { padding: 17px 34px; font-size: 16px; }

/* ============================================================
   EYEBROW — Minnect pill
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.eyebrow.is-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
}

/* ============================================================
   HERO — Hybrid: Minnect typography + lead form on right
   ============================================================ */

.hero {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 140px 0 80px;
  isolation: isolate;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 30% 35%, rgba(240, 101, 67, .12), transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(15, 30, 55, .5), transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -20% -20% 0 -20%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .12;
  z-index: 0;
  filter: saturate(.6) brightness(.55);
}

/* Background video support — used when /assets/video/hero.mp4 exists */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
  pointer-events: none;
  filter: saturate(.85) brightness(.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .35) 50%, rgba(0, 0, 0, .8) 100%),
    radial-gradient(60% 80% at 30% 40%, rgba(240, 101, 67, .12), transparent 65%);
  z-index: 1;
  pointer-events: none;
}
/* When a video is present, dim the fallback background image */
.hero:has(.hero-bg-video[src]:not([src=""])) ::after,
.hero:has(.hero-bg-video) ::after { opacity: 0; }

.hero > .container { position: relative; z-index: 2; }

/* Centered single-column hero (Minnect-style) */
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
.hero-stack > .eyebrow { margin-bottom: 36px; }
.hero-stack h1 {
  font-size: clamp(3rem, 8.5vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.0;
  margin: 0 0 32px;
  color: #ffffff;
}
.hero-stack h1 .hero-accent {
  display: inline-block;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .82);
  letter-spacing: -.05em;
}
.hero-stack .hero-lead {
  font-size: clamp(1.05rem, .35vw + 1rem, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .76);
  max-width: 700px;
  margin: 0 auto 40px;
}
.hero-centered { min-height: 90vh; padding: 130px 0 90px; }
@media (max-width: 880px) {
  .hero-centered { min-height: 70vh; padding: 110px 0 64px; }
  .hero-stack h1 { font-size: clamp(2.6rem, 12vw, 4.6rem); }
}
.hero-actions-center {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Two-column hybrid hero (the new default) */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.5vw + .8rem, 5.4rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.0;
  margin: 0 0 24px;
  color: #fff;
}
.hero-copy h1 .hero-accent {
  display: inline-block;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  letter-spacing: -.045em;
}
.hero-copy > .eyebrow { margin-bottom: 22px; }
.hero-copy .hero-lead {
  font-size: clamp(1.05rem, .3vw + 1rem, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  margin: 0 0 24px;
}
.hero-copy p:not(.hero-lead) {
  font-size: 17px;
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .hero { padding: 110px 0 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stack h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-copy h1 { font-size: clamp(2.6rem, 10vw, 4.2rem); }
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 15.5px;
}
.check-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.talk-line {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 16px 16px;
  font-size: 14.5px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.talk-line a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .2em;
  text-decoration-thickness: 1.5px;
  font-weight: 700;
}
.talk-line a:hover { color: var(--accent); }

/* ============================================================
   FORM SECTION (Minnect: separate section below hero)
   ============================================================ */

.section-form {
  background: var(--paper-2);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.form-section-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.form-section-copy h2 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3.6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.03;
  margin: 0 0 18px;
  color: var(--text);
}
.form-section-copy h2 .text-italic { font-style: italic; font-weight: 300; color: var(--text-2); }
.form-section-copy > p {
  font-size: 17.5px;
  color: var(--text-2);
  margin: 0 0 26px;
  max-width: 520px;
  line-height: 1.55;
}
.form-section-copy .proof-list {
  margin: 0 0 24px;
  gap: 14px;
}
.form-section-copy .proof-list li { color: var(--text); font-size: 16px; }
.form-section-copy .proof-list .check-dot {
  background: var(--accent);
  color: #fff;
}
.form-section-note {
  font-size: 15px !important;
  color: var(--text-3) !important;
  font-style: italic;
  margin: 0 !important;
}
.form-section-note a { color: var(--accent-2); font-weight: 600; font-style: normal; }
.section-form .lead-card {
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .form-section-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-form { padding: 64px 0; }
}

/* Lead card */
.lead-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}
.hero .lead-card,
.hero-hybrid .lead-card {
  backdrop-filter: blur(8px);
}
.lead-card h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--text);
}
.lead-card > p {
  color: var(--text-2);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.lead-form { display: grid; gap: 12px; }
.lead-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.lead-form textarea { border-radius: var(--radius-sm); resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 13px; color: var(--text-3); margin-top: 4px; }
.form-status { font-size: 14px; color: var(--green); font-weight: 600; min-height: 1em; }

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 110px 0;
  background: var(--paper);
}
.section-tight { padding: 80px 0; }
.section-soft { background: var(--paper-2); }
.section-cream { background: var(--paper-3); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, .92); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, .76); }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
}

.section-heading {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.section-heading h2 {
  font-size: clamp(2.2rem, 3vw + 1rem, 4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.section-heading h2 .text-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
}
.section-dark .section-heading h2 .text-italic {
  color: rgba(255, 255, 255, .7);
}
.section-heading p {
  color: var(--text-2);
  font-size: 18px;
  margin-top: 18px;
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-heading p { color: rgba(255, 255, 255, .7); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   BENTO / FEATURE GRID
   ============================================================ */

.bento-section { padding: 80px 0; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.bento-card h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.bento-card p {
  color: var(--text-2);
  font-size: 15px;
  margin: 0;
}
.bento-card.is-media {
  grid-column: span 4;
  padding: 0;
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.bento-card.is-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .5;
}
.bento-card.is-media .bento-caption {
  position: relative;
  z-index: 1;
  padding: 32px;
  margin-top: auto;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 80%);
  color: #fff;
}
.bento-card.is-media h3 { color: #fff; }
.bento-card.is-media p { color: rgba(255, 255, 255, .88); }

.bento-card.is-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.bento-card.is-accent h3, .bento-card.is-accent p { color: #fff; }
.bento-card.is-accent .bento-stat { color: #fff; }

.bento-stat {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.5vw + 1rem, 4rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

@media (max-width: 880px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card { grid-column: span 1; }
  .bento-card.is-media { grid-column: span 2; min-height: 260px; }
}
@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.is-media { grid-column: span 1; }
}

/* ============================================================
   STEPS
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step h3 { font-size: 1.2rem; margin: 16px 0 8px; font-weight: 600; }
.step p { color: var(--text-2); font-size: 15px; margin: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
.section-dark .step {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
}
.section-dark .step h3 { color: #fff; }
.section-dark .step p { color: rgba(255, 255, 255, .7); }
.section-dark .step-num { background: var(--accent); }

@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   VIDEO CARD
   ============================================================ */

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}
.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}
.video-card-copy {
  position: relative;
  z-index: 1;
  padding: 36px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .85) 100%);
  color: #fff;
}
.video-card-copy h3 { color: #fff; font-size: 1.7rem; letter-spacing: -.025em; font-weight: 400; }
.video-card-copy p { color: rgba(255, 255, 255, .9); margin: 0; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */

.compare-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}
.compare-row > div {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.compare-row > div:last-child { border-right: 0; }
.compare-row:last-child > div { border-bottom: 0; }
.compare-row:first-child > div {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 0;
}
.compare-row:first-child > div:last-child { background: var(--accent); }
.compare-row > div:first-child { font-weight: 600; background: var(--paper-2); color: var(--text); }

/* ============================================================
   SERVICE GRID
   ============================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.service-card h3 { font-size: 1.2rem; margin: 0 0 8px; letter-spacing: -.02em; }
.service-card h3 a { color: var(--text); }
.service-card h3 a::after {
  content: " →";
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.service-card:hover h3 a { color: var(--accent); }
.service-card:hover h3 a::after { opacity: 1; transform: translateX(2px); }
.service-card p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ============================================================
   CARD GRID / REVIEWS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 16.5px; color: var(--text); margin: 0 0 16px; line-height: 1.55; }
.review-card h3 {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  font-weight: 600;
  margin: 0;
}
.review-link {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
}
.review-link a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .2em;
}
.review-link a:hover { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { display: grid; gap: 10px; margin-bottom: 16px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-list details[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 60px 20px 24px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text);
  position: relative;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  color: var(--text-2);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-list details > *:not(summary) {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
}
.faq-list details p { margin: 0 0 .75em; }

/* ============================================================
   BLOG CARDS
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--line-2); }
.blog-card time {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
}
.blog-card h3, .blog-card h2 {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: -.02em;
  font-weight: 600;
  line-height: 1.3;
}
.blog-card h3 a, .blog-card h2 a { color: var(--text); }
.blog-card:hover h3 a, .blog-card:hover h2 a { color: var(--accent); }
.blog-card p { color: var(--text-2); font-size: 14.5px; margin: 0; }

/* ============================================================
   BRAND BAND — Minnect-style red CTA band
   ============================================================ */

.brand-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.brand-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 80% 50%, rgba(255, 255, 255, .14), transparent 70%),
    radial-gradient(40% 60% at 10% 20%, rgba(0, 0, 0, .15), transparent 70%);
  pointer-events: none;
}
.brand-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  position: relative;
}
.brand-band-inner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3vw + 1rem, 4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0 0 8px;
  line-height: 1.0;
}
.brand-band-accent {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .85);
}
.brand-band-inner p { color: rgba(255, 255, 255, .9); margin: 0; font-size: 17px; max-width: 480px; }
.brand-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .brand-band-inner { flex-direction: column; align-items: flex-start; }
  .brand-band { padding: 72px 0; }
}

/* ============================================================
   CTA BAND — Stacked Minnect ending
   ============================================================ */

.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(240, 101, 67, .15), transparent 60%);
  pointer-events: none;
}

/* Default horizontal CTA */
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 2.4vw + 1rem, 2.8rem); margin: 0 0 6px; max-width: 640px; }
.cta-inner p { color: rgba(255, 255, 255, .76); margin: 0; }

/* Minnect stacked CTA */
.cta-band-stack { padding: 130px 0; }
.cta-stack {
  text-align: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.cta-stack h2 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw + 1rem, 5.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.0;
  margin: 0 0 24px;
}
.cta-accent {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .8);
}
.cta-stack p { color: rgba(255, 255, 255, .76); margin: 0 auto 36px; max-width: 540px; font-size: 18px; }

@media (max-width: 720px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-stack { padding: 80px 0; }
}

/* ============================================================
   PAGE HERO (interior pages, blog posts)
   ============================================================ */

.page-hero {
  background: #000;
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(240, 101, 67, .12), transparent 65%),
    radial-gradient(60% 60% at 50% 100%, rgba(15, 30, 55, .55), transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; text-align: center; max-width: 900px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw + 1rem, 5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 auto;
}
.page-hero p {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  margin: 18px auto 0;
  max-width: 620px;
  line-height: 1.55;
}
.page-hero .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .88);
}

.breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 6px; opacity: .5; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) { .article-layout { grid-template-columns: 1fr; } }

.article-content {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--text);
  max-width: 720px;
}
.article-content h2 {
  font-size: 2rem;
  margin-top: 2.2em;
  margin-bottom: .6em;
  letter-spacing: -.03em;
  font-weight: 500;
}
.article-content h3 {
  font-size: 1.35rem;
  margin-top: 1.8em;
  margin-bottom: .5em;
  font-weight: 600;
  letter-spacing: -.02em;
}
.article-content h4 { font-size: 1.1rem; margin-top: 1.4em; margin-bottom: .4em; }
.article-content p { margin: 0 0 1.2em; }
.article-content ul, .article-content ol { padding-left: 1.5em; margin: 0 0 1.5em; }
.article-content li { margin-bottom: .5em; }
.article-content a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: .15em;
}
.article-content img { border-radius: var(--radius); margin: 1.5em 0; }
.article-content blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  font-style: italic;
}
.article-content figure { margin: 1.5em 0; }
.article-content figcaption { font-size: 13.5px; color: var(--text-3); text-align: center; margin-top: 6px; }
.article-meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}
.sidebar-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-card h2 { color: #fff; font-size: 1.4rem; letter-spacing: -.02em; margin: 0 0 10px; font-weight: 500; }
.sidebar-card p { color: rgba(255, 255, 255, .76); font-size: 14.5px; margin-bottom: 14px; }
.sidebar-card .lead-form input {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}
.sidebar-card .lead-form input::placeholder { color: rgba(255, 255, 255, .45); }
.sidebar-card .lead-form input:focus { background: rgba(255, 255, 255, .12); border-color: var(--accent); }
.sidebar-card .lead-form label { color: rgba(255, 255, 255, .7); }
.sidebar-card .form-note, .sidebar-card .form-status { color: rgba(255, 255, 255, .6); }
.sidebar-card .lead-card { background: transparent; box-shadow: none; border: 0; padding: 0; }
.sidebar-card .lead-card h2 { color: #fff; }
.sidebar-card .lead-card > p { color: rgba(255, 255, 255, .76); }

.sidebar-card-light {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card-light h3 {
  font-size: 11px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-3);
  font-weight: 700;
}
.sidebar-card-light ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card-light a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.sidebar-card-light li:last-child a { border-bottom: 0; }
.sidebar-card-light a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 88px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-grid h2 {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid h3 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin: 0 0 18px;
}
.footer-grid p { color: rgba(255, 255, 255, .65); font-size: 14.5px; margin: 0 0 8px; line-height: 1.6; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-grid a { color: rgba(255, 255, 255, .8); font-size: 14.5px; text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { padding-top: 28px; font-size: 13.5px; color: rgba(255, 255, 255, .5); }
.footer-bottom a { color: rgba(255, 255, 255, .8); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   PROSE
   ============================================================ */

.prose { font-size: 17px; line-height: 1.75; color: var(--text); max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 2rem; margin: 1.6em 0 .5em; font-weight: 500; letter-spacing: -.03em; }
.prose h3 { font-size: 1.35rem; margin: 1.4em 0 .4em; font-weight: 600; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--paper-2);
  border-radius: var(--radius-sm);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-muted { color: var(--text-2); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.chip {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--paper-3);
  color: var(--text-2);
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.chip:hover { background: var(--accent); color: #fff; }

/* ============================================================
   STICKY MOBILE CTA BAR
   Shown only on mobile (≤880px), only after scrolling past hero
   ============================================================ */

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .35);
  padding: 0;
  transform: translateY(110%);
  transition: transform .25s ease;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

.sticky-mobile-cta > a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  line-height: 1.1;
  transition: background .15s ease;
}
.sticky-mobile-cta > a:last-child { border-right: 0; }
.sticky-mobile-cta > a:active { background: rgba(255, 255, 255, .08); }

.sticky-cta-call {
  color: #fff;
  background: var(--ink);
}
.sticky-cta-text {
  color: #fff;
  background: var(--ink);
  max-width: 90px;
  flex: 0 0 auto;
}
.sticky-cta-offer {
  color: #fff;
  background: var(--accent);
}
.sticky-cta-offer:active { background: var(--accent-2); }

.sticky-cta-icon {
  font-size: 16px;
  line-height: 1;
}

/* Only show on mobile (≤880px) */
@media (max-width: 880px) {
  .sticky-mobile-cta { display: flex; }
  /* Push body content up a bit so footer copyright isn't trapped under the bar */
  body { padding-bottom: 68px; }
}

/* ============================================================
   TRUST STRIP — below hero
   ============================================================ */

.trust-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}
.trust-strip-inner > span {
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 600;
}
.trust-strip-inner strong {
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -.005em;
}
.stars-mini {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 14px;
}
.trust-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  margin-right: 2px;
  font-weight: 700;
}

/* ============================================================
   PATH PICKER — "What brings you here today?"
   ============================================================ */

.path-picker-section {
  background: var(--paper);
  padding: 80px 0 40px;
}
.path-picker-heading {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.path-picker-heading h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0;
}
.path-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.path-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--text);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
  color: var(--text);
}
.path-card:hover::before { transform: scaleX(1); }
.path-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.path-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  letter-spacing: -.015em;
  font-weight: 600;
}
.path-card p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0 0 14px;
  line-height: 1.5;
}
.path-card-arrow {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .01em;
}
.path-card:hover .path-card-arrow { color: var(--accent-2); }
@media (max-width: 980px) {
  .path-picker-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .path-picker-grid { grid-template-columns: 1fr; }
}

/* Accent variant for the path picker — slightly highlighted card */
.path-card.path-card-accent {
  background: var(--paper-2);
  border-color: var(--line-2);
}
.path-card.path-card-accent .path-card-icon {
  background: var(--accent-soft);
  color: var(--accent-2);
}

/* ============================================================
   OFFER HERO — softer than the main hero (no video, calm tone)
   ============================================================ */

.offer-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 140px 0 84px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}
.offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(240, 101, 67, .14), transparent 65%),
    radial-gradient(40% 60% at 90% 100%, rgba(242, 169, 0, .08), transparent 70%);
  pointer-events: none;
}
.offer-hero-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.offer-hero h1 {
  font-size: clamp(2.4rem, 4.5vw + 1rem, 4.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 0 0 22px;
  color: #fff;
}
.offer-hero h1 .text-italic {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .82);
}
.offer-hero .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .88);
  margin-bottom: 26px;
}
.offer-hero-lead {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 32px;
}
.offer-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.offer-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}
.offer-badge strong {
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
}

/* ============================================================
   OPTIONS GRID — "You Have Options" (Kady-style honesty)
   ============================================================ */

.options-section { padding: 110px 0; }
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.option-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.option-card.option-card-featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 80%);
}
.option-card.option-card-featured:hover {
  border-color: var(--accent-2);
}
.option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(240, 101, 67, .35);
}
.option-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
}
.option-card h3 {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: -.015em;
  color: var(--text);
}
.option-card p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.option-arrow {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .005em;
  text-decoration: none;
  margin-top: auto;
}
.option-arrow:hover { color: var(--accent); }
.option-card-featured .option-arrow { color: var(--accent-2); font-weight: 700; }

@media (max-width: 1080px) {
  .options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .options-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS STEPS WITH ICONS (cash offer page)
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.process-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.process-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  font-family: var(--font-display);
}
.process-step h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.process-step p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 980px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   REASSURE SECTION — "A note from Andrew"
   ============================================================ */

.reassure-section { background: var(--paper-2); }
.reassure-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 56px;
  align-items: center;
}
.reassure-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin: 0 auto;
}
.reassure-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.reassure-copy h2 {
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.reassure-copy .lead-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 12px 0 22px;
  line-height: 1.5;
}
.reassure-copy p {
  font-size: 16.5px;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.6;
}
.reassure-copy .signature {
  font-style: italic;
  color: var(--text-2);
  font-size: 15px;
  margin: 8px 0 24px;
}
@media (max-width: 880px) {
  .reassure-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   EMPATHY SECTION — "You're not alone"
   ============================================================ */

.empathy-section {
  background: var(--paper);
  padding: 110px 0;
}
.empathy-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.empathy-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.empathy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
}
.empathy-photo-caption {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.005em;
  backdrop-filter: blur(8px);
}
.empathy-copy h2 {
  font-size: clamp(2rem, 2.8vw + 1rem, 3.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.empathy-copy p {
  font-size: 17.5px;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.6;
  max-width: 580px;
}
.empathy-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 16px;
}
.empathy-list li {
  position: relative;
  padding-left: 22px;
}
.empathy-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.empathy-list strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.empathy-list span {
  display: block;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .empathy-grid { grid-template-columns: 1fr; gap: 32px; }
  .empathy-section { padding: 72px 0; }
  .empathy-photo img { aspect-ratio: 16 / 11; }
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--paper-2);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-row .stat-num {
  font-size: clamp(2.6rem, 3vw + 1rem, 3.6rem);
  font-weight: 300;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.stats-row .stat-plus {
  color: var(--accent);
  font-size: .65em;
  font-weight: 500;
  margin-left: 2px;
}
.stats-row .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

.team-section {
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single-photo team layout (Andrew + signed letter) */
.team-grid-single {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1.15fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .team-grid-single { grid-template-columns: 1fr; gap: 32px; }
}
.team-profile-large {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-2);
  max-width: 460px;
  margin: 0 auto;
}
.team-profile-large img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.team-copy .lead-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 12px 0 22px;
  line-height: 1.45;
}
.team-copy .signature {
  font-style: italic;
  color: var(--text-2);
  font-size: 15px;
  margin: 8px 0 24px;
}

/* Two-person team layout (Chris + Andrew) */
.team-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.team-profile {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-profile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.team-profile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.team-profile figcaption {
  padding: 24px 28px 28px;
}
.team-profile figcaption strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.1;
}
.team-profile .team-role {
  display: block;
  font-size: 13px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 14px;
}
.team-profile figcaption p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}
.team-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .team-profiles { grid-template-columns: 1fr; }
}
.team-profile {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-profile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.team-profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.team-profile:first-child img { object-position: center 20%; }
.team-profile figcaption {
  padding: 18px 20px 22px;
}
.team-profile figcaption strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 2px;
}
.team-profile figcaption span {
  display: block;
  font-size: 13.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.team-copy h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.team-copy h2 .text-italic { font-style: italic; font-weight: 300; color: var(--text-2); }
.team-copy p {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 16px;
}
.team-copy .hero-actions { margin-top: 28px; }
@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-photo { min-height: 240px; max-height: 360px; }
}

.brand-logo{width:46px;height:46px;border-radius:50%;object-fit:cover;display:block}
.footer-realtor{margin-top:10px}.footer-realtor a{color:var(--accent);font-weight:600;text-decoration:none}
