/* ==========================================================================
   Lara Craft — v4 — "Lara herself sells"
   Тёплая ночная палитра, Telegram-акценты, рукописные интонации.
   ========================================================================== */

:root {
  /* фон — глубокая ночь, чуть тёплая */
  --c-bg-0: #07090F;
  --c-bg-1: #0B0F1A;
  --c-bg-2: #0F1525;
  --c-bg-3: #131C30;

  /* основной акцент — Telegram-cyan, чуть мягче */
  --c-tg: #29B6F6;
  --c-tg-soft: #7CD4F7;
  --c-tg-glow: rgba(41, 182, 246, 0.32);

  /* тёплый персональный — лунно-золотой */
  --c-warm: #F0C674;
  --c-warm-soft: #FBE3A6;
  --c-warm-deep: #B58849;

  /* мятно-зелёный — «жива», уведомления */
  --c-mint: #6EE7C9;

  --c-mist: #ECF1F7;
  --c-mute: #8C97A8;
  --c-stone: #5C6679;

  --f-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sans: "Manrope", "Inter", system-ui, sans-serif;
  --f-hand: "Caveat", "Kalam", cursive;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--c-bg-0);
  color: var(--c-mist);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(ellipse at 12% 6%, rgba(41, 182, 246, 0.10), transparent 42%),
    radial-gradient(ellipse at 92% 18%, rgba(240, 198, 116, 0.08), transparent 38%),
    radial-gradient(ellipse at 50% 100%, rgba(110, 231, 201, 0.05), transparent 40%),
    linear-gradient(180deg, #07090F 0%, #0B0F1A 50%, #07090F 100%);
  min-height: 100vh;
  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; }

/* ===== utility ===== */
.section {
  position: relative;
  padding: 120px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.section.narrow { max-width: 920px; }
.section.tight { padding: 80px 32px; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-tg-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-tg));
}
.eyebrow.warm { color: var(--c-warm-soft); }
.eyebrow.warm::before { background: linear-gradient(90deg, transparent, var(--c-warm)); }

.h-serif {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.04;
}
.hand {
  font-family: var(--f-hand);
  font-weight: 500;
  color: var(--c-warm-soft);
  font-size: 1.35em;
  line-height: 1;
  letter-spacing: 0.005em;
}
.hand-tg { color: var(--c-tg-soft); }

.h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin-bottom: 28px;
}
.h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #FBE3A6 0%, #F0C674 50%, #B58849 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2 .tg {
  background: linear-gradient(135deg, #7CD4F7 0%, #29B6F6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #29B6F6 0%, #7CD4F7 100%);
  color: #06141C;
  box-shadow:
    0 0 28px rgba(41, 182, 246, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(41, 182, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.06);
}
.btn-warm {
  background: linear-gradient(135deg, #F0C674 0%, #FBE3A6 50%, #B58849 100%);
  color: #1A1208;
  box-shadow:
    0 0 24px rgba(240, 198, 116, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-warm:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(240, 198, 116, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.05);
}
.btn-ghost {
  border: 1px solid rgba(143, 246, 255, 0.28);
  color: var(--c-tg-soft);
  background: rgba(41, 182, 246, 0.04);
}
.btn-ghost:hover {
  border-color: rgba(143, 246, 255, 0.5);
  background: rgba(41, 182, 246, 0.08);
}
.btn-link {
  padding: 6px 0;
  color: var(--c-tg-soft);
  border-radius: 0;
}
.btn-link:hover { color: var(--c-mist); }

/* ===== nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.78) 0%, rgba(7, 9, 15, 0.36) 100%);
  border-bottom: 1px solid rgba(41, 182, 246, 0.1);
  transition: padding 0.25s ease;
}
.nav.scrolled { padding: 18px 36px; }
/* Avatar wrappers must be block-level so px width/height applies + img doesn't break layout */
.tg-bar .av,
.day-tg-bar .av-tg,
.day-tg-msg .ava-mini,
.sticky-bar .av,
.quote-card .who .av,
.hero-signature .avatar {
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
  vertical-align: middle;
}
/* Avatar IMG fits inside circle wrapper */
.tg-bar .av img.inner,
.day-tg-bar .av-tg img.inner,
.day-tg-msg .ava-mini img.inner,
.sticky-bar .av img.inner,
.quote-card .who .av img.inner,
.hero-signature .avatar img.inner {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  font-size: 0;
  max-width: 100%;
}
/* Body anti-overflow on mobile */
html, body { overflow-x: hidden; max-width: 100vw; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-serif);
  font-size: 22px;
  letter-spacing: 0.005em;
}
.nav-logo .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
}
.nav-logo .name { font-weight: 500; }
.nav-logo .name .craft { color: var(--c-warm-soft); font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.nav-links a {
  color: var(--c-mist);
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--c-tg-soft); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 32px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.28);
  font-size: 12px;
  color: var(--c-tg-soft);
}
.hero-tag .live {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-mint);
  box-shadow: 0 0 8px var(--c-mint);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-tag .tg-icon { color: var(--c-tg); display: inline-flex; }

