:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-dark: #111827;
  --text: #111827;
  --muted: #5b6472;
  --line: #d9e1ec;
  --brand: #f59e0b;
  --brand-dark: #b45309;
  --accent: #1f2937;
  --success: #166534;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

.section {
  padding: 88px 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brand);
  color: var(--text);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 225, 236, 0.7);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--text);
  color: var(--brand);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: var(--bg-soft);
}

.primary-nav .nav-cta {
  background: var(--brand);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  margin: 5px 0;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7fafc 55%, #e7edf5 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.06);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 680px;
  font-size: 1.17rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-callout {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  background: var(--bg-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.price-callout span {
  color: #cbd5e1;
  font-weight: 800;
}

.price-callout strong {
  color: var(--brand);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-callout small {
  flex-basis: 100%;
  color: #cbd5e1;
  max-width: 520px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #111827;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fbbf24;
}

.btn-secondary {
  background: var(--bg-dark);
  color: white;
}

.btn-full {
  width: 100%;
}

.trust-list {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.trust-list li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--accent);
}

.hero-card,
.lead-form,
.pricing-card,
.callout-box,
.contact-card,
.review-card,
.feature-card,
.steps article,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card-header h2 {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.lead-form {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.hero-card .lead-form {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.lead-form label,
.lead-form legend {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
  color: var(--accent);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: white;
  color: var(--text);
  padding: 13px 14px;
  margin-bottom: 16px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.lead-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hidden-field {
  display: none;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin: 0 0 16px;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
}

.checkbox-label input {
  width: auto;
  margin: 5px 0 0;
}

.consent {
  margin-top: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.strip {
  padding: 34px 0;
  background: var(--bg-dark);
  color: white;
}

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

.stats-grid div {
  padding: 10px 0;
}

.stats-grid strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
}

.stats-grid span {
  color: #cbd5e1;
  font-weight: 700;
}

.split,
.pricing-layout,
.faq-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.split > div > p,
.pricing-layout > div > p,
.faq-layout > div > p,
.contact-copy > p,
.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  border-radius: var(--radius-md);
  padding: 22px;
}

.feature-card span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-card p,
.steps p,
.review-card p,
.pricing-note p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.pricing-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  align-items: center;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.pricing-top {
  padding: 24px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, #111827, #2d3748);
  margin-bottom: 22px;
}

.pricing-top span {
  color: #cbd5e1;
  font-weight: 900;
}

.pricing-top strong {
  display: block;
  color: var(--brand);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin: 8px 0;
}

.pricing-top p {
  color: #e5e7eb;
  margin-bottom: 0;
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 900;
}

.pricing-note {
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 18px;
  margin-bottom: 20px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-heading.narrow {
  max-width: 700px;
}

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

.steps article {
  border-radius: var(--radius-md);
  padding: 26px;
}

.buyout-section {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.86)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.3), transparent 36%);
  color: white;
}

.buyout-section .eyebrow {
  color: #fbbf24;
}

.buyout-section p {
  color: #d1d5db;
}

.callout-box {
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.callout-box p {
  color: var(--muted);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.pill-grid span {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

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

.review-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.stars {
  color: var(--brand-dark);
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.review-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.faq-list details {
  border-radius: 18px;
  padding: 18px 20px;
}

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

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 25%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
}

.contact-card {
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}

.contact-card ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--muted);
}

.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 32px;
}

.footer-brand .brand-mark {
  background: var(--brand);
  color: var(--text);
}

.footer-brand small,
.site-footer p {
  color: #cbd5e1;
}

.site-footer h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a:not(.brand) {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .pricing-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats-grid,
  .feature-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-layout {
    align-items: start;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 66px 0;
  }

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

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 16px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-actions .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .trust-list li {
    width: 100%;
  }

  .form-row,
  .stats-grid,
  .feature-grid,
  .steps,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .hero-card,
  .pricing-card,
  .callout-box {
    padding: 22px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
