:root {
  --bg: #f5ede1;
  --bg-warm: #faf3e7;
  --surface: #ffffff;
  --surface-elev: #fffaf3;
  --ink: #14110e;
  --ink-soft: #2a241f;
  --muted: #6b6056;
  --muted-soft: #9a8f84;
  --line: rgba(20, 17, 14, 0.08);
  --line-strong: rgba(20, 17, 14, 0.14);
  --accent: #d65a2a;
  --accent-dark: #b04220;
  --accent-soft: #ffe1cd;
  --accent-bg: #fff4ea;
  --dark: #14110e;
  --dark-2: #1e1814;
  --dark-3: #2a221c;
  --green: #2f7a4d;
  --red: #c14a3a;
  --shadow-sm: 0 2px 8px rgba(89, 44, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(89, 44, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(89, 44, 22, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  padding-left: 0;
  list-style: none;
}

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

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============ NAV ============ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topnav-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: #fff;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.brand-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 150ms;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding: 9px 16px;
  border: 1px solid rgba(214, 90, 42, 0.4);
  border-radius: 999px;
  transition: 150ms;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ============ HERO DARK ============ */
.hero-dark {
  position: relative;
  background: linear-gradient(180deg, #14110e 0%, #1e1814 100%);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(214, 90, 42, 0.35) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(214, 90, 42, 0.12);
  border: 1px solid rgba(214, 90, 42, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #ffd1b3;
  margin-bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dd47f;
  box-shadow: 0 0 12px rgba(45, 212, 127, 0.6);
}

.hero-dark h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 28px;
  color: #fff;
}

.hero-dark h1 .hl {
  background: linear-gradient(120deg, #ff8c4d, #ffb380);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 160ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(214, 90, 42, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(214, 90, 42, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.btn-arrow {
  display: inline-block;
  transition: transform 160ms;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============ HERO STATS ============ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: #ff8c4d;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ============ SECTIONS BASE ============ */
.section {
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 14px;
  padding: 5px 10px;
  background: var(--accent-bg);
  border-radius: 6px;
}

.section-h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-h2 .hl {
  color: var(--accent);
}

.section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}

/* ============ PAIN SECTION ============ */
.pain-section {
  background: var(--bg-warm);
}

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

.pain-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: 200ms;
}

.pain-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff0e3;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============ STACK SECTION ============ */
.stack-section {
  background: var(--bg);
}

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

.stack-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: 200ms;
}

.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.stack-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.stack-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.stack-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 20px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-tags span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

.highlight-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: #fff;
  border: 1px solid var(--dark-3);
}

.highlight-card .stack-num {
  color: #ff8c4d;
}

.highlight-card h3 {
  color: #fff;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff8c4d;
  font-weight: 700;
  font-size: 14px;
  transition: 150ms;
}

.card-link:hover {
  gap: 10px;
}

.highlight-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(214, 90, 42, 0.25);
}

/* ============ PROCESS SECTION ============ */
.process-section {
  background: var(--bg-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.process-step {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(214, 90, 42, 0.3);
}

.step-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.5;
}

/* ============ TARIFFS SECTION ============ */
.tariffs-section {
  background: var(--bg);
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: 200ms;
}

.tariff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tariff-featured {
  background: linear-gradient(180deg, #fff7ee 0%, #ffeedb 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 16px 40px rgba(214, 90, 42, 0.15);
}

.tariff-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tariff-head {
  margin-bottom: 24px;
}

.tariff-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.tariff-for {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.tariff-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-strong);
}

.price-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-cur {
  font-family: "IBM Plex Mono", monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}

.price-period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
}

.price-custom {
  font-family: "IBM Plex Mono", monospace;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.tariff-list {
  flex-grow: 1;
  margin: 0 0 28px;
}

.tariff-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.tariff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23d65a2a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.tariff-list li b {
  color: var(--ink);
  font-weight: 700;
}

.tariff-section-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 8px;
}

.tariff-section-label:first-of-type {
  margin-top: 0;
}

.tariff-monthly {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 22px;
  background: var(--bg-warm);
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.monthly-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.tariffs-note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ============ AFTER LAUNCH SECTION ============ */
.afterlaunch-section {
  background: var(--bg-warm);
}

.afterlaunch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.afterlaunch-card {
  position: relative;
  padding: 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: 200ms;
}

.afterlaunch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.afterlaunch-featured {
  background: linear-gradient(180deg, #14110e 0%, #2a221c 100%);
  border: 1px solid var(--dark-3);
  color: #fff;
  box-shadow: 0 12px 32px rgba(20, 17, 14, 0.18);
}

.afterlaunch-featured .afterlaunch-name,
.afterlaunch-featured .afterlaunch-sub,
.afterlaunch-featured .afterlaunch-desc {
  color: rgba(255, 255, 255, 0.78);
}

.afterlaunch-featured .price-num,
.afterlaunch-featured .price-cur {
  color: #fff;
}

.afterlaunch-featured .price-period {
  color: rgba(255, 255, 255, 0.6);
}

.afterlaunch-featured .afterlaunch-list li {
  color: rgba(255, 255, 255, 0.85);
}

.afterlaunch-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.afterlaunch-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line-strong);
}

.afterlaunch-name {
  margin-bottom: 10px;
}

.afterlaunch-price .price-num {
  font-size: 32px;
}

.afterlaunch-price .price-cur {
  font-size: 20px;
}

.afterlaunch-price .price-period {
  font-size: 13px;
}

.afterlaunch-list li {
  padding: 6px 0 6px 26px;
  font-size: 14px;
}

.afterlaunch-featured .afterlaunch-head {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.afterlaunch-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.afterlaunch-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.afterlaunch-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.afterlaunch-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
}

.afterlaunch-list {
  flex-grow: 1;
  margin: 0 0 28px;
}

.afterlaunch-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.afterlaunch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23d65a2a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.afterlaunch-featured .afterlaunch-list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ff8c4d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 5'/></svg>");
}

