/* ================================================================
   LIGHT.CSS — Light-theme edition of the Ilmaz Gismatov landing
   Warm paper aesthetic, same brand system, punchier psychology
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  background: #FBF9F6;
  color: #17171B;
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: #D9481F; color: #FBF9F6; }

:root {
  --bg: #FBF9F6;
  --bg-alt: #FFFFFF;
  --bg-soft: #F3EEE6;
  --bg-card: #FFFFFF;
  --ink: #17171B;
  --ink-dim: #55555F;
  --ink-faded: #8C8C94;
  --line: rgba(23,23,27,0.10);
  --line-strong: rgba(23,23,27,0.18);
  --accent: #D9481F;
  --accent-2: #FF7A45;
  --accent-bg: rgba(217,72,31,0.07);
  --accent-bg-strong: rgba(217,72,31,0.14);
  --good: #2E7D45;
  --good-bg: rgba(46,125,69,0.08);
  --display: 'Russo One', 'Manrope', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 2px 10px rgba(23,23,27,0.05);
  --shadow-md: 0 12px 32px rgba(23,23,27,0.08);
  --shadow-lg: 0 24px 60px rgba(23,23,27,0.12);
}

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .wrap { padding: 0 18px; } }

/* ============ REVEAL SYSTEM ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1.visible { transition-delay: .08s; }
.reveal-d2.visible { transition-delay: .16s; }
.reveal-d3.visible { transition-delay: .24s; }
.reveal-d4.visible { transition-delay: .32s; }
.reveal-d5.visible { transition-delay: .4s; }
.reveal-d6.visible { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-mark {
  width: 56px; height: 56px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 24px; color: #fff;
  animation: pl-pulse 1.4s ease-in-out infinite;
}
@keyframes pl-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.pl-track { width: 180px; height: 3px; background: var(--line-strong); border-radius: 2px; overflow: hidden; }
.pl-fill { width: 0%; height: 100%; background: var(--accent); animation: pl-fill 1.1s ease forwards; }
@keyframes pl-fill { to { width: 100%; } }
.pl-text { font-family: var(--mono); font-size: 12px; color: var(--ink-faded); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============ HEADER ============ */
.header { position: sticky; top: 0; z-index: 80; background: rgba(251,249,246,0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 42px; height: 42px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 20px; color: #fff; }
.brand-text .name { font-family: var(--display); font-size: 14px; letter-spacing: 0.01em; }
.brand-text .role { font-size: 11px; color: var(--ink-faded); margin-top: 3px; letter-spacing: 0.04em; text-transform: uppercase; }
.header-right { display: flex; align-items: center; gap: 20px; }
.tel { font-family: var(--display); font-size: 16px; }
.tel:hover { color: var(--accent); transition: color .2s; }
.socials { display: flex; gap: 8px; }
.soc { width: 34px; height: 34px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.soc svg { width: 15px; height: 15px; fill: var(--ink); }
.soc:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.soc:hover svg { fill: #fff; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; background: var(--accent); color: #fff !important; font-weight: 700; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; border-radius: 8px; transition: all .2s; white-space: nowrap; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 8px 20px var(--accent-bg-strong); }
.btn-primary svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .header-right .btn-primary { display: none; } }
@media (max-width: 560px) { .socials { display: none; } .brand-text .name { font-size: 12px; } .brand-text .role { font-size: 10px; } }

/* ============ HERO ============ */
.hero { position: relative; padding: 64px 0 88px; overflow: hidden; }
.hero-noise { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(ellipse 700px 500px at 78% 0%, var(--accent-bg) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 5% 100%, rgba(217,72,31,0.05) 0%, transparent 60%);
}
.hero-noise::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 25% 30%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 30%, black 0%, transparent 65%);
  opacity: 0.6;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: start; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--accent-bg); border: 1px solid rgba(217,72,31,0.22); color: var(--accent); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 100px; margin-bottom: 26px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

h1.hero-title { font-family: var(--display); font-size: clamp(32px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 24px; font-weight: 400; }
h1.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--ink-dim); max-width: 580px; margin: 0 0 16px; }
.hero-sub b { color: var(--ink); font-weight: 700; }
.hero-personal { font-size: 15px; line-height: 1.65; color: var(--ink-faded); max-width: 560px; margin: 0 0 34px; padding: 16px 18px; background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 4px; }
.hero-personal b { color: var(--ink); }
.mobile-offer { display: none; }

