:root {
  --bg: #f7f8fb;
  --bg-2: #eef2f7;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --hero: linear-gradient(135deg, #ffffff 0%, #f5f8ff 48%, #eef3ff 100%);
  --hero-ink: #14233c;
  --line: rgba(20, 35, 60, 0.12);
  --text: #152238;
  --muted: rgba(21, 34, 56, 0.72);
  --muted-2: rgba(21, 34, 56, 0.54);
  --accent: #e11d2e;
  --accent-2: #0f73d8;
  --accent-3: #1d4ed8;
  --shadow: 0 22px 60px rgba(23, 34, 45, 0.12);
  --shadow-2: 0 26px 70px rgba(0, 0, 0, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 115, 216, 0.09), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #fbfcfe 46%, #eef3fb 100%);
  font-family: "DM Sans", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 35, 60, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 35, 60, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 16px 0 34px;
}

.utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.utility-row a {
  color: var(--accent);
  font-weight: 700;
}

.utility-call {
  padding: 8px 12px;
  border: 1px solid rgba(225, 29, 46, 0.22);
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.08);
  white-space: nowrap;
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.site-nav a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-3);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 24px;
  overflow: hidden;
  color: var(--hero-ink);
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.05), transparent 34%),
    linear-gradient(225deg, rgba(15, 115, 216, 0.08), transparent 30%),
    var(--hero);
  border-color: rgba(20, 35, 60, 0.08);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.16), transparent 62%);
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -8% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 115, 216, 0.1), transparent 62%);
  filter: blur(16px);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.section-heading h2,
.panel-card h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.hero-lead,
.hero .trust-card span,
.panel-card p,
.service-card p,
.process-list p,
.promo-card p,
.review-card p,
.cta-band p,
.contact-copy p,
.contact-points span,
.reviews-note,
.form-note {
  color: inherit;
  opacity: 0.8;
}

.hero-lead {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 35, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.9rem;
}

.pill-hot {
  color: #b91c1c;
  border-color: rgba(225, 29, 46, 0.24);
  background: rgba(225, 29, 46, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff5b49);
  box-shadow: 0 14px 24px rgba(225, 29, 46, 0.18);
}

.btn-secondary {
  border-color: rgba(20, 35, 60, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-card {
  padding: 18px;
  border: 1px solid rgba(20, 35, 60, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.trust-card strong,
.service-card h3,
.process-list h3,
.promo-card h3,
.review-card span,
.contact-points strong {
  display: block;
  color: var(--text);
  margin: 0;
  font-weight: 800;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.panel-card {
  padding: 22px;
  border: 1px solid rgba(20, 35, 60, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.quote-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.quote-card h2 {
  color: var(--text);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 35, 60, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-2);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 115, 216, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 115, 216, 0.1);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 18ch;
  margin-top: 10px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.promo-grid,
.card-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.promo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.promo-card-blue {
  background: linear-gradient(180deg, #0f73d8, #1d4ed8);
  color: #ffffff;
}

.promo-card span,
.service-icon,
.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.promo-card-blue span {
  color: #ffffff;
}

.promo-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-icon {
  margin-bottom: 22px;
  color: var(--accent);
}

.service-card h3,
.process-list h3 {
  color: var(--text);
}

.service-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 24px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.process-list span {
  color: var(--accent);
}

.process-list p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-grid span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-weight: 700;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  margin-top: 14px;
}

.reviews-embed .elfsight-app-0a311bda-9e7a-4f41-9908-53b40c914432 {
  min-height: 420px;
}

.review-highlights {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.review-highlight {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 35, 60, 0.12);
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.08), transparent 45%),
    linear-gradient(225deg, rgba(15, 115, 216, 0.08), transparent 45%),
    #ffffff;
}

.review-highlight p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.04rem;
  color: var(--text);
}

.review-highlight span {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.review-card p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.02rem;
}

.review-card span {
  margin-top: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.reviews-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.cta-band p {
  max-width: 48ch;
  margin: 0;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-copy h2 {
  max-width: 14ch;
  margin-top: 10px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.contact-copy p {
  line-height: 1.75;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.contact-points span {
  display: block;
  margin-top: 6px;
  line-height: 1.6;
}

.contact-form-wide {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.site-footer {
  border-top: 1px solid rgba(20, 35, 60, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 10px 4px 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(92vw, 360px);
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-grid,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .promo-grid,
  .card-grid,
  .review-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    border-radius: 26px;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
    padding-top: 10px;
  }

  .utility-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-header {
    position: sticky;
    top: 10px;
    z-index: 10;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .section {
    padding: 22px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }

  .trust-grid,
  .promo-grid,
  .card-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    gap: 14px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-actions > a,
  .footer-actions > a > button {
    width: 100%;
  }

  .toast {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}
