/* ALPGA — American Lawyer Purchasing Group Association
   Shared stylesheet for every page. Brand from the shield mark: navy / flag red / gold,
   teal section accents carried over from RZ's 2026-08-16 mockup deck.
   Fonts are the shared /fonts/ set on the VPS (same as InsuredSupport + NADFS). */

@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/dm-serif-normal.woff2) format('woff2'); }
@font-face { font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/dm-serif-italic.woff2) format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 300 800; font-display: swap; src: url(/fonts/jakarta-latin.woff2) format('woff2'); }

:root {
  --navy: #1b2a4a;
  --navy-deep: #12203a;
  --navy-ink: #0f1a2e;
  --red: #b22234;
  --gold: #c9a227;
  --teal: #3d8a9c;
  --teal-soft: #e6f2f5;
  --bg: #f7f8fa;
  --card: #ffffff;
  --text: #1f2a3c;
  --muted: #5b6878;
  --line: rgba(27,42,74,0.12);
  --radius: 14px;
  --shadow: 0 2px 14px rgba(15,26,46,0.07);
  --shadow-lg: 0 10px 34px rgba(15,26,46,0.13);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-size: 16.5px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.4em; }

/* ── The flag stripe — carried over from the coming-soon page ── */
.stripe { position: fixed; top: 0; left: 0; right: 0; height: 5px; z-index: 1001; background: linear-gradient(90deg, var(--red) 0 33.3%, #fff 33.3% 66.6%, var(--navy) 66.6% 100%); }
.stripe::after { content: ""; position: absolute; left: 0; right: 0; top: 5px; height: 2px; background: var(--gold); }

/* ── Header / nav ── */
.site-header { position: sticky; top: 7px; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); margin-top: 7px; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand-name { font-family: var(--serif); font-size: 1.15rem; line-height: 1.1; }
.brand-sub { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-top: 3px; }
.nav-toggle { display: none; }
.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav { margin: 0; padding: 0; }
.nav a, .nav summary { display: block; padding: 10px 13px; font-size: 0.86rem; font-weight: 600; color: var(--navy); border-radius: 8px; cursor: pointer; list-style: none; white-space: nowrap; }
.nav summary::-webkit-details-marker { display: none; }
.nav a:hover, .nav summary:hover, .nav a[aria-current="page"] { background: var(--teal-soft); text-decoration: none; color: var(--navy); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--teal); border-radius: 8px 8px 0 0; }
.nav summary::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: 0 0 3px 8px; }
.nav details { position: relative; }
.nav details[open] > summary { background: var(--teal-soft); }
.nav .menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; margin: 0; z-index: 50; }
.nav .menu li { list-style: none; }
.nav .menu a { padding: 9px 12px; font-weight: 600; white-space: normal; }
.nav .menu a small { display: block; font-weight: 500; color: var(--muted); font-size: 0.74rem; margin-top: 1px; }
.nav .menu a[aria-current="page"] { box-shadow: none; border-radius: 8px; background: var(--teal-soft); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 9px; font-weight: 700; font-size: 0.9rem; border: 2px solid transparent; cursor: pointer; font-family: var(--sans); line-height: 1.2; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(178,34,52,0.28); }
.btn-primary:hover { background: #9d1d2d; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(27,42,74,0.25); }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: rgba(27,42,74,0.06); }
.btn-outline-white { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1rem; border-radius: 11px; }
.nav-cta { margin-left: 8px; }

@media (max-width: 1040px) {
  .nav-burger { display: inline-flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 10px 16px 18px; gap: 2px; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a, .nav summary { padding: 12px 10px; font-size: 1rem; }
  .nav .menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--teal-soft); border-radius: 0; margin: 4px 0 8px 12px; padding: 0 0 0 4px; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .brand-name { font-size: 1rem; }
  .brand img { height: 46px; }
}

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; }
section { padding: clamp(56px, 8vw, 96px) 0; }
section.tight { padding: clamp(36px, 5vw, 60px) 0; }
section.light { background: #fff; }
section.tint { background: var(--teal-soft); }
section.dark { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #d6deea; }
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }
section.dark strong { color: #fff; }
section.dark a { color: #9fd3de; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
section.dark .eyebrow { color: var(--gold); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 760px; }
section.dark .lede { color: #b8c4d6; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.split.rev { grid-template-columns: 0.9fr 1.1fr; }
.split.rev > :first-child { order: 2; }
.split.top { align-items: start; }
@media (max-width: 860px) { .split, .split.rev { grid-template-columns: 1fr; } .split.rev > :first-child { order: 0; } }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ── Cards ── */
.card { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.card.accent { border-top: 4px solid var(--teal); }
.card.accent-red { border-top: 4px solid var(--red); }
.card.accent-gold { border-top: 4px solid var(--gold); }
.card.accent-navy { border-top: 4px solid var(--navy); }
.card h3 { margin-bottom: 0.4em; }
.card .tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.card .tag.red { color: var(--red); }
.card .tag.gold { color: #9c7c14; }
.card-link { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 0.9rem; }
.card-link::after { content: " →"; }
a.card { color: inherit; transition: transform .15s, box-shadow .15s; }
a.card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.icon { width: 44px; height: 44px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: var(--teal-soft); color: var(--teal); margin-bottom: 14px; }
.icon svg { width: 22px; height: 22px; }

/* ── Panels (the two navy boxes on the About slide) ── */
.panel { background: var(--navy); color: #d6deea; border-radius: var(--radius); padding: 30px 30px 26px; box-shadow: var(--shadow); }
.panel h3 { color: #fff; font-family: var(--serif); font-size: 1.5rem; margin-bottom: 6px; }
.panel .sub { color: #b8c4d6; font-size: 0.95rem; margin-bottom: 16px; }
.panel ul { margin: 0; padding-left: 1.15em; }
.panel li { margin-bottom: 0.5em; }
.panel strong { color: #fff; }
.panel a { color: #9fd3de; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: #fff; padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: min(78vh, 720px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px); }
.hero-copy .division { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); margin-bottom: 0.2em; }
.hero-copy .subhead { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--teal); margin-bottom: 18px; line-height: 1.3; }
.hero-copy .lede { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-photo { position: relative; min-height: 380px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.hero-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 22%); z-index: 1; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-photo { min-height: 320px; } .hero-photo::before { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0) 20%); } }

/* Page hero for inner pages */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #d6deea; padding: clamp(48px, 7vw, 84px) 0; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lede { color: #b8c4d6; }
.page-hero.with-photo { padding: 0; }
.page-hero.with-photo .hero-grid { min-height: min(60vh, 560px); }
.page-hero.with-photo .hero-copy { padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 64px); }
.page-hero.with-photo .hero-photo::before { background: linear-gradient(90deg, var(--navy) 0%, rgba(27,42,74,0) 30%); }
@media (max-width: 860px) { .page-hero.with-photo .hero-photo::before { background: linear-gradient(180deg, var(--navy) 0%, rgba(27,42,74,0) 25%); } }
.hero-quote { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: #e6ecf5; border-left: 3px solid var(--gold); padding-left: 16px; margin: 0 0 24px; max-width: 520px; }

/* ── Benefits board (the six-column slide) ── */
.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 680px) { .board { grid-template-columns: 1fr; } }
.board .tile { background: #fff; border-radius: 12px; padding: 22px 18px; border: 1px solid var(--line); border-top: 4px solid var(--teal); box-shadow: var(--shadow); display: flex; flex-direction: column; color: inherit; transition: transform .15s, box-shadow .15s; }
.board .tile:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.board .tile .num { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; color: var(--muted); }
.board .tile h3 { font-size: 1.12rem; margin: 6px 0 4px; }
.board .tile .for { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.board .tile p { font-size: 0.9rem; color: var(--muted); }
.board .tile .more { margin-top: auto; padding-top: 12px; font-weight: 700; font-size: 0.85rem; color: var(--teal); }

/* ── Timeline (History) ── */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--teal), var(--gold)); }
.timeline .ev { position: relative; margin-bottom: 30px; }
.timeline .ev::before { content: ""; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); }
.timeline .ev .yr { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); line-height: 1; margin-bottom: 6px; }

/* ── Steps / checklists ── */
.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 52px; margin-bottom: 18px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-weight: 800; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.facts { list-style: none; padding: 0; margin: 0; }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: none; }

/* ── Callouts ── */
.callout { border-radius: 12px; padding: 20px 24px; background: var(--teal-soft); border-left: 4px solid var(--teal); }
.callout.red { background: #fbeef0; border-left-color: var(--red); }
.callout.gold { background: #fbf6e6; border-left-color: var(--gold); }
.callout.navy { background: #eaeef5; border-left-color: var(--navy); }
.callout p:last-child { margin: 0; }

/* Content that RZ's deck marks as still to come — visible on purpose, so the review shows
   exactly what is outstanding and who owes it. */
.pending { border: 2px dashed rgba(27,42,74,0.3); border-radius: 12px; padding: 22px 26px; background: repeating-linear-gradient(135deg, #fff 0 12px, #f5f6f8 12px 24px); color: var(--muted); }
.pending .lbl { display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.pending p { margin: 0; }

/* ── Documents ── */
.doc { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; color: inherit; box-shadow: var(--shadow); }
.doc:hover { text-decoration: none; box-shadow: var(--shadow-lg); }
.doc .ext { flex-shrink: 0; width: 44px; height: 52px; border-radius: 6px; background: var(--navy); color: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; display: flex; align-items: center; justify-content: center; }
.doc .ext.pdf { background: var(--red); }
.doc .t { font-weight: 700; color: var(--navy); }
.doc .d { font-size: 0.85rem; color: var(--muted); }

/* Rendered legal forms (addendum, waiver) */
.legal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow); font-size: 0.97rem; }
.legal h3 { text-align: center; font-family: var(--sans); font-weight: 800; font-size: 1.05rem; }
.legal .box { display: inline-block; width: 13px; height: 13px; border: 1.5px solid var(--navy); vertical-align: -2px; margin-right: 6px; border-radius: 2px; }
.legal .blank { display: inline-block; min-width: 120px; border-bottom: 1px solid var(--navy); vertical-align: -3px; }
.legal .blank.short { min-width: 70px; }
.legal .req { font-size: 0.85rem; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 18px; }

/* ── Forms ── */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow); }
.form fieldset { border: none; padding: 0; margin: 0 0 26px; }
.form legend { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); margin-bottom: 14px; padding: 0; }
.form .row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
.form .row.c3 { grid-template-columns: repeat(3, 1fr); }
.form .row.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .form .row, .form .row.c3, .form .row.c4 { grid-template-columns: 1fr; } }
.form label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.form input[type=text], .form input[type=email], .form input[type=tel], .form input[type=url], .form input[type=number], .form select, .form textarea { width: 100%; padding: 10px 12px; border: 1px solid rgba(27,42,74,0.25); border-radius: 8px; font: inherit; font-size: 0.95rem; color: var(--text); background: #fff; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.form .field { margin-bottom: 14px; }
.form .opts { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.form .opts label { font-weight: 500; display: inline-flex; align-items: center; gap: 7px; font-size: 0.92rem; margin: 0; }
.form .note { font-size: 0.85rem; color: var(--muted); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }
.form-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
#app-atty, #app-pro { position: absolute; opacity: 0; pointer-events: none; }
.form-tabs label { padding: 10px 18px; border-radius: 9px; border: 1px solid var(--line); background: #fff; font-weight: 700; font-size: 0.9rem; cursor: pointer; color: var(--navy); }
#app-atty:checked ~ .form-tabs label[for=app-atty], #app-pro:checked ~ .form-tabs label[for=app-pro] { background: var(--navy); color: #fff; border-color: var(--navy); }
.app-pane { display: none; }
#app-atty:checked ~ .form #pane-atty, #app-pro:checked ~ .form #pane-pro { display: block; }

/* Form outcome — honeypot, error message, and the confirmation that replaces the form */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form .msg { display: none; margin-top: 12px; padding: 12px 16px; border-radius: 9px; font-size: 0.92rem; }
.form .msg.err { display: block; background: #fbeef0; color: #7d1622; border-left: 4px solid var(--red); }
.confirm { display: none; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.confirm.show { display: block; }
.confirm .ok { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
.confirm h3 { margin-bottom: 6px; }
.confirm p { color: var(--muted); }

/* ── FAQ ── */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 22px; margin-bottom: 10px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 20px; color: var(--text); }

/* ── Partner logos ── */
.partner { display: flex; align-items: center; gap: 22px; padding: 22px 26px; background: #fff; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.partner img { height: 44px; width: auto; }
.partner .logo-dark { background: #0d1626; padding: 8px 12px; border-radius: 8px; height: 56px; }
.partner .logo-dark img { height: 100%; }
@media (max-width: 640px) { .partner { flex-direction: column; align-items: flex-start; } }

/* ── CTA band ── */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, #8f1a29 100%); color: #fff; border-radius: 18px; padding: clamp(32px, 5vw, 56px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0; }
.cta-band .btn-white { background: #fff; color: var(--red); }
.cta-band .btn-white:hover { background: #fff3f4; color: var(--red); }

/* ── Footer ── */
.site-footer { background: var(--navy-ink); color: #a9b6c9; padding: 60px 0 30px; font-size: 0.9rem; }
.site-footer a { color: #cfd8e6; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 84px; width: auto; margin-bottom: 14px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-brand p { color: #8d9bb0; font-size: 0.86rem; }
.site-footer h4 { color: #fff; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: #7f8da3; font-size: 0.82rem; }
