:root {
  --ink: #111410;
  --ink-soft: #30352f;
  --paper: #f5f2eb;
  --surface: #fffdf8;
  --line: #d9d5cb;
  --accent: #ff5a36;
  --accent-dark: #d93d1f;
  --green: #0f766e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 16, 12, 0.16);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(245, 242, 235, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(17, 20, 16, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 4px;
  color: #686d66;
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #41463f;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 90, 54, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
  white-space: nowrap;
}

.button-full {
  width: 100%;
}

.button-primary {
  color: var(--white);
  background: var(--accent);
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #2b3029;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #101722;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 14, 21, 0.92) 0%, rgba(9, 14, 21, 0.72) 40%, rgba(9, 14, 21, 0.12) 76%),
    linear-gradient(0deg, rgba(9, 14, 21, 0.54) 0%, rgba(9, 14, 21, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: 70px;
  padding-block: 90px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: #ffd9cf;
  background: rgba(255, 90, 54, 0.15);
  border: 1px solid rgba(255, 144, 115, 0.32);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 90, 54, 0.14);
}

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

h1 {
  min-width: 0;
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.35rem;
  line-height: 1.03;
  letter-spacing: -0.025em;
  overflow-wrap: normal;
}

h1 span {
  display: block;
  color: #ff9a7d;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #dfe4df;
  font-size: 1.12rem;
}

.hero-lead strong {
  color: var(--white);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 34px 0 0;
  padding: 0;
  color: #d3dad4;
  font-size: 0.9rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span {
  display: block;
  width: 7px;
  height: 7px;
  background: #6ee7b7;
  border-radius: 50%;
}

.offer-card {
  min-width: 0;
  justify-self: end;
  width: min(100%, 380px);
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.offer-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-value {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.offer-value strong {
  color: var(--accent);
  font-size: 2.4rem;
  line-height: 1;
}

.offer-line {
  height: 1px;
  margin-block: 20px;
  background: var(--line);
}

.offer-model {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.offer-note {
  margin-bottom: 24px;
  color: #5d635c;
  font-size: 0.9rem;
}

.section {
  padding-block: 104px;
}

.section-light {
  background: var(--paper);
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading > p:last-child,
.final-cta p {
  color: #60665f;
  font-size: 1.04rem;
}

.section-heading-light > p:last-child {
  color: #bfc7c0;
}

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

.benefit-card {
  min-height: 250px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: #626861;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 80px;
}

.split-layout .section-heading {
  margin-bottom: 0;
}

.section-heading-light h2 {
  color: var(--white);
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid #373c36;
}

.step:last-child {
  border-bottom: 1px solid #373c36;
}

.step-index {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: #d9f99d;
  border-radius: 50%;
  font-weight: 850;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.step p {
  margin-bottom: 0;
  color: #b8c0b9;
}

.condition-list {
  display: grid;
  max-width: 900px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 760;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  width: 20px;
  height: 20px;
  content: "+";
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: #5e645d;
}

.final-cta {
  padding-block: 78px;
  background: #e6e1d7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 8px;
}

.final-cta p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding-block: 34px;
  color: #6b716a;
  background: var(--paper);
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  color: var(--ink);
}

.copyright {
  margin-left: auto !important;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.55rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .split-layout {
    gap: 44px;
  }
}

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

  .hero,
  .hero-content {
    min-height: 820px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 14, 21, 0.94) 0%, rgba(9, 14, 21, 0.73) 58%, rgba(9, 14, 21, 0.18) 100%),
      linear-gradient(0deg, rgba(9, 14, 21, 0.68) 0%, rgba(9, 14, 21, 0) 54%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .offer-card {
    justify-self: start;
    width: min(100%, 430px);
  }

  .benefit-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-number {
    margin-bottom: 24px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-copy small {
    display: none;
  }

  .header-inner .button {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero,
  .hero-content {
    min-height: 900px;
  }

  .hero-content {
    padding-block: 64px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .offer-card {
    padding: 24px;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .final-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
