/* ===== Потолочникофф — Landing styles ===== */
:root {
  --red: #e31e24;
  --red-deep: #b8141a;
  --red-text: #a01016; /* darker red for small text — passes WCAG AAA on white (~7.5:1) */
  --red-soft: #fff1f1;
  --yellow: #ffea00;
  --yellow-deep: #ffd400;
  --black: #0c0c0e;
  --ink: #16181d;
  --ink-2: #2a2d35;
  --muted: #4d5263;
  --line: #e8e9ee;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-grey: #efefef;
  --bg-placeholder: #f0f0f0;
  --line-2: #e5e5e5;
  --line-input: #d3dde3;
  --ok: #1f9d55;
  --ok-soft: rgba(34,197,94,.15);
  --warn-bg: #fef3c7;
  --warn-bg-soft: #fff8cc;
  --warn-fg: #92400e;
  --warn-accent: #b45309;
  --warn-stripe: #f59e0b;
  --err: #cc3535;
  --err-soft: rgba(204,53,53,.08);
  --err-light: #ffb4b4;
  --shadow-sm: 0 1px 2px rgba(15, 17, 25, 0.04), 0 1px 1px rgba(15, 17, 25, 0.02);
  --shadow-md: 0 6px 24px -8px rgba(15, 17, 25, 0.10), 0 2px 6px rgba(15, 17, 25, 0.04);
  --shadow-lg: 0 24px 64px -16px rgba(15, 17, 25, 0.18), 0 8px 24px -8px rgba(15, 17, 25, 0.08);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }

/* Skip-link for keyboard users (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
}

/* Global keyboard focus ring (WCAG 2.4.7) */
*:focus { outline: none; }
*:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: inherit;
}
.btn:focus-visible,
.btn-cta:focus-visible {
  outline-offset: 3px;
}

/* Respect users who prefer reduced motion (WCAG 2.3.3 AAA) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

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

/* ===== Type ===== */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
  display: inline-block;
}
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h-section em {
  font-style: italic;
  color: var(--red);
  display: inline-block;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
  margin: 0;
}
.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 240ms ease, backdrop-filter 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.0);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  overflow: hidden;
  flex: 0 0 40px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name,
.brand-name span { color: var(--ink); }
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { color: var(--red); }
.header-phone:hover { color: var(--red); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
@media (max-width: 480px) {
  .btn,
  .btn-cta--lg {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .btn-cta--lg { padding: 16px 24px; font-size: 16px; }
}

.btn-cta {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 6px 18px -6px rgba(255, 234, 0, 0.6), 0 2px 0 rgba(0,0,0,.05);
}
.btn-cta:hover {
  background: var(--yellow-deep);
  box-shadow: 0 10px 28px -6px rgba(255, 234, 0, 0.7);
}
.btn-cta--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(227, 30, 36, 0.5);
}
.btn-cta--red:hover { background: var(--red-deep); }
.btn-cta--black {
  background: var(--ink);
  color: #fff;
}
.btn-cta--black:hover { background: #000; }

.btn-cta--lg {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 999px;
}

/* CTA flash effect */
.btn-flash::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 50%;
  height: 340%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.85) 50%, transparent 100%);
  transform: rotate(20deg);
  animation: btn-flash 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-flash {
  0%, 60% { left: -40%; opacity: 0; }
  62% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }

.btn-link {
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.btn-link::after {
  content: "→";
  transition: transform 200ms ease;
}
.btn-link:hover { color: var(--red); }
.btn-link:hover::after { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 22px; max-width: 520px; }
.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-cta .tiny {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta .tiny::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px var(--ok-soft);
}

.hero-since {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.005em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-placeholder);
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .badge {
  position: absolute;
  left: 24px;
  top: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-visual .badge::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.hero-visual .floating-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 260px;
}
.hero-visual .floating-card .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid; place-items: center;
  flex: 0 0 40px;
}
.hero-visual .floating-card .t {
  font-weight: 600; font-size: 14px;
}
.hero-visual .floating-card .s {
  font-size: 12px; color: var(--muted); margin-top: 2px;
}

