:root {
  --ink: #18191d;
  --muted: #62636a;
  --line: #e5e0dc;
  --paper: #fbf7f2;
  --white: #ffffff;
  --brand-red: #f24832;
  --brand-red-dark: #d73522;
  --brand-orange: #ff9418;
  --charcoal: #2f3036;
  --black: #070708;
  --shadow: 0 24px 70px rgba(24, 25, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand,
.site-nav,
.hero-actions,
.hero-stats,
.trust-strip,
.steps,
.plans {
  display: flex;
  align-items: center;
}

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

.brand-logo {
  width: 48px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(24, 25, 29, 0.86) 42%, rgba(242, 72, 50, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 7, 8, 0.28), rgba(7, 7, 8, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-copy,
.section p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button.primary {
  color: var(--white);
  background: var(--brand-red);
  box-shadow: 0 14px 34px rgba(242, 72, 50, 0.28);
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.hero-stats dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 20px;
  color: var(--charcoal);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand-red);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.split,
.support,
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.module-grid,
.steps,
.plans {
  display: grid;
  gap: 18px;
}

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

.module-grid article,
.steps article,
.plan,
.contact-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(18, 32, 47, 0.07);
}

.module-grid article,
.steps article {
  padding: 24px;
}

.module-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--brand-red);
  font-weight: 800;
}

.process {
  background: #fff1e5;
}

.process h2 {
  margin-bottom: 34px;
}

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

.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
}

.pricing {
  background: var(--white);
}

.pricing-copy {
  position: sticky;
  top: 112px;
}

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

.plan {
  padding: 30px;
}

.plan.featured {
  border-color: rgba(242, 72, 50, 0.5);
  box-shadow: var(--shadow);
}

.plan-label {
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 20px 0;
  color: var(--charcoal);
  font-size: 2.6rem;
  font-weight: 800;
}

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

.plan li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--brand-red);
  font-weight: 800;
}

.support {
  background: #f8f1ec;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  margin-top: 14px;
  padding: 20px 24px;
}

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

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #f5eee8;
}

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

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 7, 8, 0.97) 0%, rgba(24, 25, 29, 0.9) 56%, rgba(242, 72, 50, 0.18) 100%);
  }

  .hero-media {
    object-position: 66% center;
  }

  .split,
  .support,
  .pricing,
  .plans,
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 42px;
    height: 34px;
  }

  .brand span:last-child {
    max-width: 145px;
    white-space: normal;
    line-height: 1.05;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding: 118px 18px 48px;
  }

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

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

  .hero-stats div {
    width: calc(50% - 7px);
    min-width: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
