:root {
  --bg: #edf6f4;
  --ink: #122033;
  --muted: #60717c;
  --surface: #ffffff;
  --surface-2: #d8ebe8;
  --line: #9eb9b6;
  --accent: #b96f3a;
  --accent-dark: #7f431f;
  --dark: #18273b;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(18, 32, 51, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 111, 58, 0.12), transparent 30%),
    linear-gradient(180deg, #edf6f4 0%, #f8fbfa 100%);
  line-height: 1.6;
}

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

.header,
.footer,
main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav,
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a,
.footer__links a {
  color: var(--muted);
}

.nav a:hover,
.footer__links a:hover,
.footer a:hover {
  color: var(--accent-dark);
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.hero__content {
  padding: 52px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #f7fbfa;
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h1,
.intro h2,
.section-heading h2,
.request h2,
.legal h1,
.thankyou h1 {
  margin: 12px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero__text {
  max-width: 690px;
  margin: 22px 0 0;
  color: #c9d7dc;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-weight: 800;
  cursor: pointer;
}

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

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

.button--light {
  color: #f7fbfa;
  background: transparent;
}

.hero__card,
.intro,
.guides,
.benefits,
.process,
.faq,
.request,
.legal,
.thankyou__card,
.disclaimer {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero__card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--surface-2);
}

.card-label {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--accent-dark);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.guides {
  display: grid;
  gap: 16px;
}

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

.guide {
  display: grid;
  grid-template-columns: 70px 1fr 110px;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.guide--accent {
  background: #fff3ea;
}

.guide__number {
  font-weight: 900;
  color: var(--accent);
}

.guide h3,
.benefit h3,
.faq summary {
  margin: 0;
}

.guide p,
.benefit p,
.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.price {
  justify-self: end;
  color: var(--accent-dark);
  font-size: 1.15rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fbfefd;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.step {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.request {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 111, 58, 0.20);
  border-color: var(--accent);
}

.disclaimer {
  background: #fff7ef;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal,
.thankyou {
  max-width: 900px;
}

.legal section {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.thankyou {
  align-items: stretch;
}

.thankyou__card {
  text-align: left;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .request {
    grid-template-columns: 1fr;
  }

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

  .guide {
    grid-template-columns: 1fr;
  }

  .price {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .header,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content,
  .hero__card,
  .intro,
  .guides,
  .benefits,
  .process,
  .faq,
  .request,
  .legal,
  .thankyou__card,
  .disclaimer {
    padding: 22px;
  }

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