:root {
  --ink: #26211d;
  --muted: #706a63;
  --line: #dfd7cc;
  --surface: #f5f2ed;
  --white: #ffffff;
  --blue: #bb7c39;
  --blue-dark: #8f5524;
  --gold: #b8860b;
  --green: #7b5a25;
  --green-soft: #f3eadb;
  --gold-soft: #fff3d7;
  --shadow: 0 18px 48px rgba(38, 33, 29, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fffdf9;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
body, button, a { letter-spacing: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 215, 204, 0.92);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, #3b3028 0%, #211b17 100%);
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.brand-text { font-family: Manrope, Inter, sans-serif; font-size: 17px; font-weight: 800; }
.nav-link { color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; }
.nav-link:hover { color: var(--blue-dark); }

.hero {
  padding: 40px 0 22px;
  border-bottom: 1px solid #d8bc86;
  background: linear-gradient(180deg, #efe2cf 0%, #f8f1e7 66%, #fffdf9 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: #8f5524;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.14;
}
h1 { max-width: 920px; margin-bottom: 18px; font-size: clamp(35px, 4.5vw, 52px); }
h2 { margin-bottom: 16px; font-size: clamp(28px, 3.6vw, 42px); }
h3 { margin-bottom: 10px; font-size: 21px; }
.lead { max-width: 820px; margin: 0 0 18px; color: var(--muted); font-size: 19px; }
.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 24px;
}
.hero-price strong { font-family: Manrope, Inter, sans-serif; font-size: 31px; }
.hero-price span { color: var(--muted); font-size: 15px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  border-color: #b9691f;
  background: linear-gradient(135deg, #d98a2b 0%, #b9691f 100%);
  box-shadow: 0 13px 30px rgba(185, 105, 31, .27);
  color: var(--white);
}
.btn-primary:hover {
  border-color: #a85a17;
  background: linear-gradient(135deg, #e09636 0%, #a85a17 100%);
  box-shadow: 0 17px 38px rgba(185, 105, 31, .34);
}
.btn-secondary { border-color: #bca98f; background: rgba(255, 255, 255, .82); color: var(--ink); }
.btn-secondary:hover { border-color: #9b6b37; color: #7b4a20; }
.microcopy { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.proof-bar { border-bottom: 1px solid #d8bc86; background: #f2dfbd; }
.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-list li { padding: 19px 18px; border-right: 1px solid #d8bc86; font-size: 14px; font-weight: 700; }
.proof-list li:first-child { padding-left: 0; }
.proof-list li:last-child { border-right: 0; }
.proof-list span { display: block; margin-bottom: 3px; color: #8b5e20; font-size: 12px; font-weight: 800; text-transform: uppercase; }

.section { padding: 68px 0; }
.section-soft { background: linear-gradient(180deg, #f5f2ed 0%, #fbf8f3 100%); }
.section-head { max-width: 800px; margin-bottom: 30px; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.outcome {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 12px 34px rgba(38, 33, 29, .07);
}
.outcome-number { margin-bottom: 20px; color: var(--gold); font-family: Manrope, Inter, sans-serif; font-size: 14px; font-weight: 800; }
.outcome p { margin: 0; color: var(--muted); }

.result-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 38px; align-items: center; }
.result-media img { width: 100%; border: 1px solid #cdb995; box-shadow: var(--shadow); }
.result-copy ul { margin: 20px 0 0; padding: 0; list-style: none; }
.result-copy li { position: relative; margin: 12px 0; padding-left: 25px; color: var(--muted); }
.result-copy li::before { position: absolute; left: 0; color: var(--gold); content: "\2713"; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.step { padding-top: 18px; border-top: 3px solid var(--gold); }
.step p { margin: 0; color: var(--muted); }

.offer-band {
  padding: 42px 0;
  border-top: 1px solid #54463a;
  border-bottom: 1px solid #54463a;
  background: linear-gradient(135deg, #302821 0%, #211b17 100%);
  color: var(--white);
}
.offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.offer-inner h2 { margin-bottom: 8px; font-size: clamp(25px, 3vw, 36px); }
.offer-inner p { margin: 0; color: #e5d9c8; }
.offer-band .btn-primary {
  border-color: #d5a33b;
  background: linear-gradient(135deg, #f2c86a 0%, #d8a640 100%);
  box-shadow: 0 13px 30px rgba(0, 0, 0, .22);
  color: #2b231c;
}
.offer-band .btn-primary:hover { background: linear-gradient(135deg, #f7d681 0%, #d5a03a 100%); }

.tariff-section {
  padding: 54px 0;
  border-top: 1px solid #54463a;
  border-bottom: 1px solid #54463a;
  background: linear-gradient(135deg, #302821 0%, #211b17 100%);
  color: var(--white);
}
.tariff-heading { max-width: 780px; margin-bottom: 26px; }
.tariff-heading h2 { margin-bottom: 10px; }
.tariff-heading p { margin: 0; color: #e5d9c8; }
.tariff-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.tariff-grid.segmented-offers { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 1.35fr); }
.tariff-card {
  display: flex;
  min-width: 0;
  min-height: 238px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #705f50;
  border-radius: 8px;
  background: #3b3028;
}
.tariff-card.featured { border-color: #e3b24d; background: #493927; box-shadow: inset 0 3px 0 #e3b24d; }
.tariff-label { min-height: 20px; margin: 0 0 8px; color: #e9be65; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.tariff-card h3 { min-height: 48px; margin-bottom: 8px; font-size: 19px; }
.tariff-price { margin: 0 0 8px; color: #f3cf80; font-family: Manrope, Inter, sans-serif; font-size: 29px; font-weight: 800; }
.tariff-copy { flex: 1; margin: 0 0 18px; color: #e5d9c8; font-size: 14px; }
.tariff-card .btn { width: 100%; min-height: 44px; padding: 0 12px; }
.tariff-card.professional-card { background: #2c241f; }
.professional-options { display: grid; gap: 9px; margin: 6px 0 18px; }
.professional-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.professional-option:last-child { border-bottom: 0; }
.professional-option b { display: block; font-size: 14px; }
.professional-option span { color: #e9be65; font-size: 14px; font-weight: 800; white-space: nowrap; }
.professional-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.professional-links .btn { min-height: 40px; font-size: 12px; }
.tariff-note { margin: 18px 0 0; color: #d8cbbb; font-size: 13px; }

.article { max-width: 920px; }
.article h2 { margin-top: 48px; font-size: clamp(25px, 3vw, 34px); }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: #4a423b; }
.article table { width: 100%; margin: 22px 0 32px; border: 1px solid var(--line); border-collapse: collapse; background: var(--white); }
.article th, .article td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article th { background: #f2eadf; font-size: 13px; }
.article tr:last-child td { border-bottom: 0; }
.note { margin: 22px 0; padding: 18px 20px; border-left: 4px solid var(--gold); background: var(--gold-soft); }
.disclaimer { margin-top: 34px; padding: 16px 18px; border: 1px solid #d8c39e; background: var(--green-soft); color: #584425; font-size: 14px; }

.site-footer { padding: 32px 0; border-top: 1px solid #d8bc86; background: #eee5d8; color: #62594f; font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-row a { color: var(--blue-dark); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-legal-links a { color: var(--blue-dark); }
.mobile-cta { display: none; }

@media (max-width: 860px) {
  .hero { padding: 34px 0 26px; }
  .proof-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-list li { border-bottom: 1px solid var(--line); }
  .proof-list li:nth-child(2) { border-right: 0; }
  .proof-list li:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-list li:nth-child(3) { padding-left: 0; }
  .outcome-grid, .steps, .result-layout { grid-template-columns: 1fr; }
  .result-copy { order: -1; }
  .offer-inner { align-items: flex-start; flex-direction: column; }
  .tariff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tariff-grid.segmented-offers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tariff-card.professional-card { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav { min-height: 60px; }
  .nav-link { display: none; }
  h1 { font-size: 35px; }
  .lead { font-size: 17px; }
  .hero-price strong { font-size: 28px; }
  .cta-row .btn { width: 100%; }
  .proof-list { grid-template-columns: 1fr; }
  .proof-list li, .proof-list li:nth-child(3) { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-list li:last-child { border-bottom: 0; }
  .section { padding: 52px 0; }
  .outcome { min-height: 0; }
  .article { overflow: visible; }
  .article table {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
  }
  .article table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .article table tbody,
  .article table tr,
  .article table td { display: block; width: 100%; }
  .article table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 8px 24px rgba(38, 33, 29, .06);
  }
  .article table td,
  .article table tr:last-child td {
    display: grid;
    grid-template-columns: minmax(104px, .42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
  }
  .article table td:last-child,
  .article table tr:last-child td:last-child { border-bottom: 0; }
  .article table td::before {
    align-self: start;
    color: #8b5e20;
    content: attr(data-label);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .footer-row { flex-direction: column; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff-grid.segmented-offers { grid-template-columns: 1fr; }
  .tariff-card.professional-card { grid-column: auto; }
  .professional-links { grid-template-columns: 1fr; }
  .tariff-card { min-height: 0; }
  .tariff-card h3 { min-height: 0; }
  .footer-legal-links { flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid #b9691f;
    background: linear-gradient(135deg, #d98a2b 0%, #b9691f 100%);
    box-shadow: 0 10px 30px rgba(185, 105, 31, .34);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
  }
  body { padding-bottom: 68px; }
}

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