/* HERO — dark variant */
.hero.dark {
  background: radial-gradient(120% 80% at 80% 0%, #1c1f28 0%, #0c0c0e 60%);
  color: #fff;
}
.hero.dark .h-display { color: #fff; }
.hero.dark .h-display em { color: var(--yellow); }
.hero.dark .lead { color: rgba(255,255,255,.72); }
.hero.dark .hero-since { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.55); }
.hero.dark .eyebrow { color: var(--yellow); }

/* ===== Trust strip ===== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px 24px;
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  min-width: 0;
}
.trust-item span { line-height: 1.3; }
.trust-item svg {
  color: var(--red);
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
@media (max-width: 980px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .trust-item:nth-child(5) { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
    padding: 18px 6px;
    gap: 14px;
  }
  .trust-item:nth-child(5) { grid-column: auto; justify-content: flex-start; }
  .trust-item { font-size: 15px; padding: 4px 0; }
  .hero-visual { aspect-ratio: 5/4; border-radius: var(--radius-lg); }
  .hero-visual .badge { left: 14px; top: 14px; padding: 8px 12px; font-size: 12px; }
  .hero-visual .floating-card {
    right: 14px; bottom: 14px;
    padding: 10px 12px;
    gap: 10px;
    max-width: calc(100% - 28px);
  }
  .hero-visual .floating-card .ico { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; }
  .hero-visual .floating-card .ico svg { width: 16px; height: 16px; }
  .hero-visual .floating-card .t { font-size: 13px; }
  .hero-visual .floating-card .s { display: none; }

  /* Eyebrow: drop the leading line on tight viewports — long uppercase text wraps and orphans the line */
  .eyebrow::before { display: none; }
  .eyebrow { gap: 0; font-size: 12px; letter-spacing: 0.1em; }
}

/* ===== Section base ===== */
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .lead { color: var(--muted); }
.section--grey { background: var(--bg-grey); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .h-section { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--yellow); }

/* ===== "What you get" — checklist ===== */
.checklist-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.checklist-col h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  flex: 0 0 24px;
  margin-top: 2px;
}
.checklist li b { color: var(--ink); font-weight: 600; }

.after-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.after-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.after-list li .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  margin-top: 9px;
  margin-left: 8px;
  box-shadow: 0 0 0 4px rgba(255,234,0,.25);
}

/* Inline form card */
.inline-form-card {
  position: sticky;
  top: 96px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  background-image:
    radial-gradient(60% 60% at 100% 0%, rgba(227,30,36,.35) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 100%, rgba(255,234,0,.18) 0%, transparent 60%);
}
.inline-form-card h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #fff;
}
.inline-form-card p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.5;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input {
  appearance: none;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: border-color 160ms, background 160ms;
}
.field input::placeholder { color: rgba(255,255,255,.35); }
.field input:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.10);
}
.field.error input { border-color: var(--err); background: var(--err-soft); }
.field-error {
  font-size: 13px; color: #ffb4b4; min-height: 14px;
}

/* ============================================================
   Floating-label fields (.field--float)
   Replaces stacked label+input. Label sits as placeholder by
   default, floats up + shrinks on focus or when value present.
   Works on light surfaces by default; .inline-form-card and
   .modal contexts override with dark theme below.
   ============================================================ */
.field--float {
  position: relative;
  display: block;
  margin-bottom: 14px;
  gap: 0;
}
.field--float input,
.field--float textarea {
  width: 100%;
  height: 58px;
  padding: 22px 18px 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  appearance: none;
  transition: border-color .2s ease, background .2s ease;
}
.field--float-textarea textarea {
  height: auto;
  min-height: 120px;
  padding: 26px 18px 14px;
  resize: vertical;
}
.field--float input::placeholder,
.field--float textarea::placeholder { color: transparent; }
.field--float input:focus,
.field--float textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.field--float label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  pointer-events: none;
  background: transparent;
  padding: 0 4px;
  margin-left: -4px;
  transition: top .15s ease, font-size .15s ease, font-weight .15s ease, color .15s ease, transform .15s ease;
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.field--float-textarea label {
  top: 22px;
  transform: none;
}
.field--float input:focus ~ label,
.field--float input:not(:placeholder-shown) ~ label,
.field--float textarea:focus ~ label,
.field--float textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.field--float.error input,
.field--float.error textarea {
  border-color: var(--err);
  background: var(--err-soft);
}
.field--float.error label {
  color: var(--err);
}
.field--float .field-error {
  margin-top: 6px;
  padding-left: 4px;
  color: var(--red-text);
}