.hero-channels {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}
.hero-channels-lbl {
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  margin-right: 4px;
}
.hero-channels .ch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(143, 246, 255, 0.22);
  background: rgba(41, 182, 246, 0.05);
  color: var(--c-tg-soft);
  font-weight: 500;
}
.hero-channels .ch.ch-max {
  border-color: rgba(240, 198, 116, 0.28);
  background: rgba(240, 198, 116, 0.06);
  color: var(--c-warm-soft);
}
.hero-channels .ch.ch-vk {
  border-color: rgba(110, 231, 201, 0.28);
  background: rgba(110, 231, 201, 0.06);
  color: var(--c-mint);
}
.hero-channels .ch-more {
  color: var(--c-mute);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-left: 4px;
}

.hero h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.018em;
}
.hero h1 .light { font-weight: 300; opacity: 0.96; }
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #FBE3A6 0%, #F0C674 50%, #B58849 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .tg-word {
  background: linear-gradient(135deg, #7CD4F7 0%, #29B6F6 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-lede {
  font-size: 18px;
  color: var(--c-mist);
  opacity: 0.82;
  max-width: 540px;
  line-height: 1.6;
}
.hero-lede strong { color: var(--c-warm-soft); font-weight: 600; }

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-undercta {
  font-size: 13px;
  color: var(--c-mute);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-undercta .dot { color: var(--c-warm); opacity: 0.7; }

.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(41, 182, 246, 0.14);
}
.hero-signature .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29B6F6 0%, #F0C674 100%);
  padding: 2px;
}
.hero-signature .avatar .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--c-bg-1);
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-size: 18px;
  color: var(--c-warm-soft);
}
.hero-signature .who {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-signature .who .name { font-size: 14px; color: var(--c-mist); }
.hero-signature .who .role { font-size: 11px; color: var(--c-mute); letter-spacing: 0.16em; text-transform: uppercase; }

/* ===== hero — phone with telegram chat ===== */
.hero-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-phone {
  width: 360px;
  max-width: 100%;
  aspect-ratio: 360 / 740;
  border-radius: 48px;
  background: linear-gradient(180deg, #1a2030 0%, #0d1220 100%);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px rgba(41, 182, 246, 0.18),
    0 40px 90px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
.hero-phone .screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, #17212B 0%, #0E1621 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-phone .notch {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #07090F;
  border-radius: 999px;
  z-index: 4;
}
.tg-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 38px 16px 12px;
  background: #17212B;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tg-bar .back { color: #6BB5E8; font-size: 22px; line-height: 1; }
.tg-bar .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29B6F6 0%, #F0C674 100%);
  padding: 1.5px;
}
.tg-bar .av .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #1c2837;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  color: var(--c-warm-soft);
  font-size: 15px;
}
.tg-bar .meta { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.tg-bar .meta .n { font-size: 14px; font-weight: 600; color: #F4F6F9; }
.tg-bar .meta .s { font-size: 11px; color: var(--c-mint); display: flex; align-items: center; gap: 4px; }
.tg-bar .meta .s .ldot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-mint); box-shadow: 0 0 6px var(--c-mint); }
.tg-bar .ic { color: #6BB5E8; opacity: 0.7; }

.tg-chat {
  flex: 1;
  padding: 14px 12px 56px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(41, 182, 246, 0.05), transparent 60%),
    #0E1621;
}
.tg-time-stamp {
  align-self: center;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 4px 0;
  letter-spacing: 0.04em;
}
.tg-msg {
  max-width: 78%;
  padding: 8px 11px 18px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}
.tg-msg.from {
  align-self: flex-start;
  background: #182533;
  color: #F4F6F9;
  border-bottom-left-radius: 4px;
}
.tg-msg.to {
  align-self: flex-end;
  background: linear-gradient(135deg, #2B5278 0%, #2D6595 100%);
  color: #F4F6F9;
  border-bottom-right-radius: 4px;
}
.tg-msg .name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-warm-soft);
  margin-bottom: 2px;
}
.tg-msg .time {
  position: absolute;
  bottom: 4px; right: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}
.tg-msg .check {
  display: inline-block;
  margin-left: 2px;
  color: #6BB5E8;
}
.tg-msg.voice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  min-width: 180px;
}
.tg-msg.voice .play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff;
  font-size: 12px;
}
.tg-msg.voice .wave {
  display: flex;
  align-items: center;
  gap: 1.5px;
  flex: 1;
  height: 18px;
}
.tg-msg.voice .wave span {
  width: 2px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
}
.tg-msg.voice .dur { font-size: 10px; color: rgba(255,255,255,0.7); margin-left: 2px; }