.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.btn-cta { display: inline-flex; align-items: center; gap: 14px; padding: 20px 30px; background: var(--accent); color: #fff !important; font-weight: 800; font-size: 16px; border-radius: 10px; transition: all .25s; box-shadow: 0 10px 26px var(--accent-bg-strong); }
.btn-cta:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(217,72,31,0.28); }
.btn-cta svg { width: 18px; height: 18px; }
.btn-wa-outline { display: inline-flex; align-items: center; gap: 10px; padding: 20px 26px; background: #fff; border: 1px solid var(--line-strong); color: var(--ink) !important; font-weight: 700; font-size: 15px; border-radius: 10px; transition: all .2s; }
.btn-wa-outline:hover { border-color: #25D366; background: rgba(37,211,102,0.06); }
.btn-wa-outline svg { width: 19px; height: 19px; color: #25D366; }

.btn-max { display: inline-flex; align-items: center; gap: 12px; padding: 20px 28px; background: linear-gradient(135deg, #4A90E2, #9B59D6); color: #fff !important; font-weight: 700; font-size: 15px; border-radius: 10px; transition: all .2s; box-shadow: 0 10px 26px rgba(74,144,226,0.28); }
.btn-max:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(74,144,226,0.38); filter: brightness(1.06); }
.btn-max svg { width: 19px; height: 19px; }
.link-wa-secondary { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-faded); }
.link-wa-secondary:hover { color: var(--ink-dim); }
.link-wa-secondary svg { width: 14px; height: 14px; color: #25D366; }
.cta-note { font-size: 13px; color: var(--ink-faded); max-width: 220px; line-height: 1.5; }

.hero-stats { display: flex; gap: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--display); font-size: 30px; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 11px; color: var(--ink-faded); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 8px; }

/* HERO RIGHT */
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.spec-sheet {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px; position: relative; font-family: var(--mono); box-shadow: var(--shadow-md);
}
.spec-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 16px; border-bottom: 1px dashed var(--line-strong); margin-bottom: 18px; }
.spec-head .title { font-family: var(--display); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.spec-head .id { font-size: 11px; color: var(--ink-faded); }
.spec-list { display: flex; flex-direction: column; gap: 12px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 12px; }
.spec-row .k { color: var(--ink-faded); letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0; }
.spec-row .v { color: var(--ink); text-align: right; font-weight: 600; }
.spec-row .v.accent { color: var(--accent); font-weight: 700; }
.spec-row .v .small { color: var(--ink-faded); font-weight: 400; display: block; font-size: 11px; margin-top: 2px; }
.spec-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); margin-bottom: 4px; min-width: 12px; }
.spec-foot { margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--line-strong); display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-faded); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-photo-wrap { border-radius: 14px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); background: var(--bg-soft); }
.hero-photo-wrap img { width: 100%; display: block; }
.hero-photo-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent); letter-spacing: 0.04em; }
.hero-photo-meta .live { width: 7px; height: 7px; background: #4CAF50; border-radius: 50%; display: inline-block; margin-right: 6px; animation: pulse 2s infinite; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
}
@media (max-width: 560px) {
  .hero { padding: 22px 0 32px; }
  .eyebrow { margin-bottom: 14px; padding: 6px 12px; font-size: 11px; }
  h1.hero-title { font-size: clamp(24px, 7.5vw, 32px); line-height: 1.14; margin-bottom: 12px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 12px; }
  .hero-personal { display: none; }
  .mobile-offer {
    display: flex; align-items: center; gap: 12px; margin: 0 0 16px;
    padding: 12px 14px; background: var(--accent-bg); border: 1px solid rgba(217,72,31,0.22);
    border-radius: 10px;
  }
  .mobile-offer .price { font-family: var(--display); font-size: 18px; color: var(--accent); white-space: nowrap; flex-shrink: 0; }
  .mobile-offer .desc { font-size: 12px; color: var(--ink-dim); line-height: 1.35; }
  .btn-cta { width: 100%; justify-content: center; padding: 17px; font-size: 15px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 22px; }
  .cta-note { max-width: none; text-align: center; }
  .hero-stats { gap: 20px; padding-top: 18px; }
  .stat-num { font-size: 24px; }
}

