/* ============================================
   DS-TECH · v7 — slate-blue only (no orange)
   ============================================ */

:root {
  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F0F4F8;
  --bg-soft-2: #E3E7EB;
  --line: #DEE5EC;

  /* Brand: slate-blue family — the only accent now */
  --slate: #5F8196;
  --slate-dark: #4A6B7F;
  --slate-light: #7A9BB0;
  --slate-soft: #C7D4DE;

  /* Deep dark for emphasis */
  --ink: #081E27;
  --ink-2: #171C1F;
  --ink-3: #4A5660;
  --ink-4: #7A8390;

  /* Light text on dark */
  --white: #FFFFFF;
  --white-2: #DDE5EE;
  --white-3: #9BAFC0;

  --green: #62C584;

  --font: 'Manrope', Arial, sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--slate); color: var(--white); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ========== HEADER ========== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.hdr__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 17px;
  color: var(--ink);
}
.hdr__nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 500;
}
.hdr__nav a { color: var(--ink-3); }
.hdr__nav a:hover { color: var(--ink); }

.hdr__ctas { display: flex; gap: 8px; }
.hdr__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background: var(--slate);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.hdr__cta:hover { transform: translateY(-1px); background: var(--slate-dark); box-shadow: 0 6px 18px rgba(95, 129, 150, 0.35); }
.hdr__cta--ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.hdr__cta--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: none; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.18s;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--big { padding: 18px 34px; font-size: 16px; }
.btn--accent {
  background: var(--ink);
  color: var(--white);
}
.btn--accent:hover { background: var(--slate-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(8, 30, 39, 0.25); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: var(--white);
}
.btn--ghost-light:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
.btn--text {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 15px 12px;
}
.btn--text:hover { color: var(--slate-soft); }

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 160px) 0 clamp(80px, 10vw, 130px);
  color: var(--white);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg-svg { width: 100%; height: 100%; object-fit: cover; }
.hero__product {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  max-width: 880px;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55));
}
.hero__product img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 39, 0.2) 0%, rgba(8, 30, 39, 0) 35%, rgba(8, 30, 39, 0.35) 100%),
    linear-gradient(90deg, rgba(8, 30, 39, 0.55) 0%, rgba(8, 30, 39, 0.1) 50%, rgba(8, 30, 39, 0) 100%);
}
.hero__inner {
  position: relative;
  max-width: 880px;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--white);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 40px;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(8, 30, 39, 0.28);
}
.hero__chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-dark);
  box-shadow: 0 0 0 4px rgba(74, 107, 127, 0.35);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 107, 127, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(74, 107, 127, 0.18); }
}
.hero__title {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 3px 24px rgba(8, 30, 39, 0.35);
  max-width: 18ch;
}
.hero__title-em {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  z-index: 0;
  color: var(--white);
}
.hero__title-em::before {
  content: '';
  position: absolute;
  inset: 6% -2% 10% -2%;
  background: var(--slate-dark);
  z-index: -1;
  transform: skewX(-4deg);
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(8, 30, 39, 0.3);
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(8, 30, 39, 0.35);
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
}
.hero__stat {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(8, 30, 39, 0.15);
}
.hero__stat-num {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.15;
}
.hero__stat-lab {
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.4;
}

/* ========== SECTIONS COMMON ========== */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--white { background: var(--bg); }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--ink); color: var(--white); }
.section--dark { background: var(--ink); color: var(--white); }

.section__head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 800px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--dark .section__title { color: var(--white); }
.section__head--dark .section__sub { color: var(--white-2); }
.section__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.section__kicker::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--slate);
  margin-top: 10px;
  border-radius: 999px;
}
.section__head--center .section__kicker::after { margin-left: auto; margin-right: auto; }
.section__kicker--yellow { color: var(--slate-soft); }
.section__kicker--yellow::after { background: var(--slate-soft); }
.section__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section__title--light { color: var(--white); }
.section__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 60ch;
}
.section__sub--light { color: var(--white-2); }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ========== ADDONS ========== */
.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.addons--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.addon {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.addon:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(8, 30, 39, 0.1); border-color: var(--slate-light); }
.addon__visual {
  margin: -28px -26px 8px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.addon__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.addon__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-bottom: 6px;
}
.addon__icon svg { width: 32px; height: 32px; }
.addon h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.addon p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  flex: 1;
}
.addon__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-dark);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.addon__cta {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-dark);
  display: inline-flex;
  align-items: center;
  transition: gap 0.18s, color 0.18s;
}
.addon__cta:hover { color: var(--ink); }

