@import "tailwindcss";

:root {
  --navy: #071b33;
  --navy-2: #0b2c50;
  --blue: #075bea;
  --blue-dark: #0348bc;
  --mint: #22c59b;
  --mint-soft: #e7f9f4;
  --ink: #10243e;
  --muted: #63748a;
  --line: #dfe7ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 36, 76, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
body, button, input, select, textarea { font-family: var(--font-geist-sans), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(7, 91, 234, .28); outline-offset: 2px; }

.page-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 112px; }
.eyebrow { display: inline-flex; align-items: center; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #83e4c8; }

.button { min-height: 48px; padding: 0 22px; border: 1px solid var(--blue); border-radius: 12px; background: var(--blue); color: white; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 14px; font-weight: 700; cursor: pointer; transition: .25s ease; }
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(7, 91, 234, .19); }
.button:disabled { opacity: .65; cursor: wait; transform: none; }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-large { min-height: 56px; padding-inline: 27px; border-radius: 14px; }
.button-ghost { background: white; color: var(--ink); border-color: var(--line); }
.button-ghost:hover { background: var(--soft); color: var(--blue); border-color: #bdd0e4; box-shadow: none; }
.button-light { background: white; border-color: white; color: var(--navy); }
.button-light:hover { background: #eef5ff; border-color: #eef5ff; color: var(--blue-dark); }
.button-full { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 700; font-size: 14px; }
.text-link:hover { gap: 12px; }

/* Header */
.site-header { height: 78px; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(213, 225, 237, .85); background: rgba(255,255,255,.94); backdrop-filter: blur(18px); }
.header-shell { width: min(1240px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 800; letter-spacing: -.035em; color: var(--navy); white-space: nowrap; }
.brand > span:last-child > span { color: var(--blue); }
.brand-mark { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--blue), #4589ff); color: white; border-radius: 13px; box-shadow: 0 9px 22px rgba(7,91,234,.22); }
.desktop-nav { height: 100%; display: flex; align-items: center; gap: 32px; }
.desktop-nav > a, .nav-dropdown-trigger { height: 100%; display: inline-flex; align-items: center; gap: 5px; color: #344a63; font-size: 14px; font-weight: 600; position: relative; }
.desktop-nav > a::after, .nav-dropdown-trigger::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; transform: scaleX(0); background: var(--blue); transition: .2s; }
.desktop-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--blue); }
.desktop-nav > a:hover::after, .nav-dropdown-trigger:hover::after { transform: scaleX(1); }
.nav-dropdown { height: 100%; }
.nav-dropdown-panel { position: absolute; width: 640px; top: 69px; left: 50%; transform: translateX(-50%) translateY(8px); padding: 24px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transition: .22s; }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-heading { padding: 0 2px 15px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.dropdown-heading span { font-weight: 750; }
.dropdown-heading a { color: var(--blue); font-size: 13px; font-weight: 650; }
.dropdown-products { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding-top: 13px; }
.dropdown-products a { display: flex; align-items: center; gap: 11px; padding: 10px; border-radius: 12px; font-size: 13px; font-weight: 650; }
.dropdown-products a:hover { background: var(--soft); color: var(--blue); }
.dropdown-products small { display: block; color: #8290a2; font-size: 10px; font-weight: 500; margin-top: 2px; }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: white; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; color: #334b65; font-size: 13px; font-weight: 650; }
.header-phone svg { color: var(--blue); }
.mobile-menu-button { display: none; background: transparent; border: 0; color: var(--navy); cursor: pointer; }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 0; background: linear-gradient(130deg, #f8fbff 0%, #f1f7ff 55%, #f2fbf8 100%); border-bottom: 1px solid #deebf5; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: radial-gradient(#6a8caf 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, black, transparent 45%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -180px; top: -210px; background: rgba(34,197,155,.16); }
.hero-orb-two { width: 280px; height: 280px; left: 45%; bottom: -230px; background: rgba(7,91,234,.12); }
.hero-shell { min-height: 520px; position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 74px; }
.hero-kicker { width: fit-content; display: flex; align-items: center; gap: 7px; padding: 8px 12px; background: white; border: 1px solid #d9e6f1; color: var(--blue); border-radius: 99px; font-size: 12px; font-weight: 700; box-shadow: 0 7px 22px rgba(18, 54, 88, .06); }
.hero-copy h1 { margin: 22px 0 23px; max-width: 690px; color: var(--navy); font-size: clamp(54px, 6vw, 78px); line-height: .99; letter-spacing: -.06em; font-weight: 760; }
.hero-copy h1 span { color: var(--blue); }
.hero-copy > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: #466078; font-size: 12px; font-weight: 650; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--mint); }
.hero-quote-card { align-self: center; padding: 26px; background: rgba(255,255,255,.94); border: 1px solid rgba(204,218,232,.9); border-radius: 26px; box-shadow: 0 32px 80px rgba(13, 48, 86, .14); backdrop-filter: blur(12px); }
.quote-card-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; }
.quote-card-heading small { color: var(--blue); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.quote-card-heading h2 { margin: 4px 0 0; color: var(--navy); font-size: 22px; letter-spacing: -.025em; }
.quote-card-heading > span { padding: 7px 9px; color: #147e62; background: var(--mint-soft); border-radius: 8px; font-size: 11px; font-weight: 800; }
.hero-product-list { border-block: 1px solid var(--line); }
.hero-product-list a { min-height: 62px; display: grid; grid-template-columns: 40px 1fr 18px; align-items: center; gap: 12px; border-bottom: 1px solid #e7edf3; transition: .2s; }
.hero-product-list a:last-child { border-bottom: 0; }
.hero-product-list a:hover { padding-inline: 7px; color: var(--blue); }
.hero-product-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: var(--navy); }
.hero-product-list strong { display: block; font-size: 13px; }
.hero-product-list small { display: block; margin-top: 2px; color: #8391a2; font-size: 10px; }
.hero-product-list svg:last-child { color: #9fb0c1; }
.all-products-link { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 19px 0 0; color: var(--blue); font-size: 13px; font-weight: 700; }
.hero-product-strip { height: 64px; position: relative; z-index: 2; display: flex; align-items: center; gap: 28px; border-top: 1px solid rgba(203,218,231,.9); }
.hero-product-strip > span { color: #8292a4; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-product-strip a { font-size: 13px; color: #3b526c; font-weight: 650; }
.hero-product-strip a:hover { color: var(--blue); }

/* Sections and cards */
.section-heading h2 { margin: 12px 0 0; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { color: var(--muted); line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1fr .62fr; align-items: end; gap: 80px; margin-bottom: 48px; }
.split-heading > div:last-child { padding-bottom: 5px; }
.split-heading p { margin: 0 0 15px; }
.centered-heading { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.centered-heading p { margin: 13px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 260px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; background: white; border: 1px solid var(--line); border-radius: 20px; transition: .28s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #bad0e5; box-shadow: 0 20px 50px rgba(16, 51, 88, .1); }
.product-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.product-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--navy); }
.product-arrow { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #8b9bad; transition: .2s; }
.product-card:hover .product-arrow { color: white; background: var(--blue); border-color: var(--blue); }
.product-category { color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 7px 0 9px; color: var(--navy); font-size: 21px; letter-spacing: -.025em; }
.product-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.soft-section { background: var(--soft); border-block: 1px solid #e5edf4; }
.promise-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.promise-copy h2 { margin: 13px 0 20px; color: var(--navy); font-size: clamp(38px, 4vw, 55px); line-height: 1.08; letter-spacing: -.045em; }
.promise-copy p { margin: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.promise-cards { display: grid; gap: 13px; }
.promise-cards article { padding: 24px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.promise-cards article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue); background: #eaf2ff; border-radius: 14px; }
.promise-cards h3 { margin: 0 0 6px; color: var(--navy); font-size: 17px; }
.promise-cards p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.process-grid::before { content: ""; position: absolute; top: 49px; left: 17%; right: 17%; height: 1px; background: #cbd8e5; }
.process-grid article { position: relative; text-align: center; padding-inline: 34px; }
.process-grid article > span { position: absolute; top: 0; right: 28%; color: #bdcad7; font-size: 11px; font-weight: 800; }
.process-icon { width: 76px; height: 76px; position: relative; z-index: 2; margin: 10px auto 23px; display: grid; place-items: center; color: var(--blue); background: white; border: 1px solid #cbd9e7; border-radius: 23px; box-shadow: 0 12px 30px rgba(12, 53, 94, .08); }
.process-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.cta-section { min-height: 210px; margin-bottom: 112px; padding: 46px 52px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: radial-gradient(circle at 80% 0%, rgba(34,197,155,.23), transparent 35%), linear-gradient(125deg, #071b33, #0b3764); border-radius: 28px; overflow: hidden; }
.cta-section > div { display: flex; align-items: center; gap: 24px; }
.cta-icon { width: 64px; height: 64px; flex: 0 0 auto; display: grid; place-items: center; color: #8de6ce; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 18px; }
.cta-section h2 { margin: 7px 0 6px; font-size: 31px; letter-spacing: -.035em; }
.cta-section p { margin: 0; color: #bbcad9; }

/* Generic subpage */
.subpage-hero { min-height: 380px; padding: 95px 0 78px; display: flex; align-items: center; text-align: center; background: radial-gradient(circle at 15% 10%, rgba(34,197,155,.11), transparent 26%), linear-gradient(140deg, #f8fbff, #eef5ff); border-bottom: 1px solid var(--line); }
.subpage-hero h1 { max-width: 820px; margin: 15px auto 18px; color: var(--navy); font-size: clamp(46px, 5.4vw, 68px); line-height: 1.04; letter-spacing: -.055em; }
.subpage-hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }
.narrow-hero { max-width: 900px; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 38px; }
.filter-tabs button { padding: 11px 17px; background: white; color: #567087; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 650; cursor: pointer; }
.filter-tabs button:hover, .filter-tabs button.active { background: var(--navy); border-color: var(--navy); color: white; }
.all-products-grid { grid-template-columns: repeat(3, 1fr); }

/* Product detail */
.product-detail-hero { min-height: 590px; position: relative; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #f8fbff, #f0f7ff); border-bottom: 1px solid var(--line); }
.product-detail-orb { width: 520px; height: 520px; position: absolute; right: -150px; top: -190px; border-radius: 50%; filter: blur(4px); opacity: .72; }
.product-detail-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .65fr; gap: 95px; align-items: center; padding-block: 80px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; color: #7c8c9e; font-size: 12px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb strong { color: #4b6076; }
.product-detail-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; color: var(--navy); border-radius: 18px; }
.product-detail-copy h1 { max-width: 720px; margin: 12px 0 19px; color: var(--navy); font-size: clamp(50px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.product-detail-copy > p { max-width: 690px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.product-benefit-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.product-benefit-card > span { display: block; padding-bottom: 18px; color: #75869a; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.product-benefit-card ul { display: grid; gap: 18px; margin: 25px 0; padding: 0; list-style: none; }
.product-benefit-card li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: 14px; font-weight: 650; }
.product-benefit-card li svg { color: var(--mint); }
.benefit-note { padding: 16px; display: grid; grid-template-columns: 24px 1fr; gap: 11px; color: var(--blue-dark); background: #edf4ff; border-radius: 13px; }
.benefit-note p { margin: 0; font-size: 12px; line-height: 1.55; }
.detail-content-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 100px; align-items: start; }
.detail-content-grid h2 { margin: 12px 0 14px; color: var(--navy); font-size: 42px; letter-spacing: -.04em; }
.detail-lead { max-width: 650px; color: var(--muted); line-height: 1.75; }
.documents-list { display: grid; gap: 10px; margin-top: 32px; }
.documents-list > div { min-height: 68px; padding: 13px 17px; display: grid; grid-template-columns: 34px 28px 1fr; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 13px; }
.documents-list > div > span { color: #a3afbc; font-size: 11px; font-weight: 750; }
.documents-list svg { color: var(--blue); }
.documents-list strong { font-size: 14px; }
.detail-steps-card { padding: 32px; background: var(--soft); border: 1px solid var(--line); border-radius: 22px; }
.detail-steps-card h3 { margin: 0 0 25px; color: var(--navy); font-size: 22px; }
.detail-steps-card ol { display: grid; gap: 22px; margin: 0 0 28px; padding: 0; list-style: none; }
.detail-steps-card li { display: grid; grid-template-columns: 29px 1fr; gap: 12px; }
.detail-steps-card li > span { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: var(--mint); border-radius: 50%; }
.detail-steps-card strong { color: var(--navy); font-size: 14px; }
.detail-steps-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Quote */
.quote-page { min-height: 700px; padding-block: 64px 110px; background: #f5f8fb; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; align-items: start; }
.quote-main { min-width: 0; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 25px; }
.quote-heading-row { display: flex; justify-content: space-between; gap: 30px; }
.quote-heading-row h1 { margin: 9px 0 10px; color: var(--navy); font-size: 34px; letter-spacing: -.04em; }
.quote-heading-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.step-badge { height: fit-content; padding: 8px 11px; color: var(--blue); background: #edf4ff; border-radius: 9px; font-size: 12px; font-weight: 750; white-space: nowrap; }
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0 38px; }
.stepper > div { display: flex; align-items: center; gap: 9px; position: relative; color: #9aa8b7; }
.stepper > div::after { content: ""; height: 1px; position: absolute; left: 42px; right: 8px; top: 15px; background: #dfe7ef; }
.stepper > div:last-child::after { display: none; }
.stepper span { width: 30px; height: 30px; position: relative; z-index: 2; display: grid; place-items: center; background: white; border: 1px solid #cfd9e3; border-radius: 50%; font-size: 11px; font-weight: 750; }
.stepper em { font-size: 11px; font-style: normal; font-weight: 650; }
.stepper > div.active { color: var(--blue); }
.stepper > div.active span { color: white; background: var(--blue); border-color: var(--blue); }
.stepper > div.active::after { background: #86aef2; }
.product-select-section { margin-bottom: 32px; }
.product-select-section h2 { margin: 0 0 12px; color: #63758a; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.quote-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.quote-product-grid button { min-height: 76px; padding: 11px 14px; display: grid; grid-template-columns: 42px 1fr 20px; gap: 12px; align-items: center; text-align: left; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: .2s; }
.quote-product-grid button:hover { border-color: #9db9d5; background: #fbfdff; }
.quote-product-grid button.selected { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(7,91,234,.08); }
.quote-product-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; }
.quote-product-grid strong { display: block; font-size: 13px; }
.quote-product-grid small { display: block; margin-top: 3px; color: #8795a5; font-size: 10px; line-height: 1.3; }
.radio-dot { width: 18px; height: 18px; display: grid; place-items: center; color: transparent; border: 1px solid #c7d2dd; border-radius: 50%; }
.quote-product-grid button.selected .radio-dot { color: white; background: var(--blue); border-color: var(--blue); }
.quote-form { display: grid; gap: 25px; }
.form-section { padding: 27px; border: 1px solid var(--line); border-radius: 18px; }
.form-section-heading { display: grid; grid-template-columns: 32px 1fr; gap: 11px; margin-bottom: 24px; }
.form-section-heading > span { width: 31px; height: 31px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 9px; font-size: 10px; font-weight: 800; }
.form-section-heading h2 { margin: 0 0 3px; color: var(--navy); font-size: 17px; }
.form-section-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { min-width: 0; display: flex; flex-direction: column; gap: 7px; color: #42586f; font-size: 12px; font-weight: 650; }
.form-grid label > span b { margin-left: 3px; color: #d85858; }
.form-grid input, .form-grid select, .form-grid textarea, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 47px; padding: 11px 13px; color: var(--ink); background: white; border: 1px solid #ccd7e2; border-radius: 10px; font-size: 13px; transition: .2s; }
.form-grid textarea, .contact-form textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,91,234,.08); }
.form-grid label small { color: #8b98a7; font-size: 10px; line-height: 1.4; font-weight: 450; }
.field-span-2 { grid-column: span 2; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; padding-top: 4px; }
.form-actions-end { justify-content: flex-end; }
.review-card { padding: 6px; }
.review-product { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 20px; background: var(--soft); border-radius: 16px; }
.review-product small { color: #7e8e9f; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.review-product h2 { margin: 3px 0 0; color: var(--navy); font-size: 18px; }
.review-product button { color: var(--blue); background: transparent; border: 0; font-size: 12px; font-weight: 700; cursor: pointer; }
.review-section { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 26px 20px; border-bottom: 1px solid var(--line); }
.review-section span { display: block; margin-bottom: 4px; color: #8997a7; font-size: 10px; }
.review-section strong { font-size: 13px; }
.review-note { margin: 24px 0; padding: 15px; display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: #355e8a; background: #edf4ff; border-radius: 12px; }
.review-note p { margin: 0; font-size: 11px; line-height: 1.5; }
.consent-stack { display: grid; gap: 13px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #65778b; font-size: 11px; line-height: 1.55; cursor: pointer; }
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }
.form-error { margin: 10px 0 0; color: #b43131; font-size: 12px; }
.quote-aside { min-width: 0; }
.aside-sticky { position: sticky; top: 104px; padding: 28px; background: var(--navy); color: white; border-radius: 23px; box-shadow: var(--shadow); }
.aside-product-mark { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 22px; color: var(--navy); border-radius: 17px; }
.aside-sticky h3 { margin: 8px 0 10px; font-size: 24px; letter-spacing: -.025em; }
.aside-sticky > p { margin: 0; color: #adbecf; font-size: 12px; line-height: 1.65; }
.aside-sticky ul { display: grid; gap: 11px; margin: 23px 0 0; padding: 0; list-style: none; color: #d4e0eb; font-size: 11px; }
.aside-sticky li { display: flex; gap: 8px; align-items: center; }
.aside-sticky li svg { color: var(--mint); }
.aside-divider { height: 1px; margin: 24px 0; background: rgba(255,255,255,.12); }
.aside-trust { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin-top: 15px; color: #78ddc1; }
.aside-trust strong, .aside-trust small { display: block; }
.aside-trust strong { color: white; font-size: 11px; }
.aside-trust small { margin-top: 3px; color: #8299ae; font-size: 9px; }
.quote-success { max-width: 720px; min-height: 570px; margin: 20px auto; padding: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: white; border: 1px solid var(--line); border-radius: 26px; }
.success-icon { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 24px; color: #159676; background: var(--mint-soft); border-radius: 50%; }
.quote-success h1 { margin: 12px 0 14px; color: var(--navy); font-size: 38px; letter-spacing: -.04em; }
.quote-success > p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.7; }
.reference-box { width: 100%; max-width: 380px; margin: 28px 0; padding: 17px; background: var(--soft); border-radius: 13px; }
.reference-box span, .reference-box strong { display: block; }
.reference-box span { color: #7c8b9b; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.reference-box strong { margin-top: 5px; color: var(--blue); font-size: 18px; letter-spacing: .05em; }
.success-actions { display: flex; gap: 10px; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Search-friendly FAQ content */
.faq-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin: 13px 0 17px; color: var(--navy); font-size: clamp(36px, 4vw, 50px); line-height: 1.08; letter-spacing: -.045em; }
.faq-intro p { margin: 0 0 20px; color: var(--muted); line-height: 1.75; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { padding: 0 22px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.faq-list summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-size: 15px; font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 50%; font-size: 19px; font-weight: 450; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -1px 42px 21px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-section + .cta-section { margin-top: 112px; }

/* About */
.story-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 100px; align-items: center; }
.story-visual { min-height: 480px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at center, #e7f1ff 0, #f3f8fd 55%, transparent 56%); }
.story-shield { width: 190px; height: 190px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--blue), #4b91ff); border-radius: 55px; transform: rotate(-7deg); box-shadow: 0 35px 70px rgba(7,91,234,.24); }
.story-shield svg { transform: rotate(7deg); }
.story-float { position: absolute; padding: 15px 17px; display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: center; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 16px 38px rgba(12,46,80,.11); }
.story-float-one { top: 70px; right: 25px; }
.story-float-two { bottom: 70px; left: 20px; color: #14926f; }
.story-float strong, .story-float small { display: block; }
.story-float strong { color: var(--navy); font-size: 12px; }
.story-float small { margin-top: 2px; color: #8290a0; font-size: 9px; }
.story-copy h2 { margin: 13px 0 22px; color: var(--navy); font-size: 48px; line-height: 1.08; letter-spacing: -.045em; }
.story-copy p { color: var(--muted); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid article { padding: 33px; text-align: center; background: white; border: 1px solid var(--line); border-radius: 20px; }
.values-grid article > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 20px; color: var(--blue); background: #edf4ff; border-radius: 17px; }
.values-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.simple-cta { min-height: 180px; }

/* Claims */
.claims-hero { text-align: left; }
.claims-hero-grid { display: grid; grid-template-columns: 1fr .55fr; gap: 80px; align-items: center; }
.claims-hero h1 { margin-inline: 0; }
.claims-hero p { margin-inline: 0; }
.emergency-card { padding: 26px; display: grid; grid-template-columns: 34px 1fr; gap: 14px; color: #b25a19; background: #fff8ee; border: 1px solid #f2d6b8; border-radius: 18px; }
.emergency-card strong { color: #71380f; }
.emergency-card p { margin: 7px 0 0; color: #8b6549; font-size: 12px; line-height: 1.6; }
.claim-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.claim-type-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 20px; }
.claim-type-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 14px; }
.claim-type-grid h3 { margin: 20px 0; color: var(--navy); font-size: 20px; }
.claim-type-grid ol { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.claim-type-grid li { display: grid; grid-template-columns: 24px 1fr; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.claim-type-grid li span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 50%; font-size: 9px; font-weight: 750; }
.claims-docs-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 100px; align-items: center; }
.claims-docs-grid h2 { margin: 12px 0 15px; color: var(--navy); font-size: 44px; letter-spacing: -.04em; }
.claims-docs-grid p { color: var(--muted); line-height: 1.7; }
.claims-doc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.claims-doc-list span { min-height: 100px; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.claims-doc-list svg { color: var(--blue); }
.claims-doc-list strong { color: var(--navy); font-size: 13px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .8fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy h2 { margin: 12px 0 16px; color: var(--navy); font-size: 45px; letter-spacing: -.04em; }
.contact-copy > p { color: var(--muted); line-height: 1.75; }
.contact-cards { display: grid; gap: 10px; margin: 30px 0; }
.contact-cards a { padding: 14px; display: grid; grid-template-columns: 43px 1fr; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 13px; }
.contact-cards a:hover { border-color: #aabfd4; background: var(--soft); }
.contact-cards a > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 11px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { margin-bottom: 3px; color: #8a98a8; font-size: 10px; }
.contact-cards strong { color: var(--navy); font-size: 13px; }
.contact-meta { display: grid; gap: 10px; color: var(--muted); font-size: 12px; }
.contact-meta p { display: flex; gap: 9px; align-items: center; margin: 0; }
.contact-meta svg { color: var(--blue); }
.contact-form-card { padding: 34px; background: var(--soft); border: 1px solid var(--line); border-radius: 23px; }
.contact-form-card h2 { margin: 8px 0 24px; color: var(--navy); font-size: 30px; }
.contact-form { display: grid; gap: 18px; }
.contact-form .button { justify-self: start; }
.compact-success { min-height: 420px; padding: 50px 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #168c6d; }
.compact-success h3 { margin: 16px 0 7px; color: var(--navy); font-size: 25px; }
.compact-success p { max-width: 360px; margin: 0 0 24px; color: var(--muted); line-height: 1.6; }

/* Legal */
.legal-content { max-width: 850px; }
.legal-content h2 { margin: 40px 0 12px; color: var(--navy); font-size: 24px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); line-height: 1.85; }
.legal-note { margin-top: 45px; padding: 20px; color: #79511d; background: #fff8e9; border: 1px solid #ead4ae; border-radius: 14px; font-size: 12px; line-height: 1.65; }
.not-found { min-height: 650px; padding: 80px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found > svg { margin-bottom: 20px; color: var(--blue); }
.not-found h1 { margin: 10px 0; color: var(--navy); font-size: 38px; }
.not-found p { margin: 0 0 24px; color: var(--muted); }

/* Footer */
.site-footer { padding-top: 70px; color: white; background: #061629; }
.footer-shell { width: min(1180px, calc(100% - 48px)); margin: auto; }
.footer-main { display: grid; grid-template-columns: 1.25fr .7fr .8fr 1.1fr; gap: 55px; padding-bottom: 55px; }
.brand-light { color: white; }
.footer-brand-block p { max-width: 330px; margin: 20px 0; color: #8399ad; font-size: 12px; line-height: 1.75; }
.socials { display: flex; gap: 9px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; color: #adc0d1; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; }
.socials a:hover { color: white; background: var(--blue); border-color: var(--blue); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h3 { margin: 7px 0 8px; color: white; font-size: 13px; }
.footer-column a, .footer-column p { margin: 0; color: #8298ac; font-size: 11px; line-height: 1.55; }
.footer-column a:hover { color: white; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { flex: 0 0 auto; color: #60d9b8; }
.footer-bottom { min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #61788d; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .header-phone span { display: none; }
  .hero-shell { gap: 40px; }
  .hero-copy h1 { font-size: 60px; }
  .quote-layout { grid-template-columns: minmax(0, 1fr) 280px; }
  .footer-main { grid-template-columns: 1.2fr .7fr .8fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section { padding-block: 82px; }
  .desktop-nav, .header-phone, .header-actions > .button { display: none; }
  .mobile-menu-button { display: grid; place-items: center; }
  .mobile-nav { position: absolute; top: 78px; left: 0; right: 0; padding: 20px 24px 25px; display: grid; gap: 4px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(9,37,67,.12); }
  .mobile-nav > a:not(.button) { padding: 13px 5px; color: #344d67; border-bottom: 1px solid #edf1f5; font-size: 14px; font-weight: 650; }
  .mobile-nav .button { margin-top: 10px; }
  .hero { padding-top: 60px; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-inline: auto; }
  .hero-kicker, .hero-actions, .hero-trust { justify-content: center; margin-inline: auto; }
  .hero-quote-card { width: min(620px, 100%); margin: 0 auto 60px; }
  .hero-product-strip { overflow-x: auto; white-space: nowrap; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid, .story-grid, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .process-grid::before { display: none; }
  .cta-section { padding: 38px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 45px; }
  .product-benefit-card { max-width: 620px; }
  .detail-content-grid { grid-template-columns: 1fr; gap: 55px; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-aside { display: none; }
  .claims-hero-grid, .claims-docs-grid { grid-template-columns: 1fr; gap: 40px; }
  .claim-type-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-shell, .footer-shell { width: min(100% - 30px, 1180px); }
  .header-shell { width: calc(100% - 28px); }
  .site-header { height: 70px; }
  .mobile-nav { top: 70px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; }
  .hero { padding-top: 48px; }
  .hero-copy h1 { font-size: 47px; }
  .hero-copy > p { font-size: 15px; line-height: 1.65; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 10px 18px; }
  .hero-quote-card { padding: 19px; border-radius: 20px; }
  .hero-product-strip { gap: 20px; }
  .hero-product-strip > span { display: none; }
  .section { padding-block: 68px; }
  .section-heading h2, .promise-copy h2 { font-size: 36px; }
  .faq-intro h2 { font-size: 36px; }
  .faq-list details { padding-inline: 18px; }
  .faq-list details p { margin-right: 0; }
  .faq-section + .cta-section { margin-top: 68px; }
  .centered-heading { margin-bottom: 36px; }
  .product-grid, .all-products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 230px; }
  .promise-cards article { padding: 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; }
  .cta-section { margin-bottom: 68px; padding: 31px 25px; flex-direction: column; align-items: stretch; }
  .cta-section > div { align-items: flex-start; }
  .cta-icon { display: none; }
  .cta-section h2 { font-size: 27px; }
  .subpage-hero { min-height: 330px; padding: 70px 0 58px; }
  .subpage-hero h1 { font-size: 42px; }
  .subpage-hero p { font-size: 15px; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .filter-tabs button { flex: 0 0 auto; }
  .product-detail-hero { min-height: auto; }
  .product-detail-grid { padding-block: 48px 65px; }
  .product-detail-copy h1 { font-size: 43px; }
  .product-detail-copy > p { font-size: 15px; }
  .product-detail-copy .button { width: 100%; }
  .product-benefit-card { padding: 24px; }
  .detail-content-grid h2 { font-size: 35px; }
  .quote-page { padding-block: 25px 70px; }
  .quote-main { padding: 21px 16px; border-radius: 18px; }
  .quote-heading-row h1 { font-size: 27px; }
  .stepper em { display: none; }
  .stepper > div::after { left: 34px; }
  .quote-product-grid, .form-grid, .review-section { grid-template-columns: 1fr; }
  .field-span-2 { grid-column: span 1; }
  .form-section { padding: 20px 15px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .review-product { grid-template-columns: 52px 1fr; }
  .review-product button { grid-column: 2; justify-self: start; padding: 0; }
  .quote-success { padding: 45px 20px; }
  .quote-success h1 { font-size: 31px; }
  .success-actions { width: 100%; flex-direction: column; }
  .story-visual { min-height: 360px; }
  .story-shield { width: 145px; height: 145px; border-radius: 42px; }
  .story-float-one { top: 35px; right: 0; }
  .story-float-two { bottom: 35px; left: 0; }
  .story-copy h2, .contact-copy h2, .claims-docs-grid h2 { font-size: 36px; }
  .claims-doc-list { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand-block, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 22px; flex-direction: column; align-items: flex-start; justify-content: center; }
}
