:root {
  --brand-navy: #003a88;
  --brand-blue: #1687d9;
  --brand-green: #59b82a;
  --brand-green-dark: #327b14;
  --brand-green-soft: #eef9e9;
  --brand-charcoal: #101722;
  --brand-dark: #08111f;
  --brand-off-white: #f6f8fb;
  --brand-white: #ffffff;
  --brand-grey: #5e6c7e;
  --brand-border: #d7e0ea;
  --brand-border-dark: #26364a;
  --brand-error: #b42318;
  --brand-error-soft: #fef3f2;
  --brand-warning: #8a5200;
  --brand-warning-soft: #fff8e6;
  --focus-ring: #ffcf4a;
  --text: #172033;
  --shadow-sm: 0 10px 28px rgba(13, 31, 53, 0.08);
  --shadow-lg: 0 28px 70px rgba(1, 14, 31, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 72px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body { margin: 0; background: var(--brand-white); color: var(--text); font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-navy); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
::selection { background: #dff6d5; color: var(--brand-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--brand-dark); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.3rem); }
h2 { font-size: clamp(2.05rem, 4.5vw, 3.55rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1.1rem; }
code { overflow-wrap: anywhere; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--light { background: var(--brand-white); }
.section--off-white { background: var(--brand-off-white); }
.section--dark { background: var(--brand-dark); color: #d8e3f0; }
.section--navy { background: var(--brand-navy); color: #dce9fa; }
.section--dark h2, .section--dark h3, .section--navy h2, .section--navy h3 { color: var(--brand-white); }
.narrow-heading { width: min(calc(100% - 40px), 760px); margin: 0 auto 46px; text-align: center; }
.narrow-heading--left { width: min(calc(100% - 40px), var(--container)); text-align: left; }
.narrow-heading > p:last-child { color: var(--brand-grey); font-size: 1.1rem; }
.eyebrow { margin-bottom: 14px; color: var(--brand-navy); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #80cbff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--focus-ring); color: var(--brand-dark); font-weight: 800; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; min-height: var(--header-height); background: rgba(8, 17, 31, .97); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand-link { flex: 0 1 222px; text-decoration: none; }
.brand-plate { display: block; max-width: 222px; padding: 4px 7px; background: #fff; border: 1px solid rgba(255,255,255,.32); border-radius: 11px; box-shadow: 0 5px 18px rgba(0,0,0,.2); }
.brand-plate img { width: 100%; }
.menu-toggle { min-width: 72px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 8px 10px; border: 1px solid var(--brand-border-dark); border-radius: 9px; background: transparent; color: white; cursor: pointer; }
.menu-toggle__label { font-size: .92rem; font-weight: 700; }
.menu-toggle__lines { display: grid; gap: 4px; }
.menu-toggle__lines span { display: block; width: 19px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-nav { position: fixed; inset: var(--header-height) 0 auto 0; max-height: calc(100svh - var(--header-height)); overflow-y: auto; padding: 18px 20px 28px; background: var(--brand-dark); border-bottom: 1px solid var(--brand-border-dark); transform: translateY(-120%); visibility: hidden; transition: transform .24s ease, visibility .24s; }
.site-nav.is-open { transform: none; visibility: visible; }
.site-nav__list { display: grid; gap: 2px; margin: 0 0 16px; padding: 0; list-style: none; }
.site-nav__list a { display: block; min-height: 48px; padding: 11px 8px; color: #edf5ff; font-weight: 700; text-decoration: none; }
.nav-cta { width: 100%; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 2px solid transparent; border-radius: 10px; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 9px 15px; font-size: .9rem; }
.button--green { background: var(--brand-green); border-color: var(--brand-green); color: #071407; box-shadow: 0 10px 25px rgba(89,184,42,.2); }
.button--green:hover { background: #6dca3e; border-color: #6dca3e; }
.button--secondary-dark { border-color: #52647a; background: rgba(255,255,255,.03); color: white; }
.button--secondary-dark:hover { background: rgba(255,255,255,.1); }
.button--quiet { background: white; border-color: var(--brand-border); color: var(--brand-navy); box-shadow: none; }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row--centre { justify-content: center; }

.hero { position: relative; overflow: hidden; padding: clamp(68px, 8vw, 118px) 0 clamp(76px, 9vw, 128px); background: linear-gradient(132deg, #08111f 0%, #0a1a30 55%, #09244b 100%); color: #dce7f5; }
.hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(89,184,42,.55), transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow--one { width: 440px; height: 440px; right: -180px; top: -240px; background: radial-gradient(circle, rgba(22,135,217,.24), transparent 68%); }
.hero-glow--two { width: 360px; height: 360px; left: -220px; bottom: -220px; background: radial-gradient(circle, rgba(89,184,42,.12), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 48px; align-items: center; }
.hero h1 { max-width: 760px; margin-bottom: 24px; color: white; }
.hero h1::after { content: ""; display: block; width: 76px; height: 5px; margin-top: 24px; border-radius: 10px; background: var(--brand-green); }
.hero-lead { max-width: 710px; margin-bottom: 16px; font-size: clamp(1.1rem, 2.3vw, 1.35rem); color: #e9f1fb; }
.hero-details { margin-bottom: 30px; color: #9eb2ca; font-weight: 700; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 26px 0 0; padding: 0; color: #b7c6d9; font-size: .9rem; list-style: none; }
.hero-trust li { position: relative; padding-left: 17px; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-green); font-weight: 900; }
.brief-shell { width: 100%; max-width: 580px; justify-self: center; overflow: hidden; border: 1px solid #30445e; border-radius: var(--radius-md); background: #122035; box-shadow: var(--shadow-lg); transform: rotate(.5deg); }
.brief-window-bar { display: flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 14px; border-bottom: 1px solid #2b3b50; color: #91a4bc; font-size: .76rem; }
.brief-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #42546a; }
.brief-window-bar b { margin-left: 5px; font-weight: 600; }
.brief-card { margin: 10px; padding: clamp(19px, 4vw, 30px); border-radius: 12px; background: #fbfcfe; color: var(--text); }
.brief-card__topline, .trade-brief__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--brand-border); }
.brief-kicker { margin: 0; color: var(--brand-navy); font-size: .78rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.brief-reference { margin: 3px 0 0; color: var(--brand-grey); font-size: .78rem; }
.fit-pill { display: inline-flex; align-items: center; gap: 5px; width: fit-content; padding: 5px 9px; border-radius: 999px; font-size: .75rem; font-weight: 900; line-height: 1.3; white-space: nowrap; }
.fit-pill--strong { background: #def3d4; color: #255f0c; }
.fit-pill--review { background: #fff0c7; color: #7b4b00; }
.fit-pill--outside { background: #fbe2e0; color: #8b1e16; }
.brief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; margin: 24px 0; }
.brief-grid div { min-width: 0; }
.brief-grid dt, .summary-grid dt { color: var(--brand-grey); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.brief-grid dd, .summary-grid dd { margin: 3px 0 0; color: var(--brand-dark); font-size: .92rem; font-weight: 750; overflow-wrap: anywhere; }
.brief-photos { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--brand-border); }
.brief-photos b, .brief-photos small { display: block; }
.brief-photos b { font-size: .88rem; }
.brief-photos small { color: var(--brand-grey); }
.photo-stack { position: relative; width: 54px; height: 38px; flex: 0 0 54px; }
.photo-stack i { position: absolute; width: 35px; height: 30px; border: 2px solid white; border-radius: 5px; background: linear-gradient(140deg, #56a3dc, #a9d285); box-shadow: 0 3px 8px rgba(0,0,0,.15); }
.photo-stack i:nth-child(1) { left: 0; transform: rotate(-8deg); }.photo-stack i:nth-child(2) { left: 10px; }.photo-stack i:nth-child(3) { left: 19px; transform: rotate(8deg); }

.problem-section { background-image: linear-gradient(#fff, #fbfcfe); }
.comparison-grid { display: grid; gap: 18px; align-items: stretch; }
.comparison-card { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--brand-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.comparison-card--generic { background: #f8f9fb; }
.comparison-card--fit { border-color: #b9dba9; background: #fbfff9; }
.comparison-card__label { display: flex; align-items: center; gap: 9px; margin-bottom: 26px; color: var(--brand-grey); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.comparison-card--fit .comparison-card__label { color: var(--brand-green-dark); }
.comparison-card blockquote { margin: 0 0 22px; color: var(--brand-dark); font-size: clamp(1.45rem, 4vw, 2.25rem); font-weight: 750; line-height: 1.25; letter-spacing: -.025em; }
.comparison-note { margin: 0; color: var(--brand-grey); }
.comparison-arrow { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; align-self: center; border-radius: 50%; background: var(--brand-navy); color: white; font-weight: 900; }
.check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .08em; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-green-soft); color: var(--brand-green-dark); font-size: .7rem; font-weight: 900; }
.section-support { margin-top: 30px; text-align: center; font-size: 1.08rem; font-weight: 700; }

.steps-grid { display: grid; gap: 16px; counter-reset: steps; }
.step-card { position: relative; min-height: 245px; padding: 28px; overflow: hidden; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.step-card::after { content: ""; position: absolute; right: -40px; bottom: -70px; width: 145px; height: 145px; border-radius: 50%; background: var(--brand-off-white); }
.step-number { position: relative; z-index: 1; display: block; margin-bottom: 36px; color: var(--brand-blue); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.step-card h3, .step-card p { position: relative; z-index: 1; }
.step-card p { color: var(--brand-grey); }
.process-flow { display: grid; gap: 9px; margin-top: 30px; padding: 20px; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: var(--brand-off-white); text-align: center; }
.process-flow span { padding: 8px; font-size: .86rem; font-weight: 800; }
.process-flow b { color: var(--brand-green-dark); transform: rotate(90deg); }

.split-heading { display: grid; gap: 26px; align-items: end; margin-bottom: 44px; }
.split-heading p:last-child { color: #b5c7db; font-size: 1.06rem; }
.delivery-grid { display: grid; gap: 16px; }
.delivery-grid article { padding: 28px; border: 1px solid var(--brand-border-dark); border-radius: var(--radius-md); background: #0e1c30; }
.delivery-grid .delivery-featured { border-color: rgba(89,184,42,.68); background: linear-gradient(150deg, #10253c, #0d1b2e); box-shadow: inset 0 3px 0 var(--brand-green); }
.option-number { display: block; margin-bottom: 20px; color: #72c0f7; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.delivery-grid code { display: block; margin: 20px 0; padding: 11px 12px; border: 1px solid #31445c; border-radius: 8px; background: #07111f; color: #bfe4ff; font-size: .85rem; }
.delivery-grid p { margin-bottom: 0; color: #aebed0; }

.discover-grid { display: grid; gap: 50px; align-items: center; }
.discover-grid > div > p:not(.eyebrow) { color: var(--brand-grey); font-size: 1.06rem; }
.whatsapp-example { display: flex; gap: 14px; margin-top: 28px; padding: 20px; border-left: 4px solid var(--brand-green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--brand-off-white); }
.whatsapp-example > span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; background: var(--brand-green); color: #071407; font-weight: 900; }
.whatsapp-example p { margin: 4px 0 0; color: var(--text) !important; font-size: .92rem !important; }
.channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.channel-grid li { min-height: 110px; display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 18px; border: 1px solid var(--brand-border); border-radius: var(--radius-sm); background: white; font-size: .86rem; font-weight: 800; box-shadow: var(--shadow-sm); }
.channel-grid span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: #eaf4fc; color: var(--brand-navy); font-weight: 900; }

.included-grid { display: grid; gap: 44px; }
.included-grid > div > p:not(.eyebrow) { color: var(--brand-grey); }
.included-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; list-style: none; box-shadow: var(--shadow-sm); }
.included-list li { position: relative; min-height: 74px; display: flex; align-items: center; padding: 18px 16px 18px 46px; border-bottom: 1px solid var(--brand-border); font-size: .91rem; font-weight: 700; }
.included-list li::before { content: "✓"; position: absolute; left: 18px; color: var(--brand-green-dark); font-weight: 900; }
.included-list li:nth-child(odd) { border-right: 1px solid var(--brand-border); }
.included-list li:nth-last-child(-n+2) { border-bottom: 0; }
.info-note { display: flex; gap: 14px; margin-top: 30px; padding: 18px 20px; border: 1px solid #bdd5eb; border-radius: var(--radius-sm); background: #eef7ff; }
.info-note > span { display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 27px; border-radius: 50%; background: var(--brand-navy); color: white; font-weight: 900; }
.info-note p { margin: 0; }

.fit-grid { display: grid; gap: 16px; }
.fit-grid article { padding: 28px; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.fit-grid p { margin: 22px 0 0; color: var(--brand-grey); }
.final-decision { margin-top: 28px; text-align: center; font-weight: 800; }
.audience-list { display: grid; border-top: 1px solid rgba(255,255,255,.2); }
.audience-list div { display: grid; gap: 5px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.audience-list b { color: white; font-size: 1.1rem; }
.audience-list span { color: #c2d3e9; }

.pricing-section { background: linear-gradient(#fff, #f7f9fc); }
.pricing-grid { display: grid; gap: 22px; align-items: start; }
.price-card { padding: clamp(26px, 5vw, 46px); border: 1px solid var(--brand-border); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.price-card--primary { border-top: 5px solid var(--brand-green); box-shadow: 0 24px 65px rgba(11,63,140,.13); }
.price-card--secondary { border-top: 5px solid var(--brand-navy); }
.price-card__header { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; }
.price-badge, .optional-label { display: inline-block; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: var(--brand-green-soft); color: var(--brand-green-dark); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.optional-label { background: #eaf3fb; color: var(--brand-navy); }
.price { display: flex; align-items: baseline; gap: 7px; }
.price strong { color: var(--brand-dark); font-size: clamp(2.6rem, 8vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.price span { color: var(--brand-grey); }
.price--small { display: block; margin: 25px 0; }
.price--small strong { display: block; font-size: clamp(2rem, 6vw, 3rem); }
.payment-split { padding: 16px; border-radius: 10px; background: var(--brand-off-white); }
.price-card .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 26px 0; }
.availability { padding-top: 20px; border-top: 1px solid var(--brand-border); color: var(--brand-grey); font-size: .9rem; font-weight: 700; }
.managed-note { margin: 25px 0 0; padding-top: 20px; border-top: 1px solid var(--brand-border); color: var(--brand-grey); }

.honest-section { padding-top: 0; background: var(--brand-off-white); }
.honest-panel { display: grid; gap: 25px; padding: clamp(28px, 6vw, 60px); border-radius: var(--radius-lg); background: linear-gradient(130deg, #08111f, #0b274e); color: #c8d6e8; box-shadow: var(--shadow-lg); }
.honest-panel h2 { color: white; }
.honest-panel strong { color: white; }
.honest-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid var(--brand-green); border-radius: 50%; color: var(--brand-green); font-size: 2rem; font-weight: 900; }
.faq-layout { display: grid; gap: 42px; align-items: start; }
.faq-intro { max-width: 440px; }
.faq-intro > p:last-child { color: var(--brand-grey); }
.faq-list details { border-bottom: 1px solid var(--brand-border); }
.faq-list summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; color: var(--brand-dark); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border: 1px solid var(--brand-border); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 13px; left: 7px; width: 12px; height: 2px; background: var(--brand-navy); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { padding: 0 44px 22px 0; color: var(--brand-grey); }

.cta-section { padding: 32px 0; background: var(--brand-white); }
.cta-panel { padding: clamp(42px, 8vw, 88px) clamp(20px, 7vw, 80px); border-radius: var(--radius-lg); background: linear-gradient(135deg, #08111f 0%, #0a2041 100%); color: #c9d6e7; text-align: center; }
.cta-panel h2 { max-width: 760px; margin-inline: auto; color: white; }
.cta-panel > p:not(.eyebrow):not(.cta-trust) { max-width: 700px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-trust { margin: 24px 0 0; color: #9fb0c6; font-size: .9rem; }

.get-started-grid { display: grid; gap: 42px; align-items: start; }
.get-started-copy { max-width: 520px; }
.get-started-copy > p:not(.eyebrow) { color: var(--brand-grey); font-size: 1.06rem; }
.contact-alternative { margin-top: 30px; padding: 18px; border-radius: var(--radius-sm); background: white; box-shadow: var(--shadow-sm); }
.contact-alternative b, .contact-alternative a { display: block; }
.form-trust { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; color: var(--brand-grey); list-style: none; }
.form-trust li { position: relative; padding-left: 22px; }
.form-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-green-dark); font-weight: 900; }
.sales-form-card { padding: clamp(22px, 5vw, 42px); border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.sales-form { display: grid; gap: 20px; }
.field-grid { display: grid; gap: 18px; }
.field { min-width: 0; }
.field label { display: block; margin-bottom: 7px; color: var(--brand-dark); font-size: .9rem; font-weight: 800; }
.optional { margin-left: 5px; color: var(--brand-grey); font-size: .72rem; font-weight: 600; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid #aebbc9; border-radius: 8px; background: white; color: var(--text); }
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7a8796; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-navy); }
.field [aria-invalid="true"], .checkbox-field [aria-invalid="true"] { border-color: var(--brand-error); box-shadow: 0 0 0 2px rgba(180,35,24,.11); }
.field-hint { display: block; margin-top: 6px; color: var(--brand-grey); }
.checkbox-field { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.checkbox-field input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--brand-navy); }
.checkbox-field label { font-size: .9rem; }
.required-note { margin: -6px 0 0; color: var(--brand-grey); font-size: .8rem; text-align: right; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.form-alert, .form-error-summary { margin-bottom: 22px; padding: 16px; border: 1px solid; border-radius: 9px; }
.form-alert strong, .form-alert p { display: block; margin: 0; }
.form-alert--error, .form-error-summary { border-color: #f3b7b3; background: var(--brand-error-soft); color: #7a1710; }
.form-alert--warning { border-color: #efd38d; background: var(--brand-warning-soft); color: #6d4100; }
.form-error-summary ul { margin: 8px 0 0; padding-left: 22px; }
.form-error-summary a { color: inherit; }

.site-footer { padding: 70px 0 25px; background: #050d18; color: #aebed0; }
.footer-grid { display: grid; gap: 40px; }
.footer-brand { max-width: 500px; }
.footer-logo-panel { width: min(100%, 300px); padding: 8px; border-radius: 10px; background: white; }
.footer-brand > p { margin-top: 20px; }
.footer-relationship { font-size: .9rem; }
.site-footer a { color: #d8eaff; }
.footer-heading { color: white; font-size: 1rem; letter-spacing: 0; }
.footer-email { font-weight: 800; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; min-height: 38px; padding-block: 5px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 50px; padding-top: 22px; border-top: 1px solid #203043; font-size: .84rem; }
.footer-bottom p { margin: 0; }

.legal-main { min-height: 60vh; padding: clamp(60px, 8vw, 110px) 0; background: var(--brand-off-white); }
.legal-layout { max-width: 850px; }
.legal-layout > h1 { font-size: clamp(2.5rem, 7vw, 4.3rem); }
.legal-copy { margin-top: 42px; padding: clamp(24px, 6vw, 54px); border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.legal-copy h2 { margin: 42px 0 14px; font-size: clamp(1.55rem, 4vw, 2rem); letter-spacing: -.025em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 30px 0 10px; font-size: 1.15rem; letter-spacing: -.015em; }
.legal-copy p, .legal-copy li { color: #445267; }
.legal-copy li + li { margin-top: 7px; }
.legal-notice { padding: 16px; border-left: 4px solid var(--brand-blue); background: #eef7ff; }
.error-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; background: linear-gradient(140deg, #08111f, #0b264d); color: #c8d5e6; text-align: center; }
.error-page h1 { color: white; }
.error-page__inner { max-width: 760px; }
.error-code { margin: 0; color: rgba(255,255,255,.08); font-size: clamp(7rem, 30vw, 16rem); font-weight: 900; line-height: .8; }

.demo-main { background: #f3f6fa; }
.demo-intro { padding: clamp(54px, 8vw, 92px) 0; background: linear-gradient(135deg, #08111f, #0b2f62); color: #c7d6e8; }
.demo-intro h1 { color: white; }
.demo-intro__inner { display: grid; gap: 28px; align-items: end; }
.demo-intro__inner > div:first-child { max-width: 720px; }
.fictional-notice { display: flex; gap: 12px; padding: 18px; border: 1px solid #35567d; border-radius: var(--radius-sm); background: rgba(255,255,255,.05); }
.fictional-notice > span { display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: #bfe5ff; color: var(--brand-dark); font-weight: 900; }
.fictional-notice p { margin: 0; }
.demo-workspace { padding-bottom: 90px; }
.demo-business-bar { display: flex; align-items: center; gap: 12px; margin-top: -24px; padding: 16px 18px; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.demo-business-logo { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; background: var(--brand-navy); color: white; font-weight: 900; }
.demo-business-bar b, .demo-business-bar span { display: block; }
.demo-business-bar b { color: var(--brand-dark); line-height: 1.25; }
.demo-business-bar span { color: var(--brand-grey); font-size: .8rem; }
.demo-business-bar > a { margin-left: auto; font-size: .76rem; font-weight: 700; }
.demo-layout { display: grid; gap: 22px; margin-top: 22px; }
.demo-sidebar { display: none; padding: 25px; border-radius: var(--radius-md); background: #0b1a2d; color: #9fb0c5; align-self: start; }
.demo-sidebar__label { color: white; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.demo-progress { position: relative; display: grid; gap: 0; margin: 25px 0; padding: 0; list-style: none; }
.demo-progress::before { content: ""; position: absolute; top: 15px; bottom: 15px; left: 15px; width: 1px; background: #32445b; }
.demo-progress li { position: relative; z-index: 1; min-height: 56px; display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.demo-progress li span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid #40536b; border-radius: 50%; background: #0b1a2d; color: #9fb0c5; font-size: .75rem; font-weight: 900; }
.demo-progress li b { padding-top: 5px; font-size: .84rem; }
.demo-progress li.is-current span { border-color: var(--brand-green); background: var(--brand-green); color: #071407; }
.demo-progress li.is-current b { color: white; }
.demo-progress li.is-complete span { border-color: var(--brand-green); color: transparent; }
.demo-progress li.is-complete span::after { content: "✓"; color: var(--brand-green); }
.demo-privacy { display: flex; gap: 10px; padding: 14px; border: 1px solid #2a4059; border-radius: 9px; background: #0e2239; font-size: .78rem; }
.demo-privacy p { margin: 0; }
.demo-panel { min-width: 0; padding: clamp(20px, 5vw, 45px); border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.demo-mobile-progress { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--brand-border); }
.demo-mobile-progress span, .demo-mobile-progress b { display: block; }
.demo-mobile-progress span { color: var(--brand-grey); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.demo-mobile-progress b { color: var(--brand-dark); }
.demo-mobile-progress progress { width: 100px; height: 8px; border: 0; border-radius: 999px; overflow: hidden; }
.demo-mobile-progress progress::-webkit-progress-bar { background: #e4e9ef; }.demo-mobile-progress progress::-webkit-progress-value { background: var(--brand-green); }.demo-mobile-progress progress::-moz-progress-bar { background: var(--brand-green); }
.demo-form { display: block; }
.demo-step { margin: 0; padding: 0; border: 0; }
.demo-step legend { max-width: 720px; margin-bottom: 7px; color: var(--brand-dark); font-size: clamp(1.7rem, 4vw, 2.35rem); font-weight: 850; line-height: 1.14; letter-spacing: -.035em; }
.step-help { margin-bottom: 28px; color: var(--brand-grey); }
.choice-grid { display: grid; gap: 12px; }
.choice-card { position: relative; display: block; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card > span { min-height: 68px; display: flex; flex-direction: column; justify-content: center; padding: 15px 45px 15px 16px; border: 1px solid #afbbc9; border-radius: 10px; background: white; transition: border .16s ease, background .16s ease, box-shadow .16s ease; }
.choice-card > span::after { content: ""; position: absolute; top: 50%; right: 17px; width: 19px; height: 19px; border: 2px solid #8c9bab; border-radius: 50%; transform: translateY(-50%); }
.choice-card small { color: var(--brand-grey); }
.choice-card input:checked + span { border-color: var(--brand-navy); background: #f1f7fd; box-shadow: 0 0 0 1px var(--brand-navy); }
.choice-card input:checked + span::after { border: 5px solid var(--brand-navy); background: white; }
.choice-card input:focus-visible + span { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.choice-card input[aria-invalid="true"] + span { border-color: var(--brand-error); }
.demo-errors { margin-bottom: 20px; padding: 13px 15px; border: 1px solid #f0b3af; border-radius: 8px; background: var(--brand-error-soft); color: #7d1a13; font-weight: 700; }
.demo-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--brand-border); }
.demo-actions [data-demo-next], .demo-actions [data-demo-submit] { margin-left: auto; }
.sample-button { min-height: 44px; margin-bottom: 22px; padding: 9px 14px; border: 1px solid var(--brand-navy); border-radius: 8px; background: #eff7fe; color: var(--brand-navy); font-weight: 800; cursor: pointer; }
.local-photo-notice { display: flex; gap: 12px; margin-bottom: 20px; padding: 15px; border: 1px solid #b9d8ee; border-radius: 9px; background: #eef8ff; }
.local-photo-notice span { color: var(--brand-navy); font-weight: 900; }
.local-photo-notice p { margin: 0; font-size: .88rem; }
.file-drop { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 26px; border: 2px dashed #9fb3c7; border-radius: var(--radius-md); background: #fafcfe; text-align: center; cursor: pointer; }
.file-drop:hover { border-color: var(--brand-navy); background: #f2f8fd; }
.file-drop__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 12px; border-radius: 50%; background: var(--brand-navy); color: white; font-size: 1.4rem; }
.file-drop small { color: var(--brand-grey); }
.file-drop input { width: 100%; margin-top: 16px; font-size: .85rem; }
.photo-previews { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.photo-previews figure { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--brand-border); border-radius: 9px; background: white; }
.photo-previews img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-previews figcaption { padding: 7px; overflow: hidden; color: var(--brand-grey); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.demo-submit-note { padding: 15px; border-left: 4px solid var(--brand-green); background: var(--brand-off-white); color: var(--brand-grey); font-size: .88rem; }
.demo-result:focus { outline: 0; }
.result-celebration { text-align: center; }
.result-celebration > span { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: var(--brand-green); color: #071407; font-size: 1.6rem; font-weight: 900; }
.result-celebration h2 { font-size: clamp(2rem, 5vw, 3rem); }
.result-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 34px 0 22px; padding: 5px; border-radius: 10px; background: #eaf0f6; }
.result-tabs button { min-height: 48px; padding: 8px; border: 0; border-radius: 7px; background: transparent; color: var(--brand-grey); font-weight: 800; cursor: pointer; }
.result-tabs button[aria-selected="true"] { background: white; color: var(--brand-navy); box-shadow: 0 3px 12px rgba(0,0,0,.08); }
.result-view { padding: clamp(20px, 4vw, 36px); border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: var(--brand-off-white); }
.customer-confirmation { max-width: 620px; margin: auto; text-align: center; }
.confirmation-mark { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%; background: var(--brand-green-soft); color: var(--brand-green-dark); font-size: 1.25rem; font-weight: 900; }
.customer-confirmation h3 { font-size: 1.8rem; }
.next-steps { margin-top: 26px; padding: 20px; border-radius: 10px; background: white; text-align: left; }
.next-steps ol { margin-bottom: 0; padding-left: 23px; }
.trade-brief { padding: clamp(18px, 4vw, 30px); border: 1px solid var(--brand-border); border-radius: 12px; background: white; }
.fit-explanation { margin: 22px 0; padding: 14px; border-radius: 8px; background: #f4f7fa; }
.fit-explanation b, .fit-explanation p { display: block; margin: 0; }
.fit-explanation p { color: var(--brand-grey); font-size: .86rem; }
.summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.summary-description, .summary-photos { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--brand-border); }
.summary-description p, .summary-photos p { margin: 5px 0 0; color: var(--brand-grey); }
.trade-control-note { margin: 22px 0 0; padding: 15px; border-left: 4px solid var(--brand-blue); background: #eef7ff; }
.result-cta { margin-top: 28px; padding: 28px; border-radius: var(--radius-md); background: #0b1a2d; color: #b7c7da; text-align: center; }
.result-cta h3 { color: white; }
.text-button { display: block; min-height: 44px; margin: 14px auto 0; border: 0; background: transparent; color: #c9ddf5; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

@media (min-width: 600px) {
  .field-grid, .choice-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-previews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .audience-list div { grid-template-columns: 180px 1fr; gap: 28px; }
}

@media (min-width: 768px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .comparison-grid { grid-template-columns: 1fr 42px 1fr; }
  .comparison-arrow { display: flex; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-flow { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
  .process-flow b { transform: none; }
  .split-heading { grid-template-columns: 1.3fr .7fr; }
  .delivery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .discover-grid { grid-template-columns: .95fr 1.05fr; }
  .channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .included-grid { grid-template-columns: .75fr 1.25fr; }
  .fit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1.18fr .82fr; }
  .honest-panel { grid-template-columns: 70px 1fr; }
  .faq-layout { grid-template-columns: .75fr 1.25fr; }
  .get-started-grid { grid-template-columns: .78fr 1.22fr; }
  .footer-grid { grid-template-columns: 1.6fr .7fr .6fr; }
  .demo-intro__inner { grid-template-columns: 1.4fr .6fr; }
}

@media (min-width: 1080px) {
  :root { --header-height: 82px; }
  .brand-link { flex-basis: 235px; }
  .brand-plate { max-width: 235px; }
  .menu-toggle { display: none; }
  .site-nav { position: static; inset: auto; max-height: none; display: flex; align-items: center; gap: 18px; overflow: visible; padding: 0; border: 0; background: transparent; transform: none; visibility: visible; }
  .site-nav__list { display: flex; align-items: center; gap: 2px; margin: 0; }
  .site-nav__list a { min-height: 44px; display: flex; align-items: center; padding: 10px 9px; font-size: .84rem; }
  .site-nav__list a:hover { color: #83cfff; }
  .nav-cta { width: auto; }
  .hero-grid { grid-template-columns: 1.06fr .94fr; gap: 60px; }
  .brief-shell { justify-self: end; }
  .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .demo-layout { grid-template-columns: 255px 1fr; }
  .demo-sidebar { display: block; }
  .demo-mobile-progress { display: none; }
}

@media (max-width: 599px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-link { flex-basis: 194px; }
  .brand-plate { max-width: 194px; }
  .hero .button { width: 100%; }
  .brief-card__topline, .trade-brief__header { display: grid; }
  .brief-grid, .summary-grid { grid-template-columns: 1fr; }
  .check-list--compact { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .included-list li:nth-child(odd) { border-right: 0; }
  .included-list li:nth-last-child(2) { border-bottom: 1px solid var(--brand-border); }
  .price-card .check-list { grid-template-columns: 1fr; }
  .demo-business-bar > a { display: none; }
  .demo-panel { padding: 18px; }
  .demo-actions { flex-wrap: wrap; }
  .demo-actions .button { flex: 1 1 auto; }
  .result-tabs button { font-size: .78rem; }
  .result-view { padding: 14px; }
}

@media (max-width: 767px) {
  .brief-shell { transform: none; }
}

@media (max-width: 359px) {
  .brand-link { flex-basis: 178px; }
  .brand-plate { max-width: 178px; }
  .menu-toggle { min-width: 54px; }
  .menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .channel-grid { grid-template-columns: 1fr; }
  .check-list--compact { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .site-footer, .button, .demo-actions { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .legal-main { padding: 24px 0; }
  .container { width: 100%; }
}