/* ========== PACKAGES ========== */
.section--blue .section__kicker { color: var(--slate-soft); }
.section--blue .section__kicker::after { background: var(--slate-soft); }

.packs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pack {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pack__visual {
  margin: -28px -26px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  aspect-ratio: 280 / 140;
  overflow: hidden;
}
.pack__visual-svg { width: 100%; height: 100%; display: block; }
.pack__visual--dark { background: #2C4A5C; border-bottom-color: rgba(255,255,255,0.12); }
.pack:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(8, 30, 39, 0.12); border-color: var(--slate-light); }
.pack--featured {
  background: var(--slate-dark);
  color: var(--white);
  position: relative;
}
.pack--featured::before {
  content: 'Популярный';
  position: absolute;
  top: -10px;
  right: 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.pack__tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--slate);
}
.pack--featured .pack__tier { color: var(--slate-soft); }
.pack__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.pack__for {
  font-size: 13.5px;
  color: var(--ink-4);
  margin-top: 4px;
  line-height: 1.4;
}
.pack--featured .pack__for { color: var(--white-3); }
.pack__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pack--featured .pack__list { border-top-color: rgba(255, 255, 255, 0.18); }
.pack__list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
}
.pack--featured .pack__list li { color: var(--white-2); }
.pack__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--slate);
  font-weight: 700;
}
.pack--featured .pack__list li::before { color: var(--white); }
.pack__list--icons li {
  padding-left: 32px;
  min-height: 22px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.pack__list--icons li::before { content: none; }
.pack__ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--slate);
}
.pack--featured .pack__ico { color: var(--slate-soft); }
.pack__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pack--featured .pack__foot { border-top-color: rgba(255, 255, 255, 0.18); }
.pack__price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pack--featured .pack__price { color: var(--white); }
.pack__cta {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-dark);
  transition: gap 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pack--featured .pack__cta { color: var(--white); }
.pack__cta:hover { gap: 10px; }

.packs__foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-wrap: wrap;
}
.packs__foot p { color: var(--ink-3); font-size: 15px; max-width: 50ch; }

