﻿:root {
  --ink: #0b0f1a;
  --navy: #0f1f3d;
  --slate: #1c2e4a;
  --rule: #c8392b;
  --rule-dim: rgba(200, 57, 43, 0.22);
  --amber: #d9820a;
  --white: #ffffff;
  --muted: #8a95a3;
  --border: rgba(255, 255, 255, 0.09);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "Courier New", monospace;
  --font-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(11, 15, 26, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1320px;
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  width: 188px;
  min-width: 188px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  list-style: none;
  min-width: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--white);
}

.nav-cta {
  border: 1px solid var(--rule);
  color: var(--white) !important;
  padding: 7px 12px;
}

.nav-cta:hover {
  background: var(--rule);
}

.language {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.language a {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.language a[aria-current="true"] {
  color: var(--white);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: linear-gradient(160deg, var(--ink) 58%, var(--navy));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.026) 79px, rgba(255, 255, 255, 0.026) 80px);
  pointer-events: none;
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 80px;
  align-items: center;
  position: relative;
}

.label,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label {
  color: var(--rule);
  margin-bottom: 24px;
}

.label::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(38px, 4.8vw, 68px);
}

.hero h1 strong {
  display: block;
  font-weight: 700;
}

.hero-sub,
.section-desc {
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 44px;
}

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

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--rule);
  color: var(--white);
  font-weight: 700;
}

.btn-primary:hover {
  background: #a82d22;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.inline-link {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 130, 10, 0.55);
}

.inline-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.deadline-panel {
  border: 1px solid var(--rule-dim);
  background: rgba(200, 57, 43, 0.06);
  padding: 40px;
}