.tg-typing {
  align-self: flex-start;
  background: #182533;
  border-radius: 12px;
  padding: 9px 12px;
  display: flex; gap: 4px;
  margin-top: 2px;
  border-bottom-left-radius: 4px;
}
.tg-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: typing 1.4s infinite ease-in-out;
}
.tg-typing span:nth-child(2) { animation-delay: 0.18s; }
.tg-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.tg-input {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #17212B;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tg-input .field {
  flex: 1;
  background: #242F3D;
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.tg-input .ic { color: #6BB5E8; }

/* floating decorations around phone */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-orb.tg {
  width: 280px; height: 280px;
  background: rgba(41, 182, 246, 0.18);
  top: 10%; right: -10%;
}
.hero-glow-orb.warm {
  width: 220px; height: 220px;
  background: rgba(240, 198, 116, 0.16);
  bottom: 5%; left: -10%;
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15, 21, 37, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(143, 246, 255, 0.22);
  font-size: 12px;
  color: var(--c-mist);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.hero-float .ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(41, 182, 246, 0.16);
  color: var(--c-tg-soft);
}
.hero-float.warm .ic { background: rgba(240, 198, 116, 0.16); color: var(--c-warm-soft); }
.hero-float.mint .ic { background: rgba(110, 231, 201, 0.16); color: var(--c-mint); }
.hero-float .lbl { font-size: 10px; color: var(--c-mute); letter-spacing: 0.12em; text-transform: uppercase; }
.hero-float .val { font-size: 12px; color: var(--c-mist); }
.hero-float.f1 { top: 8%; left: -12%; animation: float 6s ease-in-out infinite; }
.hero-float.f2 { bottom: 12%; right: -8%; animation: float 7s ease-in-out infinite reverse; }
.hero-float.f3 { top: 42%; right: -14%; animation: float 5.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== chapter divider ===== */
.divider-soft {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(41, 182, 246, 0.32) 50%,
    rgba(240, 198, 116, 0.18) 70%,
    transparent 100%);
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
}
.divider-soft::before {
  content: "✦";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-bg-0);
  padding: 0 14px;
  color: var(--c-warm);
  font-size: 11px;
}

/* ===== problem section ===== */
.problem .h2 { max-width: 880px; }
.problem-text-block {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-mist);
  opacity: 0.84;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem-text-block p { }
.problem-text-block .stress {
  font-family: var(--f-hand);
  font-size: 32px;
  color: var(--c-warm-soft);
  line-height: 1.05;
  margin: 12px 0;
  letter-spacing: 0.005em;
}
.problem-text-block .imagine {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--c-tg-soft);
  margin-top: 18px;
  line-height: 1.2;
}

/* loop — circular memory loss visual */
.loop-vis {
  margin: 56px 0 0;
  padding: 36px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(41, 182, 246, 0.06), transparent 60%),
    rgba(11, 15, 26, 0.6);
  border: 1px solid rgba(41, 182, 246, 0.14);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.loop-vis .step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 14px 8px;
}
.loop-vis .step .circ {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  display: grid; place-items: center;
  margin: 0 auto 10px;
  color: var(--c-mute);
  background: rgba(7,9,15,0.6);
  font-size: 22px;
}
.loop-vis .step.bad .circ { border-color: rgba(240, 198, 116, 0.45); color: var(--c-warm-soft); }
.loop-vis .step .lab { font-size: 12px; color: var(--c-mist); opacity: 0.75; }
.loop-vis .step .sub { font-size: 10px; color: var(--c-mute); margin-top: 3px; font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.loop-vis .arrow {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  position: relative;
}
.loop-vis .arrow::after {
  content: "→";
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.28);
  font-size: 14px;
}

/* ===== meet section ===== */
.meet {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.meet-portrait-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(41, 182, 246, 0.22);
  box-shadow:
    0 0 60px rgba(41, 182, 246, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.55);
}
.meet-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% center;
  filter: contrast(1.05) saturate(1.05);
}
.meet-portrait-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(7,9,15,0.6) 100%),
    radial-gradient(circle at 50% 110%, rgba(41, 182, 246, 0.16), transparent 50%);
}
.meet-portrait-wrap .corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--c-warm);
  opacity: 0.55;
}
.meet-portrait-wrap .corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.meet-portrait-wrap .corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.meet-portrait-wrap .corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.meet-portrait-wrap .corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.meet-portrait-wrap .signature {
  position: absolute;
  bottom: 20px; left: 22px;
  font-family: var(--f-hand);
  font-size: 28px;
  color: var(--c-warm-soft);
  letter-spacing: 0.005em;
  z-index: 2;
}

.meet-text { display: flex; flex-direction: column; gap: 22px; }
.meet-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-mist);
  opacity: 0.84;
}
.meet-text p strong { color: var(--c-warm-soft); font-weight: 600; }
.meet-text .punch {
  font-family: var(--f-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--c-tg-soft);
  line-height: 1.3;
  border-left: 2px solid var(--c-tg);
  padding-left: 18px;
}
.meet-text .self {
  font-family: var(--f-hand);
  font-size: 24px;
  color: var(--c-warm-soft);
  margin-top: 6px;
}

/* ===== day timeline ===== */
.day {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.day::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(240, 198, 116, 0.4) 10%,
    rgba(41, 182, 246, 0.4) 50%,
    rgba(110, 231, 201, 0.4) 90%,
    transparent);
}
.day-card {
  position: relative;
  z-index: 1;
  padding: 30px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.78), rgba(11, 15, 26, 0.86));
  border: 1px solid rgba(41, 182, 246, 0.16);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.day-card .when {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-warm-soft);
}
.day-card.evening .when { color: var(--c-tg-soft); }
.day-card.night .when { color: var(--c-mint); }
.day-card .when .glyph { font-size: 18px; }
.day-card .msg {
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.08), rgba(11, 15, 26, 0.4));
  border: 1px solid rgba(41, 182, 246, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--c-mist);
  line-height: 1.55;
  position: relative;
}
.day-card .msg.lara {
  background: linear-gradient(135deg, rgba(240, 198, 116, 0.08), rgba(11, 15, 26, 0.5));
  border-color: rgba(240, 198, 116, 0.24);
}
.day-card .msg .who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.day-card .msg.lara .who { color: var(--c-warm-soft); }
.day-card .msg.user .who { color: var(--c-tg-soft); }
.day-card .narration {
  font-size: 13px;
  color: var(--c-mist);
  opacity: 0.7;
  line-height: 1.55;
  font-style: italic;
}