.afterlaunch-note {
  margin-top: 32px;
  padding: 22px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
}

.afterlaunch-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============ COMPARE SECTION ============ */
.compare-section {
  background: var(--bg-warm);
}

.compare-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

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

.compare-cell {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.compare-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
}

.compare-header .compare-cell {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 22px 24px;
}

.compare-bad {
  color: var(--red);
  background: rgba(193, 74, 58, 0.05);
}

.compare-good {
  color: var(--green);
  background: rgba(47, 122, 77, 0.05);
}

.compare-row:not(.compare-header) .compare-cell:nth-child(2) {
  background: rgba(193, 74, 58, 0.03);
  position: relative;
  padding-left: 44px;
}

.compare-row:not(.compare-header) .compare-cell:nth-child(2)::before {
  content: "✕";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.compare-row:not(.compare-header) .compare-cell:nth-child(3) {
  background: rgba(47, 122, 77, 0.03);
  color: var(--ink-soft);
  position: relative;
  padding-left: 44px;
  font-weight: 500;
}

.compare-row:not(.compare-header) .compare-cell:nth-child(3)::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

/* ============ GUARANTEE SECTION ============ */
.guarantee-section {
  padding: 60px 0;
  background: var(--bg);
}

.guarantee-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 44px;
  background: linear-gradient(135deg, #14110e 0%, #2a221c 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.guarantee-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(214, 90, 42, 0.4);
}

.guarantee-text .eyebrow {
  background: rgba(214, 90, 42, 0.18);
  color: #ff8c4d;
}

.guarantee-text h2 {
  color: #fff;
  margin-bottom: 14px;
}

.guarantee-text h2 .hl {
  color: #ff8c4d;
}

.guarantee-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: var(--bg-warm);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 160ms;
}

.faq-item[open] {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  list-style: none;
  transition: 150ms;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--bg-warm);
}

.faq-toggle {
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 200ms;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 26px 22px;
}

.faq-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============ FORM SECTION ============ */
.form-section {
  background: var(--bg);
  padding-bottom: 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}

.form-info {
  position: sticky;
  top: 100px;
}

.form-info h2 {
  margin-bottom: 16px;
}

.form-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.form-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.form-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23d65a2a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  background: var(--bg-warm);
  color: var(--ink);
  transition: 150ms;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-soft);
  font-weight: 400;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(214, 90, 42, 0.12);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.form-legal {
  font-size: 12px;
  color: var(--muted-soft);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 14px;
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 150ms;
}

.footer-links a:hover {
  color: #ff8c4d;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-info {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 150ms;
}

.footer-legal-links a:hover {
  color: #ff8c4d;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  background: var(--bg);
  padding: 56px 0 96px;
  min-height: 70vh;
}

.legal-page .container {
  max-width: 840px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  transition: color 150ms;
}

.legal-back:hover {
  color: var(--accent);
}

.legal-page h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--ink-soft);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content b,
.legal-content strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-content .legal-requisites {
  margin-top: 12px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.legal-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 24px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stack-grid,
  .pain-grid,
  .tariffs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-arrow {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }

  .form-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .topnav-inner {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-dark {
    padding: 56px 0 72px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .pain-grid,
  .stack-grid,
  .tariffs-grid {
    grid-template-columns: 1fr;
  }

  .afterlaunch-card {
    padding: 24px 20px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-label {
    padding: 14px 24px 4px;
    background: var(--bg-warm);
  }

  .compare-header {
    display: none;
  }

  .compare-row:not(.compare-header) .compare-cell:nth-child(2)::before,
  .compare-row:not(.compare-header) .compare-cell:nth-child(3)::before {
    left: 20px;
  }

  .compare-row:not(.compare-header) .compare-cell:nth-child(2),
  .compare-row:not(.compare-header) .compare-cell:nth-child(3) {
    padding-left: 44px;
  }

  .guarantee-block {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .form-grid {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