/* ============ SIGNAL / SELF-DIAGNOSIS ============ */
.signal { padding: 56px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.signal-head .tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.signal-head h2 { font-family: var(--display); font-size: clamp(22px,3vw,30px); font-weight: 400; margin: 0; line-height: 1.25; }
.signal-head h2 em { font-style: normal; color: var(--accent); }
.signal-list { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.signal-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--ink-dim); line-height: 1.45; }
.signal-item .box { width: 22px; height: 22px; border: 1.5px solid var(--line-strong); border-radius: 5px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.signal-item:hover .box { border-color: var(--accent); background: var(--accent-bg); }
.signal-item:hover .box::after { content: '✓'; color: var(--accent); font-size: 13px; font-weight: 700; }
.signal-foot { text-align: center; margin-top: 28px; font-size: 15px; color: var(--ink); font-weight: 600; }
.signal-foot span { color: var(--accent); }
@media (max-width: 700px) { .signal-list { grid-template-columns: 1fr; } }

/* ============ PHOTO PROOF STRIP ============ */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card { border-radius: 14px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); background: var(--bg-soft); }
.proof-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.proof-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent); color: #fff; font-size: 13px; font-weight: 600; line-height: 1.4; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } .proof-card img { height: 220px; } }

/* ============ SECTIONS ============ */
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
@media (max-width: 768px) { .section { padding: 56px 0; } }
.section-header { margin-bottom: 48px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: end; }
.section-num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--accent); padding-bottom: 8px; border-bottom: 2px solid var(--accent); align-self: end; white-space: nowrap; }
.section-title { font-family: var(--display); font-size: clamp(26px,3.6vw,40px); line-height: 1.12; letter-spacing: -0.01em; margin: 0; font-weight: 400; max-width: 800px; }
.section-title em { font-style: normal; color: var(--accent); }
@media (max-width: 768px) { .section-header { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; } }

/* ============ ORIGIN STORY ============ */
.origin { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; align-items: start; }
.origin-photo { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.origin-photo img { width: 100%; display: block; }
.origin-text p { font-size: 17px; line-height: 1.72; color: var(--ink-dim); margin: 0 0 20px; }
.origin-text p b { color: var(--ink); font-weight: 700; }
.origin-text .lead { font-family: var(--display); font-size: 21px; font-weight: 400; line-height: 1.4; color: var(--ink); margin: 0 0 24px; }
.origin-quote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin: 26px 0; font-size: 18px; color: var(--ink); line-height: 1.5; font-weight: 600; }
.origin-sign { font-family: var(--mono); font-size: 13px; color: var(--ink-faded); margin-top: 8px; }
@media (max-width: 860px) { .origin { grid-template-columns: 1fr; gap: 32px; } .origin-photo { max-width: 320px; margin: 0 auto; } }