/* ===== day as Telegram dialog ===== */
.day-tg-wrap {
  max-width: 640px;
  margin: 56px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0E1621;
  border: 1px solid rgba(41, 182, 246, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(41, 182, 246, 0.08);
  display: flex;
  flex-direction: column;
}
.day-tg-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #17212B;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.day-tg-bar .back { color: #6BB5E8; font-size: 22px; line-height: 1; opacity: 0.6; }
.day-tg-bar .av-tg {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0C674, #B58849);
  padding: 1.5px;
}
.day-tg-bar .av-tg .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #14131A;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-warm-soft);
  font-size: 17px;
}
.day-tg-bar .meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.day-tg-bar .meta .n { font-size: 15px; font-weight: 600; color: #F4F6F9; }
.day-tg-bar .meta .s { font-size: 12px; color: var(--c-mint); display: flex; align-items: center; gap: 5px; }
.day-tg-bar .meta .s .ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-mint); box-shadow: 0 0 6px var(--c-mint); }
.day-tg-bar .ic { color: #6BB5E8; opacity: 0.6; font-size: 22px; }

.day-tg-feed {
  background:
    radial-gradient(circle at 25% 20%, rgba(240, 198, 116, 0.04), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(41, 182, 246, 0.05), transparent 40%),
    #0E1621;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-tg-divider {
  text-align: center;
  margin: 14px 0 6px;
  position: relative;
}
.day-tg-divider span {
  font-size: 10.5px;
  font-family: var(--f-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  background: rgba(0,0,0,0.25);
  padding: 5px 14px;
  border-radius: 999px;
}

.day-tg-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  max-width: 85%;
}
.day-tg-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.day-tg-msg .ava-mini {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0C674, #B58849);
  padding: 1px;
  flex-shrink: 0;
}
.day-tg-msg .ava-mini .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #14131A;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-warm-soft);
  font-size: 13px;
}
.day-tg-msg .bubble {
  padding: 9px 12px 20px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #ECEFF3;
  position: relative;
  word-wrap: break-word;
}
.day-tg-msg .bubble b { color: #FBE3A6; font-weight: 600; }
.day-tg-msg.lara .bubble {
  background: #182533;
  border-bottom-left-radius: 4px;
}
.day-tg-msg.user .bubble {
  background: linear-gradient(135deg, #2B5278 0%, #2D6595 100%);
  border-bottom-right-radius: 4px;
}
.day-tg-msg .bubble .text { padding-right: 8px; }
.day-tg-msg .bubble .time {
  position: absolute;
  bottom: 4px; right: 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 3px;
}
.day-tg-msg .bubble .time .check { color: #6BB5E8; font-size: 11px; }

.day-tg-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #17212B;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.day-tg-input .ic { color: #6BB5E8; opacity: 0.6; font-size: 17px; }
.day-tg-input .field {
  flex: 1;
  background: #242F3D;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== fomo / scenarios ===== */
.fomo-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fomo-col {
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.78), rgba(11, 15, 26, 0.86));
  border: 1px solid rgba(255,255,255,0.06);
}
.fomo-col.bad { border-color: rgba(255, 117, 117, 0.18); }
.fomo-col.good { border-color: rgba(110, 231, 201, 0.24); background: linear-gradient(160deg, rgba(15, 30, 28, 0.72), rgba(11, 15, 26, 0.86)); }
.fomo-col .head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fomo-col.bad .head { color: #FF8E8E; }
.fomo-col.good .head { color: var(--c-mint); }
.fomo-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  line-height: 1.5;
}
.fomo-line:last-child { border-bottom: none; }
.fomo-line .marker {
  flex-shrink: 0;
  margin-top: 4px;
  font-family: var(--f-mono);
  color: var(--c-mute);
  font-size: 10px;
  width: 14px;
}
.fomo-col.bad .fomo-line .marker { color: rgba(255, 117, 117, 0.6); }
.fomo-col.good .fomo-line .marker { color: var(--c-mint); }
.fomo-line .when {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--c-stone);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 8px;
}

.fomo-finale {
  margin-top: 36px;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--c-mist);
  line-height: 1.35;
}
.fomo-finale .accent { color: var(--c-warm-soft); }
.fomo-finale .accent-tg { color: var(--c-tg-soft); }

/* ===== capabilities ===== */
.cap-head {
  margin-bottom: 56px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.cap-head .h2 { margin-bottom: 16px; }
.cap-head p {
  font-size: 17px;
  color: var(--c-mist);
  opacity: 0.7;
  line-height: 1.55;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cap-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.78), rgba(11, 15, 26, 0.86));
  border: 1px solid rgba(41, 182, 246, 0.16);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(41, 182, 246, 0.10), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.cap-card:hover {
  transform: translateY(-3px);
  border-color: rgba(41, 182, 246, 0.4);
  box-shadow: 0 0 36px rgba(41, 182, 246, 0.08);
}
.cap-card:hover::before { opacity: 1; }
.cap-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.28);
  color: var(--c-tg-soft);
}
.cap-card.warm .icon {
  background: rgba(240, 198, 116, 0.06);
  border-color: rgba(240, 198, 116, 0.32);
  color: var(--c-warm-soft);
}
.cap-card.mint .icon {
  background: rgba(110, 231, 201, 0.06);
  border-color: rgba(110, 231, 201, 0.3);
  color: var(--c-mint);
}
.cap-card h4 {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}
.cap-card p {
  font-size: 14px;
  color: var(--c-mist);
  opacity: 0.7;
  line-height: 1.55;
  flex: 1;
}
.cap-card .glyph {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--c-warm);
  opacity: 0.35;
}

