:root {
  color-scheme: dark;
  --bg: #101113;
  --panel: #181a1f;
  --panel-strong: #202329;
  --text: #f2f0eb;
  --muted: #c5c0b8;
  --quiet: #918b82;
  --line: #343840;
  --accent: #e6b35c;
  --accent-strong: #f0c773;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.wrap {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 56px 0 40px;
  background:
    linear-gradient(135deg, rgba(230, 179, 92, 0.1), transparent 36%),
    linear-gradient(180deg, #15171b 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 5rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.28rem;
}

.reassurance {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
  margin-top: 24px;
}

.hero-actions p {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid #dca64d;
  border-radius: 6px;
  background: var(--accent);
  color: #15120d;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px var(--shadow);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
}

.button:focus-visible {
  outline: 3px solid rgba(240, 199, 115, 0.35);
  outline-offset: 3px;
}

.side-card,
.safety-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 26, 31, 0.9);
  box-shadow: 0 24px 60px var(--shadow);
}

.side-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(230, 179, 92, 0.28);
  background:
    linear-gradient(180deg, rgba(230, 179, 92, 0.08), transparent 34%),
    var(--panel-strong);
  box-shadow:
    0 24px 60px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.side-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
}

.card-label {
  position: relative;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.side-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-card li {
  position: relative;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: var(--panel);
  color: var(--text);
  line-height: 1.4;
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.split p:last-child,
.section-head p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head {
  min-width: 0;
  max-width: 780px;
  margin-bottom: 36px;
}

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

.check-grid div,
.steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.check-grid div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--text);
  font-weight: 700;
}

.task-grid > div {
  min-height: 156px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  align-items: start;
  justify-content: stretch;
  justify-items: start;
  gap: 14px;
  padding: 20px;
  font-weight: 500;
}

.task-grid h3 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.task-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.pricing-line {
  display: inline-flex;
  max-width: 100%;
  margin: 24px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(230, 179, 92, 0.65);
  border-radius: 6px;
  background: rgba(230, 179, 92, 0.16);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 34px var(--shadow);
}

.safety-panel {
  padding: 36px;
  background: var(--panel-strong);
}

.safety-panel .section-head {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 172px;
  padding: 22px;
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #15120d;
  font-weight: 850;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact {
  border-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--panel-strong), #181a1f);
}

.contact-panel h2 {
  margin-bottom: 12px;
}

.contact-panel p {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-panel .helper-line {
  margin-top: 12px;
  color: var(--text);
  font-weight: 750;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .lead {
    font-size: 1.14rem;
  }

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

  .side-card {
    max-width: 560px;
  }

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

  .contact-panel {
    align-items: start;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 42px 0 34px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.05rem;
  }

  .lead {
    margin-bottom: 12px;
    font-size: 1.04rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .section {
    padding: 58px 0;
  }

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

  .hero-actions p {
    flex-basis: 100%;
  }

  .check-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .safety-panel,
  .contact-panel,
  .side-card {
    padding: 24px;
  }
}