/* ========== DOCUMENTS ========== */
.docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.section--soft .doc { background: var(--white); }
.doc:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(8, 30, 39, 0.1); }
.doc__strip {
  position: absolute;
  top: 0; left: 0;
  height: 6px;
  width: 100%;
  background: var(--line);
}
.doc--blue .doc__strip { background: var(--slate); }
.doc--yellow .doc__strip { background: var(--slate-dark); }
.doc--accent {
  background: linear-gradient(180deg, var(--bg-soft-2) 0%, var(--bg-soft) 80%);
  border-style: dashed;
  border-color: var(--slate);
}
.section--soft .doc--accent { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 80%); }
.doc--accent .doc__strip { background: var(--slate-dark); }
.doc__type {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--slate);
}
.doc h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.doc__meta { display: flex; flex-direction: column; gap: 8px; }
.doc__meta > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  font-size: 13.5px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.doc__meta dt { color: var(--ink-4); }
.doc__meta dd { color: var(--ink); font-weight: 700; }
.doc__desc { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; flex: 1; }
.doc__btn {
  margin-top: auto;
  padding: 12px 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.doc__btn::after { content: '→'; transition: transform 0.18s; }
.doc__btn:hover::after { transform: translateX(4px); }
.doc__btn:hover { color: var(--slate-dark); }
.doc__btn--accent {
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  border-top: none;
  align-self: flex-start;
  margin-top: 12px;
}
.doc__btn--accent:hover { background: var(--slate-dark); color: var(--white); }
.doc__btn--accent::after { display: none; }

.laws {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.law {
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.law--y { background: var(--bg-soft); color: var(--ink); }
.law--b { background: var(--ink); color: var(--white); }
.law strong {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.law--y strong { color: var(--slate-dark); }
.law--b strong { color: var(--slate-soft); }
.law span { font-size: 13.5px; line-height: 1.4; }
.law--y span { color: var(--ink-3); }
.law--b span { color: var(--white-2); }

/* ========== CONTACT (simplified) ========== */
.contact {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: flex; flex-direction: column; gap: 10px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--2 > label { display: flex; flex-direction: column; gap: 10px; }
.form__lab {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-soft);
  font-weight: 700;
}
.form__opt {
  color: var(--white-3);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.form input, .form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.18s, background 0.18s;
  width: 100%;
  font-family: var(--font);
}
.form input::placeholder, .form textarea::placeholder { color: var(--white-3); }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.form textarea { resize: vertical; min-height: 100px; }

.form__foot {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form__foot .btn--accent { background: var(--white); color: var(--ink); }
.form__foot .btn--accent:hover { background: var(--slate-soft); }
.form__note { font-size: 12.5px; color: var(--white-3); flex: 1; min-width: 220px; line-height: 1.5; }
.form__success {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

.contact__side {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact__lab {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-soft);
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
}
.contact__big {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.contact__big:hover { color: var(--slate-soft); }
.contact__big--em { font-size: 17px; color: var(--slate-soft); font-weight: 700; }
.contact__big--em:hover { color: var(--white); }
.contact__hours { font-size: 13px; color: var(--white-3); margin-top: 8px; }
.contact__dl { display: flex; flex-direction: column; gap: 10px; }
.contact__dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  font-size: 13.5px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  line-height: 1.45;
}
.contact__dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.contact__dl dt { color: var(--white-3); }
.contact__dl dd { color: var(--white); }

/* ========== FOOTER ========== */
.foot {
  background: var(--bg-soft);
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot__brand p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 300px;
  line-height: 1.55;
}
.foot__lab {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.foot__col ul { display: flex; flex-direction: column; gap: 8px; }
.foot__col a, .foot__col p { font-size: 14px; color: var(--ink-3); }
.foot__col a:hover { color: var(--ink); }
.foot__col p { margin-bottom: 4px; }

.foot__bot {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 13px;
  color: var(--ink-4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1080px) {
  .addons { grid-template-columns: repeat(2, 1fr); }
  .packs { grid-template-columns: repeat(2, 1fr); }
  .docs { grid-template-columns: 1fr; }
  .laws { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .hdr__ctas .hdr__cta--ghost { display: none; }
  .hero__product { width: 72%; right: -12%; opacity: 0.5; }
}
@media (max-width: 720px) {
  .hdr__nav { display: none; }
  .hdr__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .addons { grid-template-columns: 1fr; }
  .packs { grid-template-columns: 1fr; }
  .laws { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .packs__foot { flex-direction: column; align-items: flex-start; }
  .hero__product { display: none; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== HONEYPOT + ERROR + LINK ========== */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form__error {
  padding: 16px 20px;
  background: rgba(255, 90, 60, 0.12);
  border: 1px solid #ff5a3c;
  color: #ff8170;
  border-radius: 12px;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}
.form__note-link { color: var(--slate-soft); text-decoration: underline; text-underline-offset: 3px; }
.form__note-link:hover { color: var(--white); }

/* ========== LEGAL PAGE (policy.html) ========== */
.legal { padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px); background: var(--bg); }
.legal__head { margin-bottom: clamp(36px, 5vw, 56px); padding-bottom: 32px; border-bottom: 1px solid var(--line); max-width: 820px; }
.legal__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.legal__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px; }
.legal__meta { font-size: 13.5px; color: var(--ink-4); }
.legal__body { max-width: 820px; color: var(--ink-2); }
.legal__body h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); margin: 36px 0 14px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.legal__body ul { display: flex; flex-direction: column; gap: 8px; margin: 0 0 18px; padding-left: 20px; list-style: disc; }
.legal__body li { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.legal__body a { color: var(--slate-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--ink); }
.legal__body strong, .legal__body b { color: var(--ink); font-weight: 700; }
.legal__back { margin-top: 56px; font-size: 14.5px; font-weight: 600; }
.legal__back a { color: var(--slate-dark); }
.legal__back a:hover { color: var(--ink); }

/* ========== FAQ ========== */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--bg); overflow: hidden; transition: border-color .2s ease; }
.faq__item[open] { border-color: var(--slate-light); }
.faq__q { list-style: none; cursor: pointer; padding: 20px 52px 20px 24px; font-size: clamp(15px, 1.8vw, 17px); font-weight: 700; color: var(--ink); position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--slate); line-height: 1; transition: transform .2s ease; }
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 24px 22px; }
.faq__a p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0; }

@media (max-width: 560px) {
  .faq__q { padding: 16px 44px 16px 18px; }
  .faq__a { padding: 0 18px 18px; }
}