/* ===== quotes / social ===== */
.quote-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.62), rgba(11, 15, 26, 0.74));
  border: 1px solid rgba(41, 182, 246, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--f-serif);
  font-size: 56px;
  color: rgba(240, 198, 116, 0.32);
  line-height: 1;
}
.quote-card p {
  font-family: var(--f-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
  color: var(--c-mist);
  opacity: 0.92;
  position: relative;
  z-index: 1;
}
.quote-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.quote-card .who .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29B6F6, #F0C674);
  padding: 1.5px;
}
.quote-card .who .av .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--c-bg-1);
  display: grid; place-items: center;
  font-family: var(--f-serif);
  color: var(--c-warm-soft);
  font-size: 13px;
}
.quote-card .who .name { font-size: 13px; color: var(--c-mist); }
.quote-card .who .role { font-size: 11px; color: var(--c-mute); letter-spacing: 0.04em; }

/* ===== pricing ===== */
.pricing {
  position: relative;
}
.pricing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.78), rgba(11, 15, 26, 0.86));
  border: 1px solid rgba(41, 182, 246, 0.18);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.starter:hover { border-color: rgba(110, 231, 201, 0.4); box-shadow: 0 0 32px rgba(110, 231, 201, 0.1); }
.price-card.pro {
  background:
    linear-gradient(160deg, rgba(41, 182, 246, 0.08), rgba(11, 15, 26, 0.86));
  border-color: rgba(41, 182, 246, 0.4);
  box-shadow: 0 0 36px rgba(41, 182, 246, 0.08), 0 0 80px rgba(41, 182, 246, 0.04);
  transform: translateY(-8px);
}
.price-card.pro:hover {
  border-color: rgba(41, 182, 246, 0.6);
  box-shadow: 0 0 48px rgba(41, 182, 246, 0.18), 0 0 120px rgba(41, 182, 246, 0.06);
  transform: translateY(-12px);
}
.price-card.business {
  background:
    linear-gradient(160deg, rgba(240, 198, 116, 0.06), rgba(11, 15, 26, 0.86));
  border-color: rgba(240, 198, 116, 0.36);
}
.price-card.business:hover {
  border-color: rgba(240, 198, 116, 0.55);
  box-shadow: 0 0 36px rgba(240, 198, 116, 0.12);
}

.price-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  border-radius: 999px;
  background: var(--c-bg-0);
}
.price-card.pro .badge {
  color: var(--c-tg-soft);
  border: 1px solid rgba(41, 182, 246, 0.5);
  box-shadow: 0 0 16px rgba(41, 182, 246, 0.3);
}
.price-card.business .badge {
  color: var(--c-warm-soft);
  border: 1px solid rgba(240, 198, 116, 0.5);
  box-shadow: 0 0 16px rgba(240, 198, 116, 0.3);
}

.price-card .top { display: flex; flex-direction: column; gap: 8px; }
.price-card .plan-name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.price-card.starter .plan-name { color: var(--c-mint); }
.price-card.pro .plan-name { color: var(--c-tg-soft); }
.price-card.business .plan-name { color: var(--c-warm-soft); }
.price-card .plan-name .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.price-card.starter .plan-name .dot { background: var(--c-mint); box-shadow: 0 0 6px var(--c-mint); }
.price-card.pro .plan-name .dot { background: var(--c-tg); box-shadow: 0 0 6px var(--c-tg); }
.price-card.business .plan-name .dot { background: var(--c-warm); box-shadow: 0 0 6px var(--c-warm); }