.deadline-eyebrow,
.product-tier,
.footer-copy {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deadline-eyebrow {
  color: var(--rule);
  font-size: 10px;
  margin-bottom: 20px;
}

.deadline-date {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.deadline-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.deadline-divider,
.product-divider {
  height: 1px;
  background: var(--border);
}

.deadline-divider {
  margin-bottom: 28px;
}

.penalty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.penalty-value {
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.penalty-desc,
.penalty-note {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.55;
}

.penalty-desc {
  margin-top: 5px;
}

.penalty-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.urgency-strip {
  background: var(--rule);
  padding: 16px 48px;
  text-align: center;
}

.urgency-strip p {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

section {
  padding: 100px 48px;
}

.section-label {
  color: var(--muted);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 46px);
}

.section-desc {
  max-width: 580px;
}

.problem-section,
.process-section {
  background: var(--navy);
}

.products-section,
.why-section {
  background: var(--ink);
}

.problem-grid,
.products-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}

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

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 46px;
}

.trust-item {
  background: rgba(15, 31, 61, 0.62);
  padding: 22px;
}

.trust-item b,
.result-kicker {
  color: var(--amber);
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.page-hero {
  padding: 138px 48px 82px;
  background: linear-gradient(160deg, var(--ink) 55%, var(--navy));
  border-bottom: 1px solid var(--border);
}

.page-hero .section-desc {
  max-width: 720px;
}

.insight-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.insight-card,
.industry-card {
  background: var(--ink);
  padding: 34px 28px;
}

.insight-card h3,
.industry-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}

.insight-card p,
.industry-card p,
.disclaimer {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.offer-note {
  border-left: 3px solid var(--amber);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 28px;
  padding: 14px 0 14px 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
  text-align: left;
}

.contact-layout .section-label {
  justify-content: flex-start;
}

.qualification-form,
.intake-form {
  display: grid;
  gap: 14px;
}

.qualification-form label,
.intake-form label {
  color: rgba(255, 255, 255, 0.66);
  display: grid;
  font-family: var(--font-mono);
  font-size: 10px;
  gap: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-form input,
.qualification-form textarea,
.qualification-form select,
.intake-form input,
.intake-form textarea,
.intake-form select {
  background: rgba(11, 15, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

.qualification-form input::placeholder,
.qualification-form textarea::placeholder,
.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.qualification-form textarea,
.intake-form textarea {
  min-height: 112px;
  resize: vertical;
}

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

.intake-section {
  background: var(--navy);
}

.intake-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  margin-top: 46px;
}

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

.check-grid label {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: row;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0;
  min-height: 44px;
  padding: 10px;
  text-transform: none;
}

.check-grid input {
  min-height: auto;
  width: auto;
}

.intake-result {
  background: rgba(11, 15, 26, 0.48);
  border: 1px solid var(--border);
  margin-top: 22px;
  padding: 24px;
}

.intake-result h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.intake-result dl {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.intake-result div {
  background: rgba(15, 31, 61, 0.62);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 11px 0;
}

.intake-result dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-result dd {
  color: var(--white);
  font-size: 14px;
  text-transform: capitalize;
}

.intake-result small,
.privacy-note {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
}

.disclaimer {
  border-top: 1px solid var(--border);
  margin-top: 42px;
  padding-top: 22px;
}

.problem-card,
.product-card {
  background: inherit;
  min-height: 100%;
}

.problem-card {
  padding: 40px 32px;
  position: relative;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 3px;
  height: 0;
  background: var(--rule);
  transition: height 0.35s ease;
}

.problem-card:hover::before {
  height: 100%;
}

.problem-icon {
  color: var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.problem-card h3,
.product-name,
.step-title,
.why-content h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.problem-card p,
.product-sub,
.product-price-note,
.product-features li,
.step-desc,
.why-content p,
.stat-label {
  color: rgba(255, 255, 255, 0.53);
}

.problem-card p,
.why-content p {
  font-size: 14px;
  line-height: 1.7;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 40px;
  background: var(--ink);
  transition: background 0.2s ease;
}

.product-card:hover,
.product-card.featured {
  background: var(--slate);
}

.product-card.featured {
  border-top: 2px solid var(--amber);
}

.product-tier {
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 12px;
}

.product-card.featured .product-tier {
  color: var(--amber);
}

.product-name {
  font-size: 20px;
  margin-bottom: 8px;
}

.product-sub,
.product-scope {
  font-size: 12px;
  line-height: 1.5;
}

.product-sub {
  margin-bottom: 24px;
}

.product-scope {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
  min-height: 74px;
}

.product-meta {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.product-meta div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: baseline;
  background: rgba(11, 15, 26, 0.38);
  padding: 10px 0;
}

.product-meta dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta dd {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

.product-divider {
  margin-bottom: 24px;
}

.product-features {
  flex: 1;
  list-style: none;
  margin-bottom: 28px;
}

.product-features li {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  line-height: 1.6;
}

.product-features li::before {
  content: ">";
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 2px;
}

.product-cta {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-top: 16px;
  text-transform: uppercase;
}

.product-card.featured .product-cta,
.product-cta:hover {
  color: var(--amber);
}

.price-line {
  color: var(--amber);
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--border);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--navy);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 18px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 15px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.why-list {
  list-style: none;
}

.why-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-num {
  color: var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  flex: 0 0 auto;
  padding-top: 3px;
}

.why-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.why-visual {
  border-left: 3px solid var(--rule);
  background: var(--slate);
  padding: 48px 40px;
}

.why-visual-title {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-label {
  font-size: 13px;
}

.stat-value {
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.contact-section {
  background: var(--rule);
  padding: 100px 48px;
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-label {
  color: rgba(255, 255, 255, 0.68);
  justify-content: center;
}

.contact-inner .section-desc {
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.74);
}

.btn-white {
  background: var(--white);
  color: var(--rule);
  font-weight: 700;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--ink);
  padding: 40px 48px;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  color: var(--white);
  font-size: 20px;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .hero-inner,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .deadline-panel {
    max-width: 520px;
  }

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

  .trust-row,
  .insight-grid,
  .industry-grid,
  .contact-layout,
  .intake-panel {
    grid-template-columns: 1fr;
  }

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

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    height: auto;
    padding: 16px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 10px 14px;
    overflow-x: hidden;
    padding-bottom: 0;
  }

  .language {
    border-left: 0;
    padding-left: 0;
  }

  .hero {
    padding: 150px 24px 64px;
  }

  section,
  .contact-section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .problem-grid,
  .products-grid,
  .process-steps,
  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

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

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