:root {
  --brand: #c8102e;
  --brand-dark: #8f0f23;
  --ink: #121212;
  --ink-soft: #232323;
  --muted: #666;
  --line: rgba(18,18,18,.1);
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --surface-dark: #101114;
  --container: 1180px;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(8, 15, 26, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.utility-bar {
  background: #0d0d0f;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}
.utility-bar__inner, .header-inner, .footer-bottom, .hero-actions, .card-actions, .cta-band, .form-row, .contact-grid, .hero-grid, .two-column, .trust-bar, .footer-grid {
  display: flex;
}
.utility-bar__inner {
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.utility-right { display: flex; flex-wrap: wrap; gap: 18px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand img { height: 54px; width: auto; }
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-weight: 600;
  position: relative;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--brand);
}
.button, .button--ghost, .button--dark, .button--ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.button { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.button--dark { background: var(--ink); color: #fff; }
.button--ghost { border: 1px solid rgba(255,255,255,.22); color: #fff; background: transparent; }
.button--ghost-light { border: 1px solid rgba(255,255,255,.18); color: #fff; background: transparent; }
.menu-toggle {
  display: none;
  border: 0;
  background: #f1f1f4;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.3rem;
}
.hero, .page-hero {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg, #14090c 0%, #340713 22%, #7d0f24 60%, #c8102e 100%);
  color: #fff;
}
.hero { padding: 88px 0 72px; }
.page-hero { padding: 86px 0 58px; }
.hero-grid { align-items: center; gap: 42px; }
.hero-grid > * { flex: 1; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .83rem;
  opacity: .92;
}
.hero h1, .page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  max-width: 11ch;
}
.hero p, .page-hero p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
}
.hero-actions { gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.hero-points li {
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.9);
}
.hero-points li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #fff;
}
.hero-panel__card, .glass-card {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.hero-panel__card h2 { margin-top: 0; }
.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mini-stat-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.mini-stat-grid strong, .stats-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.section { padding: 84px 0; }
.section--tight { padding: 28px 0 20px; }
.section--muted { background: var(--surface-alt); }
.section--dark { background: var(--surface-dark); color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .two-column h2, .cta-band h2, .contact-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}
.section-heading p { margin: 0; color: var(--muted); }
.trust-bar {
  gap: 18px;
  flex-wrap: wrap;
}
.trust-bar > div {
  flex: 1 1 220px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.trust-bar strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.service-grid, .process-grid, .service-nav-grid {
  display: grid;
  gap: 22px;
}
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .process-card, .service-nav-card, .contact-card, .stats-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-card {
  padding: 28px;
  min-height: 100%;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(200,16,46,.12), rgba(200,16,46,.28));
  color: var(--brand-dark);
  font-size: 1.25rem;
}
.service-card h3, .process-card h3, .feature-item h3, .service-detail__sidebar h3 { margin: 0 0 10px; font-size: 1.3rem; }
.service-card p, .feature-item p, .process-card p, .service-detail p, .contact-card p { color: var(--muted); margin: 0; }
.card-actions { gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.text-link { color: var(--brand); font-weight: 700; }
.ghost-link { color: var(--ink); font-weight: 600; }
.two-column {
  gap: 28px;
  align-items: flex-start;
}
.two-column > * { flex: 1; }
.feature-list {
  display: grid;
  gap: 18px;
}
.feature-item { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-card { padding: 26px; }
.process-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(200,16,46,.12);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-band {
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.cta-band p { color: rgba(255,255,255,.78); max-width: 64ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero--about,
.page-hero--contact,
.page-hero--service { position: relative; overflow: hidden; }
.page-hero--service::after,
.page-hero--about::after,
.page-hero--contact::after {
  content: '';
  position: absolute;
  inset: auto -120px -100px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(10px);
}
.service-nav-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-nav-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-nav-card span { font-weight: 800; font-size: 1.1rem; }
.service-nav-card small { color: var(--muted); font-size: .95rem; }
.stats-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}
.stats-card > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.stats-card > div:last-child { border-bottom: 0; }
.contact-grid { gap: 24px; align-items: stretch; }
.contact-grid > * { flex: 1; }
.contact-card { padding: 28px; }
.contact-list, .footer-links, .service-detail__sidebar ul, .faq-list { list-style: none; padding: 0; margin: 0; }
.contact-list li, .footer-links li, .service-detail__sidebar li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.footer-links li:last-child, .contact-list li:last-child, .service-detail__sidebar li:last-child { border-bottom: 0; }
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-row { gap: 14px; }
.form-row > label { flex: 1; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(18,18,18,.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.form-note { font-size: .92rem; color: var(--muted); margin-top: 14px; }
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.map-frame iframe { width: 100%; min-height: 450px; display: block; }
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, .8fr);
  gap: 26px;
}
.service-detail__content,
.service-detail__sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.service-detail__content { padding: 34px; }
.service-detail__sidebar { padding: 28px; position: sticky; top: 110px; height: fit-content; }
.service-checklist, .faq-list {
  display: grid;
  gap: 14px;
}
.service-checklist li, .faq-item {
  padding: 18px 20px;
  background: var(--surface-alt);
  border-radius: 18px;
}
.service-detail h2 { font-size: 1.9rem; margin: 0 0 12px; }
.service-detail h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.service-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.social-links--stack a {
  background: var(--surface-alt);
  border-color: rgba(18,18,18,.06);
}
.site-footer {
  background: #0d0d10;
  color: rgba(255,255,255,.9);
  padding-top: 56px;
}
.footer-grid {
  gap: 34px;
  justify-content: space-between;
}
.footer-grid > * { flex: 1; }
.footer-logo { height: 44px; width: auto; }
.site-footer h3 { color: #fff; margin-top: 0; }
.footer-links a:hover, .social-links a:hover { color: #fff; }
.footer-bottom {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
}
.footer-bottom__links { display: flex; gap: 14px; flex-wrap: wrap; }
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .service-grid, .service-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-layout { grid-template-columns: 1fr; }
  .service-detail__sidebar { position: static; }
}
@media (max-width: 860px) {
  .utility-bar { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .two-column, .contact-grid, .footer-grid, .footer-bottom, .cta-band { flex-direction: column; }
  .hero h1, .page-hero h1 { max-width: 12ch; }
}
@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .service-grid, .service-nav-grid, .process-grid, .mini-stat-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .hero { padding-top: 70px; }
  .header-inner { padding: 14px 0; }
  .brand img { height: 46px; }
}