.price-card .tagline {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--c-mist);
}
.price-card .price-row {
  display: flex; align-items: baseline; gap: 6px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-card .price {
  font-family: var(--f-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}
.price-card.pro .price {
  background: linear-gradient(135deg, #7CD4F7 0%, #29B6F6 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card.business .price {
  background: linear-gradient(135deg, #FBE3A6 0%, #F0C674 50%, #B58849 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card .price-currency {
  font-family: var(--f-serif);
  font-size: 24px;
  color: var(--c-mist);
  opacity: 0.6;
}
.price-card .price-once {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.price-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--c-mist);
  opacity: 0.86;
  line-height: 1.45;
}
.price-card ul li svg { flex-shrink: 0; margin-top: 2px; }
.price-card.starter ul li svg { color: var(--c-mint); }
.price-card.pro ul li svg { color: var(--c-tg); }
.price-card.business ul li svg { color: var(--c-warm); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .footnote {
  text-align: center;
  font-size: 12px;
  color: var(--c-mute);
  font-style: italic;
}

.pricing-foot {
  margin: 56px auto 0;
  max-width: 760px;
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(11, 15, 26, 0.5);
  border: 1px solid rgba(143, 246, 255, 0.18);
  text-align: center;
}
.pricing-foot .pf-head {
  font-size: 17px;
  color: var(--c-mist);
  margin-bottom: 14px;
}
.pricing-foot .pf-head strong { color: var(--c-tg-soft); font-weight: 600; }
.pricing-foot p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-mist);
  opacity: 0.78;
}
.pricing-foot p strong { color: var(--c-warm-soft); font-weight: 500; }

/* tooltip on hover */
.tip {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  position: relative;
  vertical-align: middle;
}
.tip-q {
  display: inline-grid;
  place-items: center;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(143, 246, 255, 0.14);
  color: var(--c-tg-soft);
  border: 1px solid rgba(143, 246, 255, 0.3);
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  font-family: var(--f-sans);
  line-height: 1;
}
.tip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #0B0F1A;
  border: 1px solid rgba(240, 198, 116, 0.32);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-mist);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--f-sans);
  font-style: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
  text-align: left;
}
.tip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(240, 198, 116, 0.32);
}
.tip:hover .tip-content,
.tip:focus-within .tip-content {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
@media (max-width: 720px) {
  .tip-content { width: 240px; left: auto; right: -10px; transform: none; }
  .tip-content::after { left: auto; right: 14px; transform: none; }
  .tip:hover .tip-content { transform: translateY(-2px); }
}

/* details toggle */
.details-toggle {
  width: 100%;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(143, 246, 255, 0.06);
  border: 1px dashed rgba(143, 246, 255, 0.28);
  color: var(--c-tg-soft);
  font-family: var(--f-sans);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all .18s ease;
}
.details-toggle:hover {
  background: rgba(143, 246, 255, 0.1);
  border-style: solid;
}
.details-toggle.warm {
  background: rgba(240, 198, 116, 0.06);
  border-color: rgba(240, 198, 116, 0.32);
  color: var(--c-warm-soft);
}
.details-toggle.warm:hover { background: rgba(240, 198, 116, 0.12); }
.details-toggle .chev { transition: transform .2s ease; font-size: 13px; }
.details-toggle .chev.open { transform: rotate(180deg); }

.details {
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(11, 15, 26, 0.5);
  border: 1px solid rgba(143, 246, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInDown .25s ease;
}
.details.warm { border-color: rgba(240, 198, 116, 0.22); }
.details .d-block h6 {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-tg-soft);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  text-transform: none;
}
.details.warm .d-block h6 { color: var(--c-warm-soft); }
.details .d-block p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-mist);
  opacity: 0.85;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* biz-explainer above price */
.biz-explainer {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240, 198, 116, 0.08), rgba(240, 198, 116, 0.02));
  border-left: 3px solid var(--c-warm-soft);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-mist);
}
.biz-explainer strong {
  color: var(--c-warm-soft);
  font-weight: 600;
}

/* business math callout */
.biz-math {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(240, 198, 116, 0.06);
  border: 1px solid rgba(240, 198, 116, 0.2);
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--c-warm-soft);
}
.biz-math .row { display: flex; justify-content: space-between; }
.biz-math .row .v { color: var(--c-mist); }

/* ===== install steps ===== */
.install-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.install-grid::before {
  content: "";
  position: absolute;
  top: 28px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 182, 246, 0.4) 12%, rgba(240, 198, 116, 0.4) 88%, transparent);
}
.install-step {
  position: relative;
  z-index: 1;
  padding: 24px 18px;
  border-radius: 18px;
  background: rgba(11, 15, 26, 0.74);
  border: 1px solid rgba(41, 182, 246, 0.18);
  backdrop-filter: blur(14px);
  text-align: center;
}
.install-step .num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-bg-0);
  border: 1px solid rgba(41, 182, 246, 0.5);
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-tg-soft);
  box-shadow: 0 0 14px rgba(41, 182, 246, 0.18);
}
.install-step h5 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.install-step p {
  font-size: 12.5px;
  color: var(--c-mist);
  opacity: 0.7;
  line-height: 1.5;
}

.install-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--c-mist);
  opacity: 0.78;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.install-foot strong { color: var(--c-warm-soft); font-weight: 600; }

/* ===== where lives ===== */
.where-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.where-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 21, 37, 0.78), rgba(11, 15, 26, 0.86));
  border: 1px solid rgba(41, 182, 246, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, border-color 0.3s;
}
.where-card:hover { transform: translateY(-3px); border-color: rgba(41, 182, 246, 0.4); }
.where-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.28);
  color: var(--c-tg-soft);
}
.where-card h5 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.where-card .pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 201, 0.32);
  color: var(--c-mint);
}
.where-card .pill.warm {
  border-color: rgba(240, 198, 116, 0.32);
  color: var(--c-warm-soft);
}
.where-card p {
  font-size: 13.5px;
  color: var(--c-mist);
  opacity: 0.7;
  line-height: 1.55;
}

/* ===== losing list ===== */
.losing-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 117, 117, 0.04) 50%, transparent 100%);
  position: relative;
}
.losing-lead {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--c-warm-soft);
  margin-top: 18px;
  letter-spacing: -0.005em;
}
.losing-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
}
.losing-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  color: var(--c-mist);
  opacity: 0.88;
  line-height: 1.5;
}
.losing-list li .stat {
  font-family: var(--f-serif);
  font-size: 26px;
  color: var(--c-warm-soft);
  font-weight: 500;
  line-height: 1.1;
  flex-shrink: 0;
  min-width: 80px;
}
.losing-list li strong { color: var(--c-mist); font-weight: 600; }
.losing-foot {
  margin-top: 36px;
  font-size: 16px;
  color: var(--c-mist);
  opacity: 0.78;
  line-height: 1.55;
  max-width: 720px;
}
.losing-foot .stress { color: var(--c-warm-soft); font-weight: 600; }