/* Dark surface override — used in .inline-form-card (dark sticky form on white section) */
.inline-form-card .field--float input,
.inline-form-card .field--float textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.inline-form-card .field--float input:focus,
.inline-form-card .field--float textarea:focus {
  background: rgba(255,255,255,.10);
  border-color: var(--yellow);
}
.inline-form-card .field--float label { color: rgba(255,255,255,.55); }
.inline-form-card .field--float input:focus ~ label,
.inline-form-card .field--float input:not(:placeholder-shown) ~ label,
.inline-form-card .field--float textarea:focus ~ label,
.inline-form-card .field--float textarea:not(:placeholder-shown) ~ label {
  color: rgba(255,255,255,.7);
}
.inline-form-card .field--float.error input,
.inline-form-card .field--float.error textarea {
  border-color: #ff6b6b;
  background: rgba(255,107,107,.12);
}
.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  margin-top: 14px;
}
.form-disclaimer a { color: rgba(255,255,255,.65); text-decoration: underline; }
.inline-form-card .btn {
  width: 100%;
  margin-top: 6px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success .ok-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  color: var(--ink);
  animation: pop 360ms cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h4 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.form-success p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  margin: 0;
}

/* ===== Two-column "новостройки / вторичка" ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.two-col-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.two-col-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.two-col-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.two-col-card.is-new .tag {
  background: var(--red-soft);
  color: var(--red);
}
.two-col-card.is-old .tag {
  background: var(--warn-bg);
  color: var(--warn-fg);
}
.two-col-card h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  line-height: 1.15;
}
.two-col-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.two-col-card ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.two-col-card ul li svg { margin-top: 4px; flex: 0 0 18px; }
.two-col-card.is-new ul li svg { color: var(--red); }
.two-col-card.is-old ul li svg { color: var(--warn-accent); }

.two-col-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: .06;
  pointer-events: none;
}
.two-col-card.is-new::after { background: var(--red); }
.two-col-card.is-old::after { background: var(--warn-stripe); }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 220ms, transform 220ms, box-shadow 220ms;
}
.step:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 32px;
  display: grid; place-items: center;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.step:nth-child(2) .step-num { background: var(--red); color: #fff; }
.step:nth-child(3) .step-num { background: var(--yellow); color: var(--ink); }
.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.step .step-note {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== Gallery ===== */
.gallery-wrap { position: relative; }
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 32px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 520px);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: var(--bg-placeholder);
  cursor: zoom-in;
  transition: transform 320ms ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .meta {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(0,0,0,.55);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 16px;
}
.gallery-arrows { display: flex; gap: 10px; }
.gallery-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 200ms ease;
}
.gallery-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-arrow:disabled { opacity: .4; cursor: not-allowed; }
.gallery-dots {
  display: flex; gap: 8px;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all 200ms;
}
.gallery-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* Counter + progress bar — used when gallery has more than 7 items */
.gallery-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  max-width: 320px;
}
.gallery-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 14px;
  color: var(--ink-2);
  flex: 0 0 auto;
}
.gallery-counter .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.gallery-counter .sep {
  color: var(--line);
  margin: 0 2px;
  font-weight: 400;
}
.gallery-counter .total {
  color: var(--muted);
  font-size: 13px;
}
.gallery-rail {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  min-width: 60px;
}
.gallery-rail-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 88px;
  animation: fade-in 200ms ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
