:root {
  --navy-950: #031b35;
  --navy-900: #05284d;
  --navy-800: #0a3763;
  --teal-700: #087b83;
  --teal-600: #0b9298;
  --teal-100: #e5f4f3;
  --gold-500: #efb640;
  --gold-400: #f5c763;
  --gold-100: #fff4d9;
  --ink: #13243a;
  --muted: #5c6776;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --soft: #f3f7f7;
  --line: #dce4e6;
  --success: #176b50;
  --danger: #9d2d33;
  --shadow-sm: 0 8px 24px rgba(3, 27, 53, .08);
  --shadow-md: 0 18px 44px rgba(3, 27, 53, .14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 5.8vw, 5.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.28rem, 2vw, 1.7rem); }
p { margin: 0 0 1.15em; }
ul { padding-left: 1.2rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 850px; }
.site-main { overflow: clip; }
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; z-index: 10000; top: 10px; left: 10px; padding: 10px 15px; background: #fff; color: #000; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light { color: #d9f4f1; }
.eyebrow--gold { color: var(--gold-400); }
.lead { font-size: 1.22rem; color: #33475f; }
.section-heading { max-width: 840px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-intro { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.13rem; }
.oon-icon { width: 24px; height: 24px; flex: 0 0 auto; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(239,182,64,.65); outline-offset: 3px; }
.button--gold { color: var(--navy-950); background: var(--gold-500); }
.button--gold:hover { color: var(--navy-950); background: var(--gold-400); }
.button--teal { color: #fff; background: var(--teal-700); }
.button--teal:hover { color: #fff; background: #05636b; }
.button--navy, .button--primary { color: #fff; background: var(--navy-900); }
.button--navy:hover, .button--primary:hover { color: #fff; background: var(--navy-800); }
.button--ghost-light { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(3,27,53,.18); }
.button--ghost-light:hover { color: #fff; border-color: #fff; background: rgba(3,27,53,.45); }
.button--outline-gold { color: #fff; border-color: var(--gold-500); background: transparent; }
.button--outline-gold:hover { color: var(--navy-950); background: var(--gold-500); }
.button--wide { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #fff;
  background: rgba(3, 27, 53, .97);
  box-shadow: 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 285px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.primary-menu a { color: #fff; font-size: .89rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.primary-menu a:hover, .primary-menu .current-menu-item > a { color: var(--gold-400); }
.header-cta { min-height: 44px; padding: 10px 18px; }
.menu-toggle { display: none; color: #fff; border: 0; background: transparent; cursor: pointer; }
.menu-toggle__label { position: absolute; clip: rect(0 0 0 0); }
.menu-toggle__bars { display: grid; gap: 5px; }
.menu-toggle__bars span { display: block; width: 26px; height: 2px; background: currentColor; transition: .2s ease; }

/* Heroes */
.hero { position: relative; color: #fff; background-position: center; background-size: cover; }
.hero--home { min-height: 690px; background-image: url('../images/home-hero.jpg'); background-position: center 55%; }
.hero--property { background-image: url('../images/property-hero.jpg'); background-position: center; }
.hero--business { background-image: url('../images/business-hero.jpg'); background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,27,53,.92) 0%, rgba(3,27,53,.69) 40%, rgba(3,27,53,.12) 72%, rgba(3,27,53,.06) 100%); }
.hero-overlay--dark { background: linear-gradient(90deg, rgba(3,20,38,.98) 0%, rgba(3,20,38,.88) 45%, rgba(3,20,38,.22) 75%, rgba(3,20,38,.08) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero-content--home { max-width: 800px; padding: 125px 0 155px; }
.hero h1 { color: #fff; }
.hero-copy { max-width: 700px; color: rgba(255,255,255,.9); font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.55; }
.hero--with-form { min-height: 780px; padding: 70px 0 82px; }
.split-hero { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .76fr); gap: 64px; align-items: center; }
.split-hero .hero-content h1 { font-size: clamp(2.7rem, 5vw, 4.85rem); }
.hero-checks { display: grid; gap: 11px; list-style: none; margin: 28px 0 0; padding: 0; color: #fff; }
.hero-checks li { position: relative; padding-left: 28px; }
.hero-checks li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-400); font-weight: 900; }
.hero-form-card { color: var(--ink); padding: 34px; border-radius: var(--radius-md); background: rgba(255,255,255,.98); box-shadow: 0 30px 70px rgba(3,16,32,.3); }
.hero-form-card h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.hero-form-card > p:not(.eyebrow) { color: var(--muted); font-size: .95rem; }

/* Home paths */
.section--overlap { position: relative; background: var(--cream); }
.oon-home .section--overlap { padding-top: 82px; }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.path-card { display: grid; grid-template-columns: .83fr 1.17fr; min-height: 510px; overflow: hidden; border: 1px solid rgba(5,40,77,.12); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-md); }
.path-card__image { min-height: 100%; overflow: hidden; }
.path-card__image img { width: 100%; height: 100%; object-fit: cover; }
.path-card__body { position: relative; padding: 42px 34px 34px; }
.path-card__body h2 { font-size: 2.3rem; }
.path-card__body > p:not(.eyebrow) { color: var(--muted); }
.path-card__body .button { margin-top: 8px; }
.icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 22px; color: #fff; border-radius: 50%; }
.icon-badge--teal { background: var(--teal-700); }
.icon-badge--navy { background: var(--navy-900); }
.icon-badge--gold { color: var(--navy-950); background: var(--gold-500); }
.check-list { display: grid; gap: 9px; list-style: none; margin: 20px 0 26px; padding: 0; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-700); font-weight: 900; }

/* Trust strip */
.trust-strip { color: #fff; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-grid > div { display: flex; gap: 14px; align-items: center; justify-content: center; min-height: 104px; padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid .oon-icon { width: 34px; height: 34px; color: var(--gold-400); }
.trust-grid span { display: grid; line-height: 1.25; font-family: Georgia, "Times New Roman", serif; }
.trust-grid strong { color: #fff; }
.trust-strip--light { color: var(--navy-950); background: #fff; border-color: var(--line); }
.trust-strip--light .trust-grid > div { border-color: var(--line); }
.trust-strip--light .trust-grid strong { color: var(--navy-950); }

/* Cards, steps and sections */
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.step-card { position: relative; padding: 36px 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); text-align: center; }
.step-card > span { position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 32px; height: 32px; color: var(--navy-950); background: var(--gold-500); border-radius: 50%; font-weight: 900; }
.step-card > .oon-icon { width: 48px; height: 48px; margin: 8px auto 22px; color: var(--teal-700); }
.step-card p { margin: 0; color: var(--muted); }
.option-grid { display: grid; gap: 22px; }
.option-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.option-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.option-card p { margin: 0; color: var(--muted); }
.option-card--gold { border-color: rgba(239,182,64,.75); background: linear-gradient(160deg, #fff 25%, var(--gold-100)); }

/* Founder */
.founder-grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 74px; align-items: center; }
.founder-grid--compact { max-width: 980px; }
.founder-photo-wrap { position: relative; width: min(100%, 430px); margin: auto; }
.founder-photo { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; border: 9px solid #fff; border-radius: 50%; box-shadow: var(--shadow-md); }
.founder-photo-accent { position: absolute; z-index: 0; inset: -16px 24px 22px -20px; border: 2px solid var(--gold-500); border-radius: 50%; }
.credential-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.credential-row span { padding: 8px 12px; border: 1px solid #c8dada; border-radius: 999px; color: var(--teal-700); background: var(--teal-100); font-size: .85rem; font-weight: 750; }

/* Partner and final CTA */
.partner-callout { color: #fff; background: linear-gradient(125deg, var(--teal-700), var(--navy-900)); }
.partner-callout h2, .partner-callout p { color: #fff; }
.partner-callout__inner { display: grid; grid-template-columns: minmax(0, 1.35fr) auto; gap: 50px; align-items: center; }
.partner-callout__inner p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.86); }
.final-cta { color: #fff; background: var(--navy-950); }
.final-cta__inner { text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta .hero-actions { justify-content: center; }

/* Property as-is and business decision bands */
.as-is-section { color: #fff; background: linear-gradient(130deg, #063864, #075e68); }
.as-is-grid, .decision-band__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 70px; align-items: center; }
.as-is-section h2, .as-is-section h3 { color: #fff; }
.as-is-section p { color: rgba(255,255,255,.85); }
.as-is-card { padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(3,27,53,.58); box-shadow: var(--shadow-md); }
.check-list--light li::before { color: var(--gold-400); }
.decision-band { color: #fff; background: var(--navy-950); }
.decision-band h2 { color: #fff; }
.decision-band p { color: rgba(255,255,255,.84); }
.decision-quote { padding: 38px; border-left: 4px solid var(--gold-500); background: rgba(255,255,255,.07); }
.decision-quote p { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.decision-quote span { color: var(--gold-400); font-weight: 750; }

/* Subpage hero */
.subpage-hero { position: relative; color: #fff; background: var(--navy-950); }
.subpage-hero::before { content: ''; position: absolute; inset: 0; opacity: .25; background: radial-gradient(circle at 80% 20%, var(--teal-600), transparent 32%), linear-gradient(135deg, transparent 45%, rgba(239,182,64,.14)); }
.subpage-hero__inner { position: relative; min-height: 475px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 60px; align-items: center; padding-block: 84px; }
.subpage-hero h1 { max-width: 920px; color: #fff; font-size: clamp(2.8rem, 5.5vw, 5rem); }
.subpage-hero__inner > div:first-child:only-child { grid-column: 1 / -1; max-width: 970px; }
.partner-hero-card { padding: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.partner-hero-card .oon-icon { width: 54px; height: 54px; margin-bottom: 22px; color: var(--gold-400); }
.partner-hero-card h2 { color: #fff; font-size: 2rem; }
.partner-hero-card p { margin: 0; color: rgba(255,255,255,.82); }

/* Partner page */
.partner-type-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.partner-type-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.partner-type-grid .oon-icon { width: 42px; height: 42px; margin-bottom: 20px; color: var(--teal-700); }
.partner-type-grid p { margin: 0; color: var(--muted); }
.standards-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: center; }
.standards-list { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.standards-list li { display: flex; gap: 15px; align-items: flex-start; padding: 19px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.standards-list .oon-icon { color: var(--teal-700); }
.standards-list span { display: grid; }
.partner-form-section { background: var(--cream); }
.form-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 70px; align-items: start; }
.form-layout__intro { position: sticky; top: 120px; }
.form-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-md); }
.contact-card { margin-top: 28px; padding: 24px; border-left: 4px solid var(--gold-500); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.25rem; }
.contact-card p { margin: 0; }
.contact-card .oon-icon { width: 20px; height: 20px; margin-right: 8px; vertical-align: middle; }

/* Story and contact */
.story-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: 70px; align-items: start; }
.principle-card { padding: 38px; border-top: 5px solid var(--gold-500); border-radius: var(--radius-md); background: var(--navy-950); box-shadow: var(--shadow-md); }
.principle-card blockquote { margin: 0 0 28px; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; line-height: 1.35; }
.principle-card .check-list { color: #fff; }
.principle-card .check-list li::before { color: var(--gold-400); }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.quick-contact { display: flex; gap: 18px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); text-decoration: none; }
.quick-contact:hover { color: var(--navy-950); border-color: var(--teal-600); transform: translateY(-2px); }
.quick-contact .oon-icon { width: 40px; height: 40px; color: var(--teal-700); }
.quick-contact span { display: grid; color: var(--muted); font-size: .92rem; }
.quick-contact strong { color: var(--navy-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }

/* Forms */
.oon-lead-form { position: relative; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 6px; color: var(--navy-950); font-size: .82rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #c9d4d8;
  border-radius: 7px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(3,27,53,.04);
}
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #88939e; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal-600); outline: 3px solid rgba(11,146,152,.14); }
.consent-field { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.consent-field input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--teal-700); }
.form-privacy { display: flex; justify-content: center; gap: 7px; align-items: center; margin: 12px 0 0; color: var(--muted); font-size: .74rem; text-align: center; }
.form-privacy .oon-icon { width: 16px; height: 16px; }
.oon-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-notice { margin: 0 0 18px; padding: 13px 15px; border-radius: 7px; font-size: .9rem; }
.form-notice--success { color: #0f5b43; border: 1px solid #a9d9c8; background: #e8f8f1; }
.form-notice--error { color: #7d2227; border: 1px solid #ebc3c5; background: #fff0f0; }
.hero-form-card .oon-lead-form--compact .form-grid { gap: 10px; }
.hero-form-card .oon-lead-form--compact .form-field label { font-size: .75rem; }
.hero-form-card .oon-lead-form--compact .form-field input,
.hero-form-card .oon-lead-form--compact .form-field select { min-height: 44px; padding: 9px 11px; font-size: .85rem; }
.hero-form-card .oon-lead-form--compact .consent-field { font-size: .68rem; }
.hero-form-card .oon-lead-form--compact .button { min-height: 46px; font-size: .8rem; }

/* FAQ and generic pages */
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 4px 14px rgba(3,27,53,.05); }
.faq-list summary { position: relative; padding: 21px 55px 21px 22px; color: var(--navy-950); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 20px; top: 50%; color: var(--teal-700); font-size: 1.5rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding: 0 22px 22px; margin: 0; color: var(--muted); }
.generic-page { padding: 88px 0; background: var(--cream); }
.prose-wrap { max-width: 850px; padding: 52px; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.prose-wrap h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.prose-wrap h2 { margin-top: 1.35em; font-size: 1.75rem; }
.prose-wrap li { margin-bottom: .6em; }
.legal-page .prose-wrap > p:first-of-type { color: var(--muted); }

/* Footer */
.site-footer { color: rgba(255,255,255,.76); background: #02162b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 70px; padding-block: 72px 48px; }
.brand--footer img { width: 300px; }
.footer-brand p { max-width: 430px; margin: 22px 0 0; }
.footer-heading { color: #fff; font-family: inherit; font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 9px; align-items: center; }
.footer-contact .oon-icon { width: 19px; height: 19px; color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px 34px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: rgba(255,255,255,.72); }

/* Assistant */
.assistant { position: fixed; z-index: 1200; right: 22px; bottom: 22px; }
.assistant-launcher { display: inline-flex; gap: 10px; align-items: center; min-height: 54px; padding: 12px 18px; color: #fff; border: 0; border-radius: 999px; background: var(--teal-700); box-shadow: 0 12px 35px rgba(3,27,53,.3); font-weight: 800; cursor: pointer; }
.assistant-launcher:hover { background: #066b72; }
.assistant-launcher .oon-icon { width: 24px; height: 24px; }
.assistant-panel { position: absolute; right: 0; bottom: 0; width: min(380px, calc(100vw - 28px)); overflow: hidden; border: 1px solid #cbd9dc; border-radius: 14px; background: #fff; box-shadow: 0 25px 80px rgba(3,27,53,.35); opacity: 0; visibility: hidden; transform: translateY(14px) scale(.97); transform-origin: right bottom; transition: .22s ease; }
.assistant.is-open .assistant-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.assistant.is-open .assistant-launcher { opacity: 0; visibility: hidden; }
.assistant-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; color: #fff; background: linear-gradient(90deg, var(--navy-950), var(--teal-700)); }
.assistant-header > div { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; align-items: center; }
.assistant-header strong { line-height: 1.1; }
.assistant-header small { grid-column: 2; color: rgba(255,255,255,.68); }
.assistant-status { grid-row: 1 / span 2; width: 9px; height: 9px; border-radius: 50%; background: #7cf2c2; box-shadow: 0 0 0 4px rgba(124,242,194,.14); }
.assistant-header button { color: #fff; border: 0; background: transparent; font-size: 1.65rem; cursor: pointer; }
.assistant-messages { min-height: 138px; max-height: 240px; overflow: auto; display: grid; gap: 9px; align-content: start; padding: 16px; background: #f5f7f7; }
.assistant-message { max-width: 86%; padding: 10px 12px; border-radius: 11px; font-size: .87rem; line-height: 1.45; }
.assistant-message--bot { justify-self: start; border: 1px solid #dce4e6; border-bottom-left-radius: 2px; background: #fff; }
.assistant-message--user { justify-self: end; color: #fff; border-bottom-right-radius: 2px; background: var(--teal-700); }
.assistant-choices { display: grid; gap: 8px; padding: 0 16px 12px; background: #f5f7f7; }
.assistant-choices button { min-height: 42px; color: var(--navy-950); border: 1px solid var(--teal-700); border-radius: 7px; background: #fff; font-weight: 750; cursor: pointer; }
.assistant-choices button:hover { color: #fff; background: var(--teal-700); }
.assistant-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.assistant-input input { min-width: 0; flex: 1; min-height: 42px; padding: 8px 10px; border: 1px solid #ccd6d9; border-radius: 7px; }
.assistant-input button { width: 42px; color: #fff; border: 0; border-radius: 7px; background: var(--teal-700); cursor: pointer; }
.assistant-disclaimer { margin: 0; padding: 0 14px 12px; color: #7b8791; font-size: .65rem; line-height: 1.4; }

@media (max-width: 1100px) {
  .brand img { width: 240px; }
  .primary-menu { gap: 18px; }
  .primary-menu a { font-size: .82rem; }
  .header-cta { display: none; }
  .path-card { grid-template-columns: 1fr; }
  .path-card__image { height: 250px; }
  .option-grid--four, .partner-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr); gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: fixed; inset: 82px 0 auto; max-height: calc(100vh - 82px); overflow: auto; display: block; padding: 26px 20px 36px; background: var(--navy-950); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-menu { display: grid; gap: 0; }
  .primary-menu li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .primary-menu a { display: block; padding: 16px 4px; font-size: 1rem; }
  .split-hero, .as-is-grid, .decision-band__grid, .founder-grid, .standards-grid, .form-layout, .story-grid, .subpage-hero__inner { grid-template-columns: 1fr; }
  .hero--with-form { padding-top: 64px; }
  .hero--property, .hero--business { background-position: 65% center; }
  .split-hero { gap: 45px; }
  .split-hero .hero-content { max-width: 740px; }
  .hero-form-card { max-width: 650px; }
  .founder-photo-wrap { max-width: 330px; }
  .form-layout__intro { position: static; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .trust-strip--light .trust-grid > div:nth-child(-n+2) { border-bottom-color: var(--line); }
  .trust-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-grid--three > div:nth-child(2) { border-right: 1px solid rgba(255,255,255,.18); border-bottom: 0; }
  .trust-strip--light .trust-grid--three > div:nth-child(2) { border-right-color: var(--line); }
  .steps-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .partner-callout__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 220px; }
  .primary-nav { inset-block-start: 72px; max-height: calc(100vh - 72px); }
  .hero--home { min-height: 660px; background-position: 67% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,27,53,.93), rgba(3,27,53,.72)); }
  .hero-content--home { padding: 92px 0 120px; }
  .hero-content--home h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .path-grid, .option-grid--four, .partner-type-grid, .quick-contact-grid { grid-template-columns: 1fr; }
  .path-card__body { padding: 34px 24px 28px; }
  .path-card__body h2 { font-size: 2rem; }
  .trust-grid, .trust-grid--three { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid--three > div { min-height: 86px; justify-content: flex-start; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.18) !important; }
  .trust-strip--light .trust-grid > div { border-bottom-color: var(--line) !important; }
  .trust-grid > div:last-child { border-bottom: 0 !important; }
  .hero-form-card, .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .subpage-hero__inner { min-height: 400px; padding-block: 64px; }
  .partner-hero-card { padding: 26px; }
  .prose-wrap { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .assistant { right: 14px; bottom: 14px; }
  .assistant-launcher span { display: none; }
  .assistant-launcher { width: 54px; padding: 0; justify-content: center; }
  .assistant-panel { position: fixed; right: 14px; bottom: 14px; max-height: calc(100vh - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