/* ===== faq ===== */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid rgba(41, 182, 246, 0.16);
  padding: 22px 0;
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-mist);
  padding: 0;
  transition: color 0.2s;
}
.faq-item button:hover { color: var(--c-tg-soft); }
.faq-item .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(41, 182, 246, 0.32);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--c-tg-soft);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .ic {
  transform: rotate(45deg);
  background: rgba(41, 182, 246, 0.1);
}
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
}
.faq-item.open .a {
  max-height: 800px;
  opacity: 1;
  margin-top: 14px;
}
.faq-item .a p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-mist);
  opacity: 0.78;
  max-width: 720px;
}

/* ===== compare table (in FAQ) ===== */
.compare-wrap {
  margin: 110px auto 0;
  max-width: 1100px;
  padding: 0 8px;
}
.compare-head {
  text-align: center;
  margin-bottom: 56px;
}
.compare-head .h3 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--c-pearl);
  margin-top: 12px;
}
.compare-head .h3 em {
  font-style: italic;
  color: var(--c-tg);
}
.compare-block {
  margin-top: 48px;
  background: rgba(13, 18, 28, 0.5);
  border: 1px solid rgba(41, 182, 246, 0.14);
  border-radius: 22px;
  padding: 32px 28px 28px;
}
.cb-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-pearl);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cb-title strong {
  font-weight: 600;
  color: var(--c-tg-soft);
}
.cb-sub {
  display: inline-block;
  margin-left: 4px;
  color: var(--c-mist);
  opacity: 0.7;
  font-weight: 400;
  font-size: 15px;
}
.ctable {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.ctable thead th {
  text-align: left;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-mist);
  opacity: 0.55;
  border-bottom: 1px solid rgba(41, 182, 246, 0.12);
}
.ctable thead th.lara-col {
  color: var(--c-tg);
  opacity: 1;
}
.ctable tbody tr + tr td {
  border-top: 1px solid rgba(41, 182, 246, 0.08);
}
.ctable td {
  padding: 16px;
  vertical-align: top;
  line-height: 1.5;
}
.ctable td.feat {
  width: 130px;
  color: var(--c-pearl);
  font-weight: 500;
}
.ctable td.them {
  color: var(--c-mist);
  opacity: 0.72;
}
.ctable td.me {
  color: var(--c-pearl);
  background: rgba(41, 182, 246, 0.05);
  border-radius: 6px;
}
.cb-foot {
  margin-top: 22px;
  padding: 14px 18px;
  border-left: 2px solid var(--c-warm);
  background: rgba(240, 198, 116, 0.05);
  font-size: 14px;
  color: var(--c-mist);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 720px) {
  .compare-block { padding: 22px 16px; }
  .ctable { font-size: 14px; }
  .ctable thead th:first-child,
  .ctable td.feat { display: none; }
  .ctable td { padding: 14px 12px; }
  .ctable td.them::before { content: 'Они: '; opacity: 0.6; }
  .ctable td.me::before { content: 'Я: '; color: var(--c-tg); font-weight: 600; }
}

/* ===== final cta ===== */
.final-cta {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
}
.final-cta .portal {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  pointer-events: none;
  opacity: 0.7;
}
.final-cta .content { position: relative; z-index: 1; }
.final-cta .h2 {
  max-width: 880px;
  margin: 0 auto 28px;
}
.final-cta p {
  max-width: 580px;
  margin: 0 auto 14px;
  color: var(--c-mist);
  opacity: 0.78;
  font-size: 17px;
  line-height: 1.6;
}
.final-cta .conclusion {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--c-warm-soft);
  margin: 30px auto 36px;
  max-width: 640px;
  line-height: 1.35;
}
.final-cta .three-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.final-cta .three-cta .btn { font-size: 13px; padding: 14px 22px; }

