/* CDA Resident Guides — component styles on top of Tailwind (DESIGN.md) */

html { scroll-behavior: smooth; }

.purple-tint-shadow { box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35); }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #a43170;
}
.headline {
  font-size: 30px; line-height: 1.2; font-weight: 800; color: #3c1138;
}
@media (min-width: 768px) {
  .headline { font-size: 40px; line-height: 1.15; letter-spacing: -1px; }
}

/* Feature cards (home) */
.feature-card {
  background: #ffffff; padding: 32px; border-radius: 1.125rem;
  border: 1px solid #EEEEEE; transition: transform .3s;
  box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card h3 { font-size: 22px; font-weight: 700; color: #3c1138; margin-bottom: 8px; }
.feature-card p { color: #666666; font-size: 15px; line-height: 1.6; }
.feature-icon {
  width: 48px; height: 48px; background: rgba(60,17,56,0.05); border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; color: #3c1138; margin-bottom: 24px;
}

/* Guide cards (home) */
.guide-card {
  background: #ffffff; padding: 32px; border-radius: 1.125rem;
  border: 1px solid #EEEEEE; text-decoration: none; display: block;
  box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35);
  transition: transform .3s;
}
.guide-card:hover { transform: translateY(-6px); }
.guide-card h3 { font-size: 22px; font-weight: 700; color: #3c1138; margin-bottom: 10px; }
.guide-card p { color: #666666; margin-bottom: 22px; line-height: 1.6; }
.guide-icon {
  width: 56px; height: 56px; background: rgba(164,49,112,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: #a43170;
  margin-bottom: 24px; transition: background .3s, color .3s;
}
.guide-card:hover .guide-icon { background: #a43170; color: #ffffff; }
.guide-link { color: #a43170; font-weight: 700; display: inline-flex; align-items: center; }

/* Accordions */
.accordion-item {
  background: #ffffff; border-radius: 1.125rem; overflow: hidden;
  border: 1px solid #EEEEEE; transition: box-shadow .3s;
  box-shadow: 0 4px 14px -10px rgba(85,39,79,0.25);
}
.accordion-header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 26px; text-align: left; background: none; border: none;
  cursor: pointer; font-family: 'Figtree', sans-serif;
  font-size: 17px; font-weight: 700; color: #3c1138; transition: background .2s;
}
.accordion-header:hover { background: #f3f3f4; }
.accordion-header .material-symbols-outlined { color: #a43170; flex-shrink: 0; }
.accordion-item.open .accordion-header { background: #D7C6E6; }
.accordion-body {
  padding: 22px 26px; color: #666666; border-top: 1px solid #EEEEEE;
  font-size: 15.5px; line-height: 1.7;
}
.accordion-body ul { list-style: none; padding: 0; margin: 10px 0 0; }
.accordion-body ul > li {
  padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid #f3f3f4;
}
.accordion-body ul > li:last-child { border-bottom: none; }
.accordion-body ul > li::before {
  content: ''; position: absolute; left: 4px; top: 16px;
  width: 8px; height: 8px; border-radius: 50%; background: #a43170;
}

/* Guide page tab nav */
.tab-nav {
  background: rgba(249,249,249,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid #EEEEEE; position: sticky; top: 80px; z-index: 40;
}
.tab-nav-inner {
  max-width: 1024px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px);
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
}
.tab-nav-inner::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0; margin: 10px 0; padding: 8px 18px; border-radius: 9999px;
  background: none; border: 1.5px solid transparent; cursor: pointer;
  font-family: 'Figtree', sans-serif; font-size: 13.5px; font-weight: 600;
  color: #666666; white-space: nowrap; transition: all .2s;
}
.tab-btn:hover { color: #a43170; border-color: #d2c2cb; }
.tab-btn.active { background: #3c1138; color: #ffffff; }

.tab-panel { display: none; animation: fadeUp .3s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Callouts */
.callout {
  border-radius: 12px; padding: 18px 22px; margin: 20px 0;
  display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; line-height: 1.65;
}
.callout .material-symbols-outlined { flex-shrink: 0; margin-top: 1px; }
.callout > div > strong { display: block; margin-bottom: 3px; color: inherit; }
.callout p strong { display: inline; color: inherit; }
.callout p { margin: 0; }
.callout.info    { background: rgba(62,176,177,0.1); color: #1A5A5A; }
.callout.info .material-symbols-outlined { color: #2B8384; }
.callout.note    { background: rgba(215,198,230,0.35); color: #3c1138; }
.callout.note .material-symbols-outlined { color: #55274f; }
.callout.warning { background: #FFF6E5; color: #7A5200; }
.callout.warning .material-symbols-outlined { color: #E8841A; }
.callout.danger  { background: #ffdad6; color: #93000a; }
.callout.danger .material-symbols-outlined { color: #ba1a1a; }
.callout a { font-weight: 600; color: inherit; text-decoration: underline; }

/* Tables */
table.data {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #ffffff; border-radius: 1.125rem; overflow: hidden;
  border: 1px solid #EEEEEE; margin: 18px 0; font-size: 15px;
  box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35);
}
table.data th {
  background: #3c1138; color: #ffffff; padding: 14px 18px; text-align: left;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
table.data td { padding: 13px 18px; border-bottom: 1px solid #f3f3f4; color: #666666; vertical-align: top; }
table.data tr:last-child td { border-bottom: none; }
table.data .amount { font-weight: 700; color: #3c1138; white-space: nowrap; }

/* Urgency tags — SLA tables only */
.tag { display: inline-block; padding: 4px 12px; border-radius: 9999px; font-size: 12px; font-weight: 700; white-space: nowrap; color: #fff; }
.tag.critical { background: #C0392B; }
.tag.high     { background: #E67E22; }
.tag.standard { background: #2980B9; }
.tag.low      { background: #27AE60; }
.tag.soft     { background: rgba(164,49,112,0.1); color: #a43170; }
.tag.softteal { background: rgba(62,176,177,0.12); color: #2B8384; }

/* Steps */
.step-grid { display: flex; flex-direction: column; gap: 14px; margin: 18px 0; }
.step-card {
  background: #ffffff; border: 1px solid #EEEEEE; border-radius: 1.125rem;
  padding: 20px 24px; display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 8px 24px -18px rgba(85,39,79,0.3);
}
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 9999px;
  background: #3c1138; color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-body strong { display: block; color: #3c1138; margin-bottom: 3px; font-size: 16px; }
.step-body p { margin: 0; font-size: 14.5px; color: #666666; line-height: 1.6; }
.step-body a { color: #a43170; font-weight: 600; }

/* Timeline */
.timeline { position: relative; padding-left: 38px; margin: 22px 0; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 4px; bottom: 4px; width: 2px; background: linear-gradient(to bottom, #a43170, #3EB0B1); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 22px; }
.timeline-item::before { content: ''; position: absolute; left: -32px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: #a43170; border: 2px solid #f9f9f9; box-shadow: 0 0 0 2px #a43170; }
.tl-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #a43170; margin-bottom: 4px; }
.tl-content { background: #ffffff; border: 1px solid #EEEEEE; border-radius: 12px; padding: 15px 18px; font-size: 15px; color: #666666; line-height: 1.65; box-shadow: 0 6px 18px -14px rgba(85,39,79,0.3); }
.tl-content strong { color: #3c1138; }

/* Interactive checklists */
.checklist { list-style: none; margin: 12px 0; padding: 0; }
.checklist li {
  padding: 11px 14px; border-radius: 10px; font-size: 15px;
  display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer; transition: background .15s; color: #4a3a47; line-height: 1.55;
}
.checklist li:hover { background: rgba(215,198,230,0.3); }
.checklist li .box {
  flex-shrink: 0; width: 20px; height: 20px; border: 2px solid #a43170;
  border-radius: 6px; margin-top: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: #fff; font-weight: 800;
}
.checklist li.done { color: #9A8A97; text-decoration: line-through; }
.checklist li.done .box { background: #3EB0B1; border-color: #3EB0B1; }
.checklist li.done .box::after { content: '✓'; }
.checklist li a { color: #a43170; font-weight: 600; }
.checklist-group { margin-bottom: 26px; }
.checklist-group-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #2B8384; margin-bottom: 8px; padding-left: 4px;
}
.checklist.static li { cursor: default; }
.checklist.static li:hover { background: none; }

.progress-wrap {
  background: #ffffff; border: 1px solid #EEEEEE; border-radius: 1.125rem;
  padding: 16px 22px; margin: 16px 0; position: sticky; top: 140px; z-index: 30;
  box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35);
}
.progress-label { font-size: 13px; font-weight: 700; color: #3c1138; margin-bottom: 7px; }
.progress-bar { height: 8px; background: #EEEEEE; border-radius: 6px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(to right, #a43170, #3EB0B1); border-radius: 6px; transition: width .3s; }

/* Calculators */
.calc-box {
  background: #ffffff; border: 1px solid #EEEEEE; border-radius: 1.125rem;
  padding: 32px; margin: 26px 0;
  box-shadow: 0 12px 30px -18px rgba(62,176,177,0.5);
  border-top: 4px solid #3EB0B1;
}
.calc-box h3 { margin: 0 0 4px; color: #2B8384; font-size: 20px; font-weight: 800; }
.calc-box .calc-sub { font-size: 14px; color: #666666; margin-bottom: 14px; }
.calc-field { margin: 14px 0; }
.calc-field label {
  display: block; font-size: 12px; font-weight: 700; color: #666666;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.calc-field input, .calc-field select {
  width: 100%; padding: 11px 15px; border: 1px solid #EEEEEE; border-radius: 12px;
  font-family: 'Figtree', sans-serif; font-size: 15.5px; color: #333; outline: none;
  transition: border-color .2s, box-shadow .2s; background: #ffffff; box-sizing: border-box;
}
.calc-field input:focus, .calc-field select:focus { border-color: #a43170; box-shadow: 0 0 0 3px rgba(164,49,112,0.12); }
.calc-btn {
  margin-top: 12px; padding: 13px 34px; background: #3EB0B1; color: #fff;
  font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 15px;
  border: none; border-radius: 9999px; cursor: pointer; transition: transform .15s, opacity .2s;
}
.calc-btn:hover { opacity: .9; transform: scale(1.02); }
.calc-result {
  display: none; margin-top: 20px; background: rgba(62,176,177,0.08);
  border: 1px solid rgba(62,176,177,0.4); border-radius: 12px; padding: 18px 22px; font-size: 15px;
}
.calc-result .row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px dashed #d8e8e8; color: #444; }
.calc-result .row:last-child { border: none; font-weight: 800; color: #3c1138; margin-top: 4px; }

/* Info cards (guide pages) */
.info-card {
  background: #ffffff; border: 1px solid #EEEEEE; border-radius: 1.125rem;
  padding: 28px 32px; margin-bottom: 16px;
  box-shadow: 0 8px 24px -18px rgba(85,39,79,0.3);
}
.info-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: #3c1138; }
.info-card p { color: #666666; font-size: 15px; line-height: 1.65; margin: 0 0 10px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card ul { list-style: none; padding: 0; margin: 8px 0 0; }
.info-card ul li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid #f3f3f4; color: #666666; font-size: 15px; line-height: 1.6; }
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before { content: ''; position: absolute; left: 4px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: #a43170; }
.info-card a { color: #a43170; font-weight: 600; }
.info-card .fineprint { font-size: 13px; color: #9A8A97; margin-top: 12px; }

/* Guide page hero */
.guide-hero { background: linear-gradient(135deg, #3c1138 0%, #55274f 55%, #a43170 130%); color: #fff; position: relative; overflow: hidden; }
.guide-hero::before { content: ''; position: absolute; top: -90px; right: -90px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.guide-hero::after { content: ''; position: absolute; bottom: -60px; left: 40%; width: 200px; height: 200px; border-radius: 50%; background: rgba(62,176,177,0.15); }
.guide-hero-inner { position: relative; z-index: 2; max-width: 1024px; margin: 0 auto; padding: 48px clamp(20px, 5vw, 40px) 44px; }
.guide-hero .crumb { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.guide-hero .crumb a { color: #D7C6E6; text-decoration: none; }
.guide-hero .crumb a:hover { color: #fff; }
.guide-hero .crumb span { color: rgba(255,255,255,0.55); margin: 0 8px; }
.guide-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin: 0; }
@media (min-width: 768px) { .guide-hero h1 { font-size: 48px; letter-spacing: -1.5px; } }
.guide-hero .lede { color: #D7C6E6; font-size: 16px; margin-top: 10px; max-width: 620px; }

.guide-container { max-width: 1024px; margin: 0 auto; padding: 44px clamp(20px, 5vw, 40px) 80px; }
.guide-container h2.gtitle { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: #3c1138; margin: 0 0 4px; }
@media (min-width: 768px) { .guide-container h2.gtitle { font-size: 32px; } }
.guide-container .gsub { color: #9A8A97; font-size: 15.5px; margin: 0 0 28px; }
.guide-container h3.gsec { font-size: 20px; font-weight: 800; color: #3c1138; margin: 34px 0 12px; }

/* Next-guide footer link */
.next-guide {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #ffffff; border: 1px solid #EEEEEE; border-radius: 1.125rem;
  padding: 24px 30px; margin-top: 48px; text-decoration: none;
  box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35); transition: transform .25s;
}
.next-guide:hover { transform: translateY(-3px); }
.next-guide .ng-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #a43170; margin-bottom: 3px; }
.next-guide .ng-title { font-size: 20px; font-weight: 800; color: #3c1138; }
.next-guide .material-symbols-outlined { color: #a43170; font-size: 30px; }

@media (max-width: 640px) {
  .tab-nav { top: 80px; }
  .progress-wrap { top: 150px; }
  table.data { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .calc-box { padding: 22px 18px; }
  .info-card { padding: 20px 20px; }
}

/* ── GUIDE SUMMARY (index of what's in the guide, shown under the hero) ── */
.guide-summary { background: #ffffff; border-bottom: 1px solid #EEEEEE; }
.guide-summary-inner { max-width: 960px; margin: 0 auto; padding: 28px clamp(20px,5vw,40px) 32px; }
.guide-summary .gs-label { font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #a43170; margin-bottom: 14px; }
.gs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.gs-card { text-align: left; background: #f9f9f9; border: 1px solid #EEEEEE; border-radius: 0.75rem; padding: 14px 16px; cursor: pointer; font-family: 'Figtree', sans-serif; transition: transform .15s, box-shadow .15s, border-color .15s; }
.gs-card:hover { transform: translateY(-2px); border-color: #a43170; box-shadow: 0 12px 30px -18px rgba(85,39,79,0.35); }
.gs-card strong { display: block; color: #3c1138; font-size: 15px; margin-bottom: 2px; }
.gs-card span { color: #666666; font-size: 13px; line-height: 1.45; display: block; }

/* ═══ SITE-WIDE LAYOUT (self-contained — no Tailwind dependency) ═══ */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0; font-family: 'Figtree', sans-serif;
  background: #f9f9f9; color: #333333; font-size: 17px; line-height: 1.6;
}
img { max-width: 100%; }
a { color: #a43170; }
::selection { background: rgba(164,49,112,0.3); color: #3c1138; }

/* Top bar */
.site-top { position: sticky; top: 0; z-index: 50; background: rgba(249,249,249,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid #EEEEEE; }
.site-top-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,5vw,40px); height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.brand { font-weight: 800; font-size: 24px; color: #3c1138; text-decoration: none; letter-spacing: -0.5px; white-space: nowrap; }
.top-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
.top-nav a { color: #333; text-decoration: none; transition: color .2s; }
.top-nav a:hover, .top-nav a.active { color: #a43170; }
.btn-support { background: #a43170; color: #fff !important; padding: 9px 24px; border-radius: 9999px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.btn-support:hover { opacity: .9; }
@media (max-width: 820px) { .top-nav { display: none; } }

/* Landing hero */
.hero { position: relative; min-height: 52vh; display: flex; align-items: center; overflow: hidden; background: #55274f; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(60,17,56,0.82), rgba(60,17,56,0.45), transparent); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; padding: 80px clamp(20px,5vw,40px); color: #fff; }
.hero-content .inner { max-width: 640px; }
.hero h1 { font-size: 38px; line-height: 1.1; letter-spacing: -1px; font-weight: 800; margin: 0 0 20px; }
.hero p { font-size: 18px; line-height: 1.6; margin: 0 0 36px; opacity: .95; }
@media (min-width: 768px) { .hero h1 { font-size: 64px; line-height: 1.05; letter-spacing: -2px; } .hero p { font-size: 23px; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary { background: #a43170; color: #fff; padding: 15px 32px; border-radius: 9999px; font-weight: 700; font-size: 17px; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: transform .2s; display: inline-block; }
.btn-primary:hover { transform: scale(1.04); }
.btn-ghost { border: 2px solid #fff; color: #fff; padding: 13px 32px; border-radius: 9999px; font-weight: 700; font-size: 17px; text-decoration: none; transition: background .2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Sections */
.section { padding: 88px clamp(20px,5vw,40px); }
.section.tinted { background: #f3f3f4; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-narrow { max-width: 820px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { color: #666; max-width: 560px; margin: 14px auto 0; }
.center { text-align: center; }
.lead { font-size: 18px; color: #666666; line-height: 1.7; margin: 0 0 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.acc-list > * + * { margin-top: 14px; }
.muted { color: #666666; }

/* Support band (teal) */
.support-band { max-width: 1280px; margin: 0 auto; background: #3EB0B1; border-radius: 1.125rem; color: #fff; overflow: hidden; box-shadow: 0 12px 30px -18px rgba(85,39,79,0.5); }
.support-band-inner { padding: clamp(40px,6vw,64px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .support-band-inner { grid-template-columns: 1fr; text-align: center; } .support-contacts { margin: 0 auto; } .support-ctas { align-items: center; } }
.support-band h2 { font-size: 30px; font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin: 0 0 14px; }
@media (min-width: 768px) { .support-band h2 { font-size: 40px; } }
.support-band .sb-sub { font-size: 18px; opacity: .92; margin: 0 0 28px; }
.support-contacts { display: inline-flex; flex-direction: column; gap: 14px; text-align: left; }
.support-contacts div { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.support-contacts a { color: #fff; text-decoration: none; }
.support-contacts a:hover { text-decoration: underline; }
.support-ctas { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; }
.btn-white { background: #fff; color: #2B8384; padding: 15px 44px; border-radius: 9999px; font-weight: 700; font-size: 17px; text-decoration: none; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.12); white-space: nowrap; }
.btn-white:hover { background: #eeeeee; }
.btn-outline-white { border: 2px solid #fff; color: #fff; padding: 13px 44px; border-radius: 9999px; font-weight: 700; font-size: 17px; text-decoration: none; text-align: center; white-space: nowrap; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.site-footer { background: #e8e8e8; border-top: 1px solid #EEEEEE; padding: 56px clamp(20px,5vw,40px); }
.site-footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 28px; }
.site-footer .f-brand { font-size: 24px; font-weight: 800; color: #3c1138; margin-bottom: 6px; }
.site-footer .f-copy { font-size: 14px; color: #666; }
.f-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 14px; font-weight: 600; }
.f-links a { color: #333; text-decoration: none; }
.f-links a:hover { color: #a43170; }
@media (max-width: 700px) { .site-footer-inner { flex-direction: column; text-align: center; } }

/* FAQ block */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.accordion-header span:first-child { display: flex; align-items: center; gap: 12px; }
.accordion-header .chev-icon { transition: transform .3s; }

/* ── Material Symbols (local definition — ensures icons render as icons) ── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal;
  font-size: 24px; line-height: 1;
  letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap;
  word-wrap: normal; direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Brand with logo ── */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 46px; width: auto; display: block; }

/* ── Emoji icons (no external icon font needed) ── */
.ico { font-style: normal; font-size: 22px; line-height: 1.3; flex-shrink: 0; }
.feature-icon .ico, .guide-icon .ico { font-size: 26px; }
.chev-icon { color: #a43170; font-size: 18px; flex-shrink: 0; transition: transform .3s; display: inline-block; }
.support-contacts .ico { font-size: 20px; }

/* ── Custom outline SVG icons (brand style) ── */
svg.ico { width: 24px; height: 24px; flex-shrink: 0; color: #a43170; }
svg.ico-inline { width: 19px; height: 19px; flex-shrink: 0; color: #a43170; vertical-align: -3px; margin-right: 4px; display: inline-block; }
.feature-icon svg.ico, .guide-icon svg.ico { width: 26px; height: 26px; }
.guide-icon { color: #a43170; }
.callout.info svg.ico    { color: #2B8384; }
.callout.note svg.ico    { color: #55274f; }
.callout.warning svg.ico { color: #E8841A; }
.callout.danger svg.ico  { color: #ba1a1a; }
.support-contacts svg.ico { color: #ffffff; width: 20px; height: 20px; }
.checklist-group-title svg.ico-inline { color: #2B8384; vertical-align: -4px; }
.info-card h3 { display: flex; align-items: center; gap: 8px; }

/* ── utility: hidden (was provided by Tailwind) ── */
.hidden { display: none !important; }

/* ── Hero without photo: brand gradient + soft shapes ── */
.hero-brand { background: linear-gradient(135deg, #3c1138 0%, #55274f 45%, #a43170 100%); position: relative; }
.hero-brand::before { content: ''; position: absolute; top: -90px; right: -90px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.hero-brand::after { content: ''; position: absolute; bottom: -60px; left: 38%; width: 220px; height: 220px; border-radius: 50%; background: rgba(62,176,177,0.15); }
