:root {
  --ink: #1b1f23;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --line: #d9e2df;
  --muted: #5b6763;
  --green: #14735b;
  --green-dark: #0f5947;
  --gold: #f2b84b;
  --red: #c84630;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: grid;
  gap: 2px;
  font-weight: 800;
}

.brand span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links .nav-cta {
  color: var(--paper);
  background: var(--green);
  padding: 10px 14px;
  border-radius: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 68vh;
  display: grid;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 16, 18, 0.88), rgba(12, 16, 18, 0.48), rgba(12, 16, 18, 0.2));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.btn-primary {
  color: var(--paper);
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--gold);
}

.btn-paypal {
  color: var(--ink);
  background: var(--gold);
}

.btn-paypal[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.btn-outline {
  color: var(--green);
  border-color: var(--green);
  background: var(--paper);
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

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

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.price-card,
.contact-panel {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card h3,
.price-card h3,
.contact-panel h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.card p,
.price-card p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.price {
  margin: 14px 0 8px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.price-btn {
  margin-top: 18px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 58px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.split-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.split-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 3px solid var(--green);
  border-radius: 50%;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.banner h2 {
  margin: 0 0 6px;
}

.banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-intro {
  padding: 54px 0;
  color: var(--paper);
  background: var(--ink);
}

.page-intro h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-intro p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

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

.field {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.note {
  padding: 16px;
  color: var(--muted);
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.payment-note {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.service-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-picker .btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.paypal-button-slot {
  margin-top: 14px;
}

.service-checkout {
  scroll-margin-top: 96px;
}

.pay-label {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-row strong {
  color: var(--paper);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
    background-position: center;
  }

  .hero-content {
    padding: 54px 0;
  }

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

  .service-picker {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 46px 0;
  }
}
