:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #e9eef6;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d6dde8;
  --accent: #0e7c86;
  --accent-dark: #12485e;
  --accent-soft: #dff3f4;
  --amber: #d88416;
  --danger: #b84d45;
  --footer: #101923;
  --shadow: 0 20px 60px rgb(17 24 39 / 11%);
  --radius: 8px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgb(244 247 251 / 92%);
  border-bottom: 1px solid rgb(214 221 232 / 72%);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: .04em;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a,
.site-footer a {
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
  border-color: currentColor;
}

.header-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta:active,
.button:active {
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 69px);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 4vw, 56px) 42px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy,
.hero-visual,
.proof > *,
.contact > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: .98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-lead,
.section-head p,
.proof-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.button:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(14 124 134 / 28%);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.trust-row div {
  min-width: 132px;
  padding: 12px 14px;
  background: rgb(255 255 255 / 76%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-row dt {
  font-size: 21px;
  font-weight: 850;
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #dfe7f1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.incident-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 440px;
  margin-left: auto;
  padding: 16px;
  color: var(--ink);
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(214 221 232 / 86%);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgb(17 24 39 / 15%);
}

.incident-panel strong,
.incident-panel span {
  display: block;
}

.incident-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgb(201 122 24 / 16%);
}

.band {
  background: var(--surface-strong);
  border-block: 1px solid var(--line);
}

section:not(.hero) {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto clamp(30px, 5vw, 48px);
  text-align: center;
}

.section-head.wide {
  max-width: 920px;
}

.problem-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-grid article,
.price-card,
.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-grid article {
  padding: 22px;
}

.problem-grid p,
.service-item p,
.price-card li,
.timeline p,
.proof-points span,
.faq-grid p,
.site-footer span,
.contact-note span,
.form-helper {
  color: var(--muted);
  line-height: 1.55;
}

.mini-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--danger);
  border-radius: 8px;
  font-weight: 900;
}

.services,
.method,
.contact {
  background: var(--bg);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 58%);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgb(14 124 134 / 42%);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-card-head p {
  min-height: 48px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.badge {
  align-self: flex-start;
  margin: 0;
  padding: 7px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgb(14 124 134 / 20%);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 auto;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
}

.price-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 980px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.timeline h3,
.timeline p {
  margin-bottom: 0;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.proof-copy {
  max-width: 760px;
}

.proof-points {
  display: grid;
  gap: 12px;
}

.proof-points div,
.contact-note {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points span {
  margin-top: 4px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  max-width: 760px;
}

.contact-note {
  margin-top: 28px;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgb(17 24 39 / 9%);
}

.contact-form label {
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 8px;
}

.form-helper {
  margin: 2px 0 0;
  font-size: 13px;
}

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

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
}

.faq-grid p {
  margin: 12px 0 0;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--footer);
  color: #fff;
}

.site-footer div,
.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgb(255 255 255 / 68%);
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.04;
  }

  .hero-lead,
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .trust-row div {
    flex: 1 1 145px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .incident-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .problem-grid,
  .service-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 420px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .price-card,
  .contact-form {
    padding: 20px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