/* ============ PAIN CARDS ============ */
.pain-intro { font-size: 17px; color: var(--ink-dim); max-width: 720px; line-height: 1.6; margin: 0 0 40px; }
.pain-intro b { color: var(--ink); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 28px; transition: all .25s; }
.pain-card:hover { border-color: rgba(217,72,31,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pain-card .icon { width: 44px; height: 44px; background: var(--accent-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.pain-card .icon svg { width: 20px; height: 20px; }
.pain-card h4 { font-family: var(--display); font-size: 17px; font-weight: 400; margin: 0 0 10px; line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; margin: 0 0 16px; }
.pain-card .quote { font-size: 13px; font-style: normal; color: var(--ink-faded); padding-top: 14px; border-top: 1px dashed var(--line); }
@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============ COST GRID ============ */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.cost-col { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.cost-col.good { border-color: rgba(46,125,69,0.25); background: linear-gradient(180deg, var(--good-bg), transparent 40%), var(--bg-alt); }
.cost-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faded); }
.cost-col.good .cost-tag { color: var(--good); }
.cost-col h3 { font-family: var(--display); font-size: 19px; font-weight: 400; margin: 10px 0 20px; }
.cost-list { list-style: none; margin: 0 0 20px; padding: 0; }
.cost-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--ink-dim); }
.cost-row .val { color: var(--ink); font-weight: 600; }
.cost-bigtotal { padding-top: 18px; border-top: 2px solid var(--line-strong); }
.cost-bigtotal.good { border-top-color: var(--good); }
.cost-bigtotal .lbl { font-size: 12px; color: var(--ink-faded); text-transform: uppercase; letter-spacing: 0.04em; }
.cost-bigtotal .val { font-family: var(--display); font-size: 28px; margin: 6px 0; }
.cost-bigtotal.good .val { color: var(--good); }
.cost-bigtotal .sub { font-size: 13px; color: var(--ink-faded); line-height: 1.5; }

.bar-section { display: flex; flex-direction: column; gap: 18px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.bar-row { display: grid; grid-template-columns: 160px 1fr 130px; gap: 16px; align-items: center; }
.bar-lbl { font-size: 13px; color: var(--ink-dim); }
.bar-track { height: 10px; background: var(--bg-soft); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 6px; transition: width 1.3s cubic-bezier(.2,.8,.2,1); }
.bar-val { font-family: var(--mono); font-size: 12px; color: var(--ink); text-align: right; }
@media (max-width: 760px) { .cost-grid { grid-template-columns: 1fr; } .bar-row { grid-template-columns: 1fr; gap: 6px; } .bar-val { text-align: left; } }

/* ============ WHY GRID ============ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-cell { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 32px; position: relative; transition: all .2s; }
.why-cell:hover { box-shadow: var(--shadow-md); }
.why-cell .cell-num { position: absolute; top: 26px; right: 28px; font-family: var(--mono); font-size: 12px; color: var(--ink-faded); }
.why-cell .icon { width: 46px; height: 46px; background: var(--accent-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.why-cell .icon svg { width: 21px; height: 21px; }
.why-cell h3 { font-family: var(--display); font-size: 19px; margin: 0 0 12px; font-weight: 400; }
.why-cell p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; margin: 0; }
.why-cell p b { color: var(--ink); }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ TIMELINE ============ */
.tl { position: relative; }
.tl-rail { position: absolute; left: 19px; top: 0; bottom: 0; width: 1px; background: var(--line-strong); }
.tl-step { display: grid; grid-template-columns: 40px 140px 1fr; gap: 24px; padding: 26px 0; align-items: start; position: relative; }
.tl-dot { width: 40px; height: 40px; background: var(--bg-alt); border: 1.5px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; color: var(--accent); position: relative; z-index: 1; }
.tl-step.active .tl-dot { background: var(--accent); color: #fff; }
.tl-when { font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 10px; text-transform: uppercase; }
.tl-body h4 { font-family: var(--display); font-size: 19px; font-weight: 400; margin: 0 0 8px; }
.tl-body p { margin: 0; color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 700px) { .tl-step { grid-template-columns: 32px 1fr; gap: 16px; } .tl-when { display: none; } .tl-rail { left: 15px; } }

/* ============ CASES ============ */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 28px; transition: all .25s; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(217,72,31,0.25); }
.case-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.case-card h3 { font-family: var(--display); font-size: 18px; line-height: 1.3; margin: 0 0 18px; font-weight: 400; }
.case-metric { background: var(--accent-bg); border-left: 2px solid var(--accent); padding: 14px 16px; margin: 0 0 18px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; border-radius: 4px; }
.case-metric .big { font-family: var(--display); font-size: 24px; color: var(--accent); line-height: 1; }
.case-metric .lbl { font-size: 11px; color: var(--ink-dim); line-height: 1.35; }
.case-bullets { list-style: none; padding: 0; margin: 0 0 20px; }
.case-bullets li { padding: 7px 0; font-size: 13.5px; color: var(--ink-dim); border-bottom: 1px dashed var(--line); display: flex; gap: 8px; }
.case-bullets li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.case-bullets li:last-child { border-bottom: none; }
.case-link { font-family: var(--mono); font-size: 11px; color: var(--ink); letter-spacing: 0.05em; text-transform: uppercase; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* ============ WHY PRICE ============ */
.why-price-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: start; }
.head-lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.why-price-grid h2 { font-family: var(--display); font-size: clamp(24px,3.2vw,36px); line-height: 1.14; margin: 0 0 16px; font-weight: 400; }
.why-price-grid h2 em { font-style: normal; color: var(--accent); }
.why-price-grid .lead { font-size: 16px; line-height: 1.6; color: var(--ink-dim); margin: 0; }
.why-compare { display: flex; flex-direction: column; gap: 14px; }
.why-card { padding: 22px 24px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--line); }
.why-card.me { border-color: rgba(217,72,31,0.3); background: var(--accent-bg); }
.why-card .who { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 16px; margin-bottom: 8px; }
.why-card .who .tag { font-family: var(--mono); font-size: 10px; font-weight: 400; padding: 3px 9px; border-radius: 100px; background: var(--bg-soft); color: var(--ink-faded); }
.why-card.me .who .tag { background: var(--accent); color: #fff; }
.why-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); }
.why-card p b { color: var(--ink); }
.why-punch { margin-top: 24px; padding: 20px 24px; border-radius: 12px; background: linear-gradient(135deg, var(--accent-bg-strong), transparent); border: 1px solid rgba(217,72,31,0.22); font-family: var(--display); font-size: clamp(16px,1.8vw,19px); line-height: 1.4; }
.why-punch em { font-style: normal; color: var(--accent); }
@media (max-width: 860px) { .why-price-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============ OFFER DOC ============ */
.offer-doc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.offer-doc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.offer-doc-head { padding: 34px 36px 26px; border-bottom: 1px dashed var(--line-strong); }
.offer-doc-head .meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; color: var(--ink-faded); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.offer-doc-head .meta .badge { background: var(--accent-bg-strong); color: var(--accent); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(217,72,31,0.25); }
.offer-doc-head h3 { font-family: var(--display); font-size: clamp(24px,2.8vw,32px); margin: 0 0 10px; font-weight: 400; line-height: 1.1; }
.offer-doc-head h3 em { font-style: normal; color: var(--accent); }
.offer-doc-head .tagline { font-size: 14px; color: var(--ink-dim); margin: 0; max-width: 600px; line-height: 1.5; }
.offer-sect { padding: 26px 36px; border-bottom: 1px dashed var(--line); }
.offer-sect:last-of-type { border-bottom: none; }
.offer-sect-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.offer-sect-head .marker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding: 3px 8px; background: var(--accent-bg); border-radius: 4px; }
.offer-sect-head h4 { font-family: var(--display); font-size: 16px; margin: 0; font-weight: 400; }
.offer-sect-head .stamp { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--ink-faded); text-transform: uppercase; }
.offer-line { display: grid; grid-template-columns: 20px 1fr auto; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--line); align-items: start; }
.offer-line:last-child { border-bottom: none; }
.offer-line .mark { width: 18px; height: 18px; border: 1.5px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.offer-line .mark svg { width: 9px; height: 9px; fill: var(--accent); }
.offer-line .body h5 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.offer-line .body p { font-size: 12.5px; color: var(--ink-dim); margin: 0; line-height: 1.5; }
.offer-line .body p b { color: var(--ink); font-weight: 600; }
.offer-line .price { font-family: var(--mono); font-size: 12px; text-align: right; white-space: nowrap; font-weight: 500; padding-top: 2px; }
.offer-line .price .lbl { display: block; font-size: 9px; color: var(--ink-faded); text-transform: uppercase; margin-top: 2px; }
.offer-line .price.free { color: var(--accent); }
.offer-line.guarantee-line .mark { background: var(--accent); }
.offer-line.guarantee-line .mark svg { fill: #fff; }
.offer-totals { background: var(--bg-soft); padding: 26px 36px; }
.offer-totals .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-dim); }
.offer-totals .row.final { font-family: var(--display); font-size: 18px; color: var(--ink); border-top: 2px solid var(--accent); padding-top: 16px; margin-top: 8px; }
.offer-cta { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 20px; margin-top: 22px; background: var(--accent); color: #fff !important; font-weight: 800; font-size: 15px; border-radius: 10px; transition: all .2s; box-shadow: var(--shadow-md); }
.offer-cta:hover { background: var(--accent-2); transform: translateY(-2px); }
.offer-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.scope-box { padding: 26px; background: var(--accent-bg); border: 1px solid rgba(217,72,31,0.18); border-radius: 14px; }
.scope-title { font-family: var(--display); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.scope-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.scope-list li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.4; color: var(--ink-dim); }
.scope-list li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 700; }
.scope-note { padding-top: 16px; border-top: 1px dashed rgba(217,72,31,0.25); font-size: 13.5px; line-height: 1.6; color: var(--ink-dim); }
.scope-note b { color: var(--ink); }
@media (max-width: 560px) { .scope-list { grid-template-columns: 1fr; } .offer-doc-head, .offer-sect, .offer-totals { padding-left: 22px; padding-right: 22px; } }