.final-cta .small {
  font-size: 12px;
  color: var(--c-mute);
  font-style: italic;
  margin-top: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== footer ===== */
.footer {
  padding: 56px 36px 40px;
  border-top: 1px solid rgba(41, 182, 246, 0.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer .lara-says {
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--c-warm-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.footer .links a:hover { color: var(--c-tg-soft); }
.footer .copy {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-stone);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid rgba(41, 182, 246, 0.06);
}

/* ===== sticky bottom bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(160%);
  width: min(640px, calc(100vw - 32px));
  z-index: 70;
  background: linear-gradient(135deg, rgba(15, 21, 37, 0.95), rgba(11, 15, 26, 0.98));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(41, 182, 246, 0.36);
  border-radius: 18px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 36px rgba(41, 182, 246, 0.16);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-bar.show { transform: translateX(-50%) translateY(0); }
.sticky-bar .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29B6F6, #F0C674);
  padding: 1.5px;
  flex-shrink: 0;
}
.sticky-bar .av .inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--c-bg-1);
  display: grid; place-items: center;
  font-family: var(--f-serif);
  color: var(--c-warm-soft);
  font-size: 14px;
}
.sticky-bar .text { flex: 1; font-size: 13px; line-height: 1.4; }
.sticky-bar .text .strong { color: var(--c-tg-soft); font-weight: 600; }
.sticky-bar .text .price { color: var(--c-warm-soft); }
.sticky-bar .btn { padding: 10px 18px; font-size: 12px; }

/* ===== modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 200;
  animation: fade-in 0.25s ease;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@keyframes fade-in { from { opacity: 0; } }
.modal {
  width: min(520px, 100%);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 21, 37, 0.96), rgba(7, 9, 15, 0.98));
  border: 1px solid rgba(41, 182, 246, 0.36);
  box-shadow: 0 0 80px rgba(41, 182, 246, 0.14), 0 0 200px rgba(240, 198, 116, 0.08);
  padding: 28px 28px 24px;
  position: relative;
  animation: rise 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin: auto 0;
  max-width: 100%;
}
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
.modal h3 {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.modal .sub {
  text-align: center;
  color: var(--c-mist);
  opacity: 0.7;
  margin-bottom: 26px;
  font-size: 14px;
}
.modal .field { margin-bottom: 14px; }
.modal label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 6px;
}
.modal input {
  width: 100%;
  background: rgba(7, 9, 15, 0.6);
  border: 1px solid rgba(41, 182, 246, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--c-mist);
  font-family: var(--f-sans);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal input:focus {
  outline: none;
  border-color: rgba(41, 182, 246, 0.6);
  box-shadow: 0 0 24px rgba(41, 182, 246, 0.16);
}
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-mute);
  transition: color 0.2s, background 0.2s;
  background: none;
}
.modal-close:hover { color: var(--c-mist); background: rgba(41, 182, 246, 0.08); }
.modal .plan-pill {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.modal .success { text-align: center; padding: 6px 0; }
.modal .success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #29B6F6, #7CD4F7);
  margin: 0 auto 18px;
  display: grid; place-items: center;
  color: var(--c-bg-0);
}
.modal .success .hand-note {
  font-family: var(--f-hand);
  font-size: 22px;
  color: var(--c-warm-soft);
  margin-top: 16px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ===== cases ===== */
.cases .h2 { max-width: 880px; margin-left: auto; margin-right: auto; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.case-card {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 18, 30, 0.85) 0%, rgba(7, 9, 15, 0.65) 100%);
  border: 1px solid rgba(143, 246, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-tg) 0%, transparent 100%);
  opacity: 0.55;
}
.case-card.tone-warm::before { background: linear-gradient(90deg, var(--c-warm) 0%, transparent 100%); }
.case-card.tone-mint::before { background: linear-gradient(90deg, var(--c-mint) 0%, transparent 100%); }
.case-card.tone-cyan::before { background: linear-gradient(90deg, var(--c-tg) 0%, transparent 100%); }
.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 246, 255, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.case-card.tone-warm:hover { border-color: rgba(240, 198, 116, 0.32); }
.case-card.tone-mint:hover { border-color: rgba(110, 231, 201, 0.32); }

.case-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.case-role {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-mist);
}
.case-card.tone-warm .case-role { color: #FBE3A6; }
.case-card.tone-mint .case-role { color: #B8F3DD; }
.case-card.tone-cyan .case-role { color: #BFEBFA; }
.case-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-row .trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-tg-soft);
  opacity: 0.78;
}
.case-card.tone-warm .case-row .trigger { color: var(--c-warm-soft); }
.case-card.tone-mint .case-row .trigger { color: var(--c-mint); }
.case-row .trigger .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  flex-shrink: 0;
}
.case-row .action {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-mist);
  opacity: 0.92;
  padding-left: 14px;
}

.cases-foot {
  margin-top: 40px;
  padding: 22px 28px;
  border-radius: 14px;
  background: rgba(41, 182, 246, 0.05);
  border: 1px dashed rgba(143, 246, 255, 0.22);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cases-foot p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-mist);
  opacity: 0.85;
}

.cap-callout {
  margin: 28px auto 0;
  max-width: 720px;
  padding: 18px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 198, 116, 0.07), rgba(240, 198, 116, 0.015));
  border-left: 3px solid var(--c-warm-soft);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-mist);
  text-align: left;
}
.cap-callout strong { color: var(--c-mist); font-weight: 600; }
.cap-callout em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #FBE3A6, #F0C674);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== responsive ===== */
@media (max-width: 1080px) {
  .install-grid { grid-template-columns: repeat(3, 1fr); }
  .install-grid::before { display: none; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 110px; }
  .hero-phone { width: 320px; }
  .hero-float.f1, .hero-float.f3 { display: none; }
  .meet { grid-template-columns: 1fr; gap: 40px; }
  .day { grid-template-columns: 1fr; }
  .day::before { display: none; }
  .fomo-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.pro { transform: translateY(0); }
  .install-grid { grid-template-columns: repeat(2, 1fr); }
  .where-grid { grid-template-columns: 1fr; }
  .losing-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .loop-vis { grid-template-columns: 1fr; }
  .loop-vis .arrow { display: none; }
}
@media (max-width: 560px) {
  .nav { padding: 14px 18px; }
  .cap-grid { grid-template-columns: 1fr; }  .install-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .hero-float.f2 { right: 0; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
