:root {
  --red: #b5121b;
  --red-dark: #7c0a10;
  --red-soft: #fff1f2;
  --black: #151515;
  --ink: #25272d;
  --muted: #666b76;
  --line: #e8e9ee;
  --bg: #f7f7f8;
  --warm: #fff8f3;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(20, 20, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 233, 238, 0.88);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #1f1f1f);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(181, 18, 27, 0.24);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 15px; }
.main-nav a { text-decoration: none; }
.main-nav a:hover { color: var(--red); }
.nav-phone {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--black);
  border-radius: var(--radius);
  font-weight: 800;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px 12px;
  font-weight: 800;
}

.section { padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px); }
.compact-section { padding-top: 34px; padding-bottom: 34px; }
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: 82vh;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(181, 18, 27, 0.6), transparent 30%),
    linear-gradient(135deg, #151515 0%, #2b1114 44%, #8f0d15 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.12));
}
.hero::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  content: "";
}
.hero-content, .hero-card { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .eyebrow, .page-hero .eyebrow, .cta-section .eyebrow { color: #ffccd0; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}
h2 { margin-bottom: 14px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
h3 { font-size: 21px; line-height: 1.2; }
.lead { max-width: 760px; color: #3f434b; font-size: clamp(19px, 2vw, 24px); }
.hero .lead { color: rgba(255, 255, 255, 0.86); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 14px 34px rgba(181, 18, 27, 0.32); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { color: #fff; background: #1f1f1f; }
.btn-light { color: var(--black); background: #fff; border-color: var(--line); }
.btn-dark { color: #fff; background: var(--black); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.trust-list li {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 30px;
}
.hero-stat {
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}
.hero-stat strong { display: block; font-size: 25px; line-height: 1; }
.hero-stat span { color: rgba(255, 255, 255, 0.74); font-size: 13px; }
.hero-card, .card, .price-item, .notice, .seo-panel, .question-card, .calc-card, .scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hero-card {
  overflow: hidden;
  color: var(--black);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: rotate(-1.1deg);
}
.hero-card-photo { border-color: rgba(255, 255, 255, 0.34); }
.portrait-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}
.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.76) 100%);
}
.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait-frame figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: #fff;
}
.portrait-frame figcaption strong { display: block; font-size: 28px; line-height: 1.05; }
.portrait-frame figcaption span { color: rgba(255,255,255,.78); font-weight: 800; }
.hero-card-body { padding: clamp(22px, 3vw, 30px); }
.hero-card-body h2 { font-size: clamp(27px, 3vw, 38px); }
.hero-card .eyebrow { color: var(--red); }
.profile-photo {
  display: grid;
  width: 118px;
  height: 118px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--black), var(--red));
  border-radius: 18px;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(181, 18, 27, 0.22);
}
.mini-quote {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--warm);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  font-weight: 800;
}
.rate-board {
  margin: 22px 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, #181818, #7c0a10);
  border-radius: var(--radius);
}
.rate-board span { display: block; color: rgba(255,255,255,.72); font-size: 13px; }
.rate-board strong { display: block; font-size: 34px; line-height: 1.05; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.quick-facts span { padding: 7px 9px; background: var(--red-soft); border-radius: 999px; color: var(--red-dark); font-size: 13px; font-weight: 900; }

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, var(--black), #2b2c32);
  color: #fff;
}
.notice .eyebrow { color: #ffb5bb; }
.notice p { max-width: 860px; color: #f1f1f1; }
.section-head { max-width: 860px; margin-bottom: 34px; }
.section-head p, .card p, .price-item p, .seo-panel p, .question-card p, .scenario-card p { color: var(--muted); }
.grid { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #111);
  content: "";
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(20,20,20,.1); border-color: rgba(181,18,27,.28); }
.card h3 a { text-decoration-color: rgba(181, 18, 27, 0.35); text-underline-offset: 5px; }
.muted { background: var(--bg); }
.warm { background: var(--warm); }
.location-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red-dark));
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(20, 20, 20, .12);
}
.location-card strong { font-size: 23px; }
.location-card span { color: rgba(255,255,255,.82); }
.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(24px, 5vw, 68px); }
.price-list { display: grid; gap: 14px; }
.price-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px 24px; padding: 22px; }
.price-item h3, .price-item p { margin-bottom: 0; }
.price-item strong { align-self: center; color: var(--red); font-size: 22px; white-space: nowrap; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding: 0; counter-reset: step; list-style: none; }
.steps li { position: relative; padding: 56px 20px 20px; background: var(--bg); border-radius: var(--radius); }
.steps li::before { position: absolute; top: 18px; left: 20px; color: var(--red); content: counter(step, decimal-leading-zero); counter-increment: step; font-weight: 900; }
.cta-section { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #fff; background: linear-gradient(135deg, #1b1b1e, #3a0b0f); }
.cta-section p { max-width: 740px; color: rgba(255,255,255,.82); }

.calc-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.calc-card {
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}
.calc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.calc-field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 900; }
.calc-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
}
.calc-result {
  margin-top: 18px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red-dark));
  border-radius: var(--radius);
}
.calc-result span, .calc-result small { display: block; color: rgba(255,255,255,.72); }
.calc-result strong { display: block; margin: 4px 0; font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.scenario-card { padding: 24px; }
.scenario-card strong { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 18px; color: #fff; background: var(--red); border-radius: var(--radius); }
.scenario-card ul { padding-left: 19px; margin-bottom: 0; color: var(--muted); }
.scenario-card li { margin-bottom: 7px; }

.page-hero { padding-top: clamp(52px, 7vw, 86px); padding-bottom: clamp(44px, 6vw, 72px); background: linear-gradient(135deg, var(--black), #370d12); color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.82); }
.breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: 14px; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.content-main { max-width: 920px; }
.content-main h2 { margin-top: 42px; }
.content-main li { margin-bottom: 10px; }
.sidebar { position: sticky; top: 92px; display: grid; gap: 14px; }
.seo-panel { padding: 22px; }
.seo-panel ul { padding-left: 20px; margin-bottom: 0; }
.faq-list { display: grid; gap: 14px; }
.question-card { padding: 22px; }
.site-footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; padding: 34px clamp(18px, 4vw, 56px); color: rgba(255,255,255,.78); background: var(--black); }
.site-footer strong { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #fff; }
.disclaimer { grid-column: 1 / -1; max-width: 1040px; margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 13px; }

@media (max-width: 1040px) {
  .hero, .split, .content-layout, .calc-section { grid-template-columns: 1fr; }
  .cards-4, .cards-3, .steps, .scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar { position: static; }
  .hero-card { transform: none; }
  .portrait-frame img { max-height: 620px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { position: absolute; top: 75px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .cards-4, .cards-3, .steps, .scenario-grid, .hero-stats, .calc-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .notice, .cta-section, .site-footer { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .price-item { grid-template-columns: 1fr; }
  .portrait-frame figcaption strong { font-size: 24px; }
  .btn { width: 100%; }
}