/* ============ QUALIFICATION ============ */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.qual-col { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.qual-col.good { border-color: rgba(46,125,69,0.25); }
.qual-col h4 { font-family: var(--display); font-size: 16px; font-weight: 400; margin: 0 0 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.qual-col.good h4 { color: var(--good); }
.qual-col ul { list-style: none; padding: 0; margin: 0; }
.qual-col ul li { padding: 10px 0; font-size: 14.5px; color: var(--ink-dim); line-height: 1.5; display: flex; gap: 12px; align-items: center; }
.q-icon { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--good); color: #fff; }
.q-icon svg { width: 10px; height: 10px; }
@media (max-width: 700px) { .qual-grid { grid-template-columns: 1fr; } }

/* ============ GUARANTEE ============ */
.guarantee-box { background: linear-gradient(135deg, var(--accent-bg), transparent 55%), var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 48px; position: relative; overflow: hidden; }
.guarantee-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.guarantee-box h2 { font-family: var(--display); font-size: clamp(24px,3.2vw,32px); line-height: 1.2; margin: 12px 0 20px; font-weight: 400; max-width: 760px; }
.guarantee-box h2 em { font-style: normal; color: var(--accent); }
.guarantee-pts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.guarantee-pt { padding-left: 18px; border-left: 1px solid var(--line-strong); }
.guarantee-pt h4 { font-family: var(--display); font-size: 15px; margin: 0 0 8px; font-weight: 400; }
.guarantee-pt p { margin: 0; font-size: 13.5px; color: var(--ink-dim); line-height: 1.55; }
@media (max-width: 700px) { .guarantee-box { padding: 30px 22px; } .guarantee-pts { grid-template-columns: 1fr; gap: 16px; } }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 700; color: var(--ink); }
.faq-q:hover { color: var(--accent); }
.faq-ic { width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; position: relative; flex-shrink: 0; transition: all .25s; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--ink); transition: all .25s; }
.faq-ic::before { width: 11px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-ic::after { width: 1.5px; height: 11px; transform: translate(-50%,-50%); }
.faq-item.open .faq-ic { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-ic::before, .faq-item.open .faq-ic::after { background: #fff; }
.faq-item.open .faq-ic::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; color: var(--ink-dim); line-height: 1.6; max-width: 780px; }

/* ============ FINAL CTA ============ */
.final-cta { background: linear-gradient(135deg, var(--accent-bg), transparent 60%), var(--bg-alt); padding: 80px 0; position: relative; }
.final-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.final-grid h2 { font-family: var(--display); font-size: clamp(26px,3.6vw,40px); line-height: 1.12; margin: 0 0 20px; font-weight: 400; }
.final-grid h2 em { font-style: normal; color: var(--accent); }
.final-grid p { font-size: 16px; color: var(--ink-dim); line-height: 1.6; margin: 0 0 26px; max-width: 540px; }
.final-grid p b { color: var(--ink); }
.slot-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow-md); }
.slot-card .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faded); margin-bottom: 8px; }
.slot-card .n { font-family: var(--display); font-size: 50px; color: var(--accent); line-height: 1; }
.slot-card .sub { font-size: 13.5px; color: var(--ink-dim); margin-top: 8px; line-height: 1.5; }
.slot-bar { height: 6px; background: var(--bg-soft); border-radius: 3px; margin-top: 18px; overflow: hidden; }
.slot-bar-fill { width: 0%; height: 100%; background: var(--accent); transition: width 1.2s ease; }
.slot-bar-lbl { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; color: var(--ink-faded); margin-top: 7px; text-transform: uppercase; }
.contacts-row { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 12px; flex-wrap: wrap; }
.contact-chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; font-weight: 600; transition: all .2s; }
.contact-chip:hover { border-color: var(--accent); color: var(--accent); }
.contact-chip svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============ FOOTER ============ */
.footer { padding: 28px 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer .copy { font-size: 12.5px; color: var(--ink-faded); }
.footer-online { font-size: 12.5px; color: var(--ink-dim); display: flex; align-items: center; gap: 8px; }
.footer-online::before { content: ''; width: 7px; height: 7px; background: #4CAF50; border-radius: 50%; display: inline-block; }
.footer-legal { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; }
.footer-legal .req { font-family: var(--mono); font-size: 10.5px; line-height: 1.7; color: var(--ink-faded); }
.footer-legal .req b { color: var(--ink-dim); font-weight: 500; }
.footer-legal .links { display: flex; gap: 18px; }
.footer-legal .links a { font-size: 12px; color: var(--ink-dim); text-decoration: underline; }
.footer-legal .links a:hover { color: var(--accent); }
@media (max-width: 600px) { .footer-legal { flex-direction: column; align-items: flex-start; gap: 14px; } }

/* ============ MODAL / LEAD FORM ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,15,10,0.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; max-width: 460px; width: 100%; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; background: var(--bg-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 10; cursor: pointer; transition: all .2s; }
.modal-close:hover { background: var(--accent); }
.modal-close::before, .modal-close::after { content: ''; position: absolute; width: 14px; height: 2px; background: var(--ink); }
.modal-close:hover::before, .modal-close:hover::after { background: #fff; }
.modal-close::before { transform: rotate(45deg); }
.modal-close::after { transform: rotate(-45deg); }

.lead-head { padding: 32px 32px 0; text-align: center; }
.lead-head .badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding: 6px 14px; border: 1px solid rgba(217,72,31,0.25); border-radius: 100px; margin-bottom: 18px; }
.lead-head .badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.lead-head h3 { font-family: var(--display); font-size: 22px; line-height: 1.2; margin: 0 0 10px; }
.lead-head p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; margin: 0; }
.lead-form { padding: 24px 32px 30px; }
.lead-field { margin-bottom: 12px; }
.lead-field input { width: 100%; padding: 15px 16px; background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: 10px; font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink); transition: all .2s; }
.lead-field input::placeholder { color: var(--ink-faded); }
.lead-field input:focus { outline: none; border-color: var(--accent); background: var(--bg-alt); }
.lead-field input.err { border-color: #E5484D; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.lead-submit { width: 100%; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 17px; border-radius: 10px; background: var(--accent); color: #fff !important; font-family: var(--display); font-size: 14px; cursor: pointer; transition: all .2s; }
.lead-submit:hover { background: var(--accent-2); }
.lead-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.lead-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.lead-consent { display: flex; align-items: flex-start; gap: 9px; margin: 14px 0 4px; cursor: pointer; }
.lead-consent input { margin: 3px 0 0; width: 15px; height: 15px; accent-color: var(--accent); }
.lead-consent span { font-size: 11.5px; line-height: 1.5; color: var(--ink-faded); }
.lead-consent a { color: var(--ink-dim); text-decoration: underline; }
.lead-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 11.5px; color: var(--ink-faded); }
.lead-trust svg { width: 13px; height: 13px; color: var(--good); }
.lead-state { display: none; padding: 44px 32px 40px; text-align: center; }
.lead-state.show { display: block; }
.lead-state .ic { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lead-state.ok .ic { background: var(--good-bg); }
.lead-state.ok .ic svg { width: 28px; height: 28px; color: var(--good); }
.lead-state.fail .ic { background: rgba(229,72,77,0.1); }
.lead-state.fail .ic svg { width: 28px; height: 28px; color: #E5484D; }
.lead-state h3 { font-family: var(--display); font-size: 20px; margin: 0 0 10px; }
.lead-state p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.6; margin: 0 0 20px; }
.lead-state .alt { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink) !important; font-weight: 600; font-size: 13px; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
.sticky-cta a, .sticky-cta button { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border-radius: 10px; font-weight: 700; font-size: 13.5px; }
.sticky-cta .s-wa { background: #25D366; color: #fff !important; }
.sticky-cta .s-max { background: linear-gradient(135deg, #4A90E2, #9B59D6); color: #fff !important; }
.sticky-cta .s-lead { background: var(--accent); color: #fff !important; }
.sticky-cta svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .sticky-cta { display: grid; } body { padding-bottom: 70px; } }

/* ============ DISCLAIMERS (cost model / cases) ============ */
.cost-disclaimer { margin: 18px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--ink-faded); max-width: 720px; }
.cases-disclaimer { font-size: 13.5px !important; color: var(--ink-faded) !important; margin: -8px 0 32px !important; }
.tl-note { margin: 28px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-faded); max-width: 640px; }