@media (max-width: 720px) {
  .lightbox { padding: 64px 16px; }
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

/* ===== Solutions cards ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease;
  border: 1px solid var(--line);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.solution-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-placeholder);
  position: relative;
}
.solution-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.solution-card:hover .solution-img img { transform: scale(1.06); }
.solution-img .badge {
  position: absolute;
  left: 14px; top: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.solution-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.solution-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}
.solution-price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
}
.solution-price small {
  font-size: 16px;
  color: var(--muted);
  margin-left: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.solution-includes {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 6px 0 0;
}
.solution-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.solution-list li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
}
.solution-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  margin-left: 4px;
}
.solution-card .btn {
  margin-top: auto;
}

/* ===== Promos ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.promo-card.p1 {
  background: linear-gradient(135deg, var(--red) 0%, #c81216 100%);
  color: #fff;
}
.promo-card.p2 {
  background: linear-gradient(135deg, #fff7d6 0%, var(--yellow) 100%);
  color: var(--ink);
}
.promo-card.p3 {
  background: var(--ink);
  color: #fff;
}
.promo-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
}
.promo-card.p2 .promo-icon { background: rgba(0,0,0,.08); color: var(--ink); }
.promo-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.promo-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
}
.promo-card.p1::before, .promo-card.p3::before {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: background 220ms, border-color 220ms;
}
.why-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-card:nth-child(2) .why-icon { background: var(--yellow); color: var(--ink); }
.why-card:nth-child(3) .why-icon { background: #fff; color: var(--ink); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: #fff;
}
.why-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0;
  white-space: pre-line;
}

/* ===== Reviews widget ===== */
.reviews-widget-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
@media (max-width: 720px) {
  .reviews-widget-wrap { max-width: 100%; margin: 0 16px; }
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 200ms;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  transition: all 220ms;
  flex: 0 0 32px;
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > .faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}

/* ===== Calculator ===== */
.calc-section {
  background: #fafafa;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.calc-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-field-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.calc-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.calc-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.calc-num-input {
  width: 88px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  background: #fff;
}
.calc-num-input:focus { border-color: var(--ink); }

/* Custom slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e5e5;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform 160ms;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
}

.calc-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-pill {
  flex: 1;
  min-width: 56px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 160ms;
}
.calc-pill:hover { border-color: var(--ink); }
.calc-pill.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.calc-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-input);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  width: max-content;
  align-self: flex-start;
}
.calc-stepper button {
  width: 44px; height: 44px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  display: grid; place-items: center;
  transition: background 160ms;
  flex-shrink: 0;
}
.calc-stepper button:hover:not(:disabled) { background: var(--bg-soft); }
.calc-stepper button:disabled { color: var(--line-input); cursor: not-allowed; }
.calc-stepper input {
  width: 60px;
  height: 44px;
  border: 0;
  border-left: 1px solid var(--line-input);
  border-right: 1px solid var(--line-input);
  text-align: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  flex-shrink: 0;
  padding: 0;
}

.calc-fabric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc-fabric {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1.5px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: all 200ms;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-fabric:hover { border-color: var(--ink); }
.calc-fabric.active {
  background: #fffce0;
  border-color: var(--yellow);
}
.calc-fabric .ttl {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.calc-fabric .sub {
  font-size: 13px;
  color: var(--muted);
}

/* Result card */
.calc-result {
  position: sticky;
  top: 96px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.calc-result-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}
.calc-result-price {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1;
  letter-spacing: -0.025em;
  font-family: inherit;
  margin: 0;
}
.calc-result-price .from {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--muted);
  margin-right: 8px;
  vertical-align: 0.25em;
}
.calc-result-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.calc-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}
.calc-result-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-result-includes h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.calc-result-includes li {
  font-size: 14px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  line-height: 1.45;
  list-style: none;
}
.calc-result-includes li svg { color: var(--red); margin-top: 2px; }
.calc-result-includes ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.calc-result-cta {
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: background 160ms, transform 160ms;
  text-align: center;
  line-height: 1.3;
}
.calc-result-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); }