/* ============ CASE CARDS v2 (equal height + facts + video) ============ */
.case-card { display: flex; flex-direction: column; }
.case-bullets { flex-grow: 0; }
.case-actions { margin-top: auto; padding-top: 4px; }
.case-video-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 18px; border-radius: 10px;
  background: transparent; border: 1.5px solid rgba(217,72,31,0.35);
  color: var(--accent) !important; font-weight: 700; font-size: 13.5px;
  transition: all .2s;
}
.case-video-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.case-video-btn:hover { background: var(--accent-bg); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(217,72,31,0.16); }
.case-video-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.case-video-note { margin: 10px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--ink-faded); text-align: center; }

/* ============ VK FRESH CASES BLOCK ============ */
.vk-fresh {
  margin-top: 28px; padding: 34px 38px; border-radius: 16px;
  background: linear-gradient(120deg, var(--accent-bg), transparent 60%), var(--bg-alt);
  border: 1px solid rgba(217,72,31,0.2);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.vk-fresh-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.vk-fresh-text h3 { font-family: var(--display); font-size: clamp(18px,2.2vw,22px); font-weight: 400; margin: 0 0 10px; line-height: 1.3; max-width: 560px; }
.vk-fresh-text p { margin: 0 0 6px; font-size: 14.5px; line-height: 1.55; color: var(--ink-dim); max-width: 560px; }
.vk-fresh-sub { font-size: 13px !important; color: var(--ink-faded) !important; }
.vk-fresh-action { flex-shrink: 0; }
.vk-fresh-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 16px 26px; border-radius: 10px; background: var(--accent);
  color: #fff !important; font-weight: 800; font-size: 14.5px;
  transition: all .2s; box-shadow: 0 10px 26px var(--accent-bg-strong);
}
.vk-fresh-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.vk-fresh-btn:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(217,72,31,0.28); }
.vk-fresh-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 760px) {
  .vk-fresh { flex-direction: column; align-items: stretch; text-align: center; padding: 28px 24px; gap: 20px; }
  .vk-fresh-text h3, .vk-fresh-text p { max-width: none; }
  .vk-fresh-btn { width: 100%; justify-content: center; }
}

/* ============ LEAD FORM ERROR STATE ============ */
.lead-error { display: none; margin: 12px 0 0; padding: 12px 14px; border-radius: 8px; background: rgba(229,72,77,0.08); border: 1px solid rgba(229,72,77,0.25); color: #C0392B; font-size: 12.5px; line-height: 1.5; text-align: left; }
.lead-error.show { display: block; }