.calc-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-bullets li {
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  line-height: 1.45;
}
.calc-bullets li svg { color: var(--ok); margin-top: 2px; }
.calc-bullets ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.calc-footnote {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

/* ===== Director ===== */
.director-section { background: #fafafa; }
.director-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.director-letter {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.director-letter p { margin: 0; }
.director-first {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.director-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  display: block;
}
.director-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.director-sign {
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.director-channels-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.director-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.director-channel {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.director-channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: #d4d4d4;
}
.director-channel .ch-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.director-channel .ch-icon {
  color: #1f1f1f;
  flex-shrink: 0;
  margin-top: 1px;
}
.director-channel .ch-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.director-channel .ch-title { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.2; }
.director-channel .ch-sub { font-size: 13px; color: #6d6e71; margin: 0; line-height: 1.4; }
.director-channel .ch-link {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-family: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
  transition: color 160ms, text-decoration-color 160ms;
}
.director-channel .ch-link:hover {
  text-decoration-color: #ffea00;
  text-decoration-thickness: 2px;
}
.director-channel .ch-link-btn { text-align: left; }
@media (max-width: 768px) {
  .director-channels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .director-channels { grid-template-columns: 1fr; }
  .director-first { gap: 16px; }
  .director-avatar { width: 64px; height: 64px; }
}
.modal textarea {
  appearance: none;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--ink);
  width: 100%;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.modal textarea:focus { border-color: var(--ink); background: #fff; }
.field.error textarea { border-color: var(--err); }

/* ===== News ===== */
.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.news-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-placeholder);
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.news-card:hover .news-image img { transform: scale(1.03); }
.news-body {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.news-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.news-meta .news-tag {
  background: var(--red-soft);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 999px;
}
.news-meta .news-date { color: var(--muted); }
.news-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.news-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.news-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.news-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.news-stat .num em { color: var(--red); font-style: italic; }
.news-stat .lbl {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 980px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--ink);
  color: #fff;
  background-image:
    radial-gradient(50% 60% at 80% 30%, rgba(227,30,36,.35) 0%, transparent 50%),
    radial-gradient(50% 60% at 20% 80%, rgba(255,234,0,.15) 0%, transparent 50%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.final-cta h2 em { color: var(--yellow); font-style: italic; }
.final-cta p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 32px; font-size: 18px; line-height: 1.5; }
.final-cta .btn,
.final-cta .btn-cta--lg {
  max-width: 100%;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a0a0c;
  color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand .brand-name,
.footer-brand .brand-name span { color: #fff; }
.footer-brand .brand-name { font-size: 22px; font-weight: 700; }
.footer-tagline { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.5; max-width: 320px; margin: 0 0 20px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a, .footer-col ul li {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  transition: color 160ms;
  line-height: 1.4;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-col .phone { font-weight: 600; }
.footer-vk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0077FF;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: transform 160ms;
}
.footer-vk:hover { transform: translateY(-2px); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; flex-direction: column; gap: 4px; max-width: 720px; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,17,22,.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  animation: fade-in 200ms ease;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  padding: 36px;
  position: relative;
  animation: modal-in 320ms cubic-bezier(.2,1.2,.3,1);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.4);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--muted);
}
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal h3 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.modal-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.modal .field input {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line);
}
.modal .field input::placeholder { color: var(--muted); }
.modal .field input:focus { background: #fff; border-color: var(--ink); }
.modal .field label { color: var(--muted); }
.modal .form-disclaimer { color: var(--muted); }
.modal .form-disclaimer a { color: var(--ink); }
.modal-product {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.modal-product b { color: var(--ink); display: block; margin-top: 2px; font-size: 15px; font-weight: 600; }

/* ============================================================
   Static legal / contacts / 404 pages
   ============================================================ */
.legal-page, .error-page {
  padding: clamp(48px, 6vw, 96px) 0 clamp(64px, 8vw, 120px);
  max-width: 880px;
}
.legal-page .back-home,
.error-page .back-home {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 200ms;
}
.legal-page .back-home:hover { color: var(--ink); }
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 36px 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.legal-page p, .legal-page li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-page ul li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-page a:hover { color: var(--red-text); }
.legal-meta {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
/* Static-page header (no sticky behaviour, just a thin top bar).
   Used on contacts.html, privacy.html, terms.html, 404.html — replaces
   inline `style="position:relative;..."` overrides. */
.site-header.is-static {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

/* ===== Contacts page typography (replaces inline style="..." on h1/h2) ===== */
.contacts-page .contacts-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
  text-wrap: balance;
}
.contacts-page .contacts-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 48px;
  text-wrap: pretty;
}
.contacts-page .contacts-h--section {
  margin-top: 64px;
  margin-bottom: 18px;
}
.contacts-page .contacts-map-link {
  margin-top: 14px;
}

/* `<address>` should not look italic on this page */
.contacts-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 6px;
}
.contacts-address strong { color: var(--ink); font-weight: 600; }

/* Final CTA block on contacts page */
.contacts-cta {
  margin-top: 64px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.contacts-cta__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-wrap: balance;
}
.contacts-cta p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 22px;
  max-width: 52ch;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}
.contacts-block {
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contacts-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contacts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts-list--plain {
  gap: 6px;
}
.contacts-list--plain li { line-height: 1.5; }
.contacts-link {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.contacts-link--small {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contacts-link:hover { color: var(--red-text); }
.contacts-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}
.contacts-p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 6px;
}
.contacts-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}
.contacts-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contacts-legal {
  padding: 24px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contacts-legal p { margin: 0 0 8px; font-size: 16px; }

.error-shell {
  text-align: left;
  padding: clamp(32px, 6vw, 80px) 0;
  max-width: 640px;
}
.error-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 720px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 18px; }
  .contacts-block { padding: 20px; }
  .contacts-link { font-size: 22px; }
}

/* Form consent checkbox */
.field-consent {
  display: flex;
  gap: 10px;
  margin: 14px 0 16px;
  align-items: flex-start;
}
.field-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
  cursor: pointer;
  flex: 0 0 18px;
}
.field-consent label {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.6);
  cursor: pointer;
}
.field-consent label a {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.field-consent.error label { color: #ffb4b4; }
.modal .field-consent label { color: var(--muted); }
.modal .field-consent label a { color: var(--ink); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; max-width: 100%; }
  .hero-visual img { object-position: center 35%; }
  .hero-visual .floating-card {
    right: 16px; bottom: 16px;
    padding: 12px 14px;
    max-width: calc(100% - 32px);
  }
  .hero-visual .floating-card .ico { width: 36px; height: 36px; flex: 0 0 36px; }
  .checklist-block, .faq-grid { grid-template-columns: 1fr; }
  .two-col, .steps, .solutions-grid, .promo-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .header-phone { display: none; }
  .inline-form-card { position: static; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .promo-card { padding: 28px 24px; }
  .two-col-card { padding: 28px 22px; }
}

/* ============================================================
   Trust blocks: About / Guarantee / Team / VideoProcess
   ============================================================ */

/* About */
.about-title {
  font-family: "Inter", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.about-lead {
  max-width: 720px;
  margin: 0 0 clamp(48px, 5vw, 60px);
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.55;
  color: #1f1f1f;
}
.about-cards {
  display: grid;
  grid-template-columns: 5fr 4fr;
  grid-auto-rows: auto;
  gap: 24px;
}
.about-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.about-card:nth-child(1) .about-card-title,
.about-card:nth-child(1) .about-card-text { color: #fff; }
.about-card:nth-child(1) .about-card-title { font-size: clamp(36px, 4vw, 56px); }
.about-card {
  background: var(--bg-soft);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  border-color: #d4d4d4;
}
.about-card-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-card-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #1f1f1f;
}
.about-stats--full {
  grid-template-columns: repeat(4, 1fr);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
}
.about-text p { margin: 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-stat {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-stat-num em { font-style: italic; color: var(--red); }
.about-stat-num--word {
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.01em;
  color: var(--red);
  font-weight: 500;
}
.about-stat-lbl {
  font-size: 16px;
  color: #6d6e71;
  line-height: 1.4;
}
.about-stat-lbl .muted { color: #98989d; font-size: 14px; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats--full { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card:nth-child(1) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-stats--full { grid-template-columns: 1fr; }
  .about-stat { padding: 24px; }
  .about-card { padding: 24px; }
}

/* Guarantee */
.guarantee-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.guarantee-hero {
  background: var(--warn-bg-soft);
  border-radius: 16px;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
}
.guarantee-hero-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(96px, 11vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.guarantee-hero-word {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  color: var(--ink);
  margin-top: 8px;
}
.guarantee-hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 280px;
}
.guarantee-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.guarantee-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.guarantee-check {
  color: #23a12b;
  margin-top: 2px;
  display: inline-flex;
}
.guarantee-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.guarantee-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6d6e71;
}
@media (max-width: 980px) {
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-hero { min-height: 280px; padding: 48px 24px; }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.team-photo {
  aspect-ratio: 5 / 6;
  background: #efefef;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #c4c4c4;
  margin-bottom: 14px;
}
.team-photo svg { width: 48px; height: 48px; }
.team-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.team-role {
  font-size: 13px;
  color: #6d6e71;
  line-height: 1.35;
}
.team-note {
  margin: clamp(32px, 4vw, 48px) auto 0;
  text-align: center;
  font-size: 15px;
  color: #6d6e71;
  max-width: 640px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Video process */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card { display: flex; flex-direction: column; gap: 14px; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-facade {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0e 100%);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.video-facade:hover { transform: translateY(-2px); }
.video-facade-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  display: grid; place-items: center;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 200ms;
}
.video-facade:hover .video-facade-play { transform: scale(1.08); }
.video-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.video-sub {
  margin: 0;
  font-size: 14px;
  color: #6d6e71;
  line-height: 1.45;
}
.video-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 180ms;
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

