/* ═══════════════════════════════════════════════════════════
   ДОН ЕВРО СТРОЙ — style.css
   Architectural Dark Premium
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #141414;
  --bg-2:         #1C1C1C;
  --bg-3:         #242424;
  --bg-4:         #2C2C2C;
  --accent:       #1EAEE4;
  --accent-dark:  #1490C2;
  --gold:         #C9953C;
  --gold-light:   #E4B96A;
  --text:         #F0EDE8;
  --text-2:       #A8A5A0;
  --text-3:       #686460;
  --border:       rgba(255,255,255,0.07);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.3);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:     72px;
  --container:    1240px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-eyebrow--gold { color: var(--gold); }
.section-eyebrow--gold::before { background: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}
.section-header--light .section-title { color: #fff; }

/* ── SECTION SPACING ──────────────────────────────────────── */
.section { padding: 100px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 30px rgba(30,174,228,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo img { height: 44px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { width: 100%; }

.header-phone {
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  gap: 7px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(14,14,14,0.65) 50%,
    rgba(20,20,20,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,174,228,0.15);
  border: 1px solid rgba(30,174,228,0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 760px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,237,232,0.8);
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* hero-stats — базовые стили перенесены в блок "HERO STATS" ниже */
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  align-self: stretch;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,0.8); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-desc {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.about-feature:hover { color: var(--text); }

.about-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(30,174,228,0.1);
  border: 1px solid rgba(30,174,228,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-grid > div,
.about-img-grid img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-grid img:hover { transform: scale(1.04); }

/* ── PROJECTS ─────────────────────────────────────────────── */
.projects { background: var(--bg-2); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.project-card--large {
  grid-column: span 3;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  cursor: pointer;
}
.project-card--large {
  aspect-ratio: 21/9;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.project-card:hover img { transform: scale(1.06); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }

.project-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,174,228,0.15);
  border: 1px solid rgba(30,174,228,0.3);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.project-card__info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.project-card__info p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.project-card__zoom {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  align-self: flex-start;
  margin-top: auto;
  transition: background var(--transition);
}
.project-card__zoom svg { width: 16px; height: 16px; }
.project-card__zoom:hover { background: rgba(255,255,255,0.2); }

.projects-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── ADVANTAGES ───────────────────────────────────────────── */
.advantages {
  position: relative;
  overflow: hidden;
}

.advantages-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.advantages-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.88) 100%);
}

.advantages .container { position: relative; z-index: 2; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(12px);
}
.adv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,174,228,0.2);
  transform: translateY(-4px);
}

.adv-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(30,174,228,0.1);
  border: 1px solid rgba(30,174,228,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.adv-card:hover .adv-card__icon {
  background: rgba(30,174,228,0.18);
}
.adv-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.adv-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.adv-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── PROCESS ──────────────────────────────────────────────── */
.process { background: var(--bg); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(30,174,228,0.2));
  margin-top: 30px;
  flex-shrink: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
  flex-shrink: 0;
}

.process-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(30,174,228,0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.process-step:hover .process-step__num {
  background: rgba(30,174,228,0.2);
}

.process-step__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-step__body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--accent); }

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(30,174,228,0.08);
  border: 1px solid rgba(30,174,228,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-item:hover .contact-item__icon {
  background: rgba(30,174,228,0.15);
}
.contact-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.contact-item__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.contact-item__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ── FORM ─────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,174,228,0.12);
}
.form-group input.error,
.form-group textarea.error { border-color: #e45555; }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--accent); }
.form-note a:hover { text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30,174,228,0.1);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success__icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.form-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-2); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 12px;
  color: var(--text-3);
  padding: 8px 12px;
  background: var(--bg-2);
  border-radius: 6px;
  display: inline-block;
}

.footer-nav h4,
.footer-contacts h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-contacts a,
.footer-contacts p {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.6;
}
.footer-contacts a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
  max-height: 90dvh;
  overflow-y: auto;
}
.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--bg-4); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; }

.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.modal-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85dvh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80dvh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-caption {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

/* ── FLOATING CTA ─────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(30,174,228,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-cta svg { width: 22px; height: 22px; }
.float-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(30,174,228,0.6);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.45s; }

/* ── UTILITY ──────────────────────────────────────────────── */
.desk-only { display: block; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── TABLET 1024px ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-gallery { order: -1; }
  .about-img-main { aspect-ratio: 16/7; }

  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    gap: 20px;
    width: 100%;
  }
  .process-step__num { margin-bottom: 0; flex-shrink: 0; }
  .process-connector {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent), rgba(30,174,228,0.2));
    margin-top: 0;
    margin-left: 29px;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ── MOBILE 768px ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  /* Header */
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header-nav a {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .header-nav a::after { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { height: auto; min-height: 100dvh; }
  .hero-title { font-size: clamp(30px, 8vw, 48px); }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .desk-only { display: none; }
  /* hero-stats — управляется новым блоком ниже */

  /* Parallax — отключаем на мобиле */
  .advantages-bg {
    background-attachment: scroll;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-card--large { grid-column: span 1; aspect-ratio: 16/9; }
  .project-card { aspect-ratio: 4/3; }
  .project-card__overlay { opacity: 1; }

  /* Advantages */
  .advantages-grid { grid-template-columns: 1fr; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-img-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Modal */
  .modal { padding: 32px 24px; max-width: 100%; border-radius: var(--radius); }

  /* Lightbox nav */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Float CTA */
  .float-cta { bottom: 20px; right: 20px; }

  /* Form */
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── MOBILE 480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(26px, 9vw, 38px); }
  .hero-badge { font-size: 10px; }

  .adv-card { padding: 24px 20px; }
  .process-step { gap: 14px; }
  .process-step__num { width: 50px; height: 50px; font-size: 15px; }
}

/* ── Touch devices — убираем hover-анимации ───────────────── */
@media (hover: none) {
  .project-card__overlay { opacity: 1; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%); }
  .about-img-main img, .about-img-grid img { transition: none; }
}

/* ── Reduce motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg { transition: none; transform: scale(1); }
  .hero-scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════════════
   HERO LAYOUT — двухколоночный
   ═══════════════════════════════════════════════════════════ */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--header-h) + 20px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  min-height: 100dvh;
  padding-bottom: 80px;
}

/* Убираем старый hero-content padding-top (теперь управляет hero-inner) */
.hero .hero-content {
  padding-top: 0;
}

/* Hero Form Card */
.hero-form-wrap {
  align-self: center;
}

.hero-form-card {
  background: rgba(20,20,20,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.hero-form-header {
  margin-bottom: 24px;
}
.hero-form-badge {
  display: inline-block;
  background: rgba(201,149,60,0.15);
  border: 1px solid rgba(201,149,60,0.35);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.hero-form-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hero-form-header p {
  font-size: 13px;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════
   QUIZ SECTION
   ═══════════════════════════════════════════════════════════ */
.quiz-section {
  background: var(--bg-2);
  padding: 100px 0;
  overflow: hidden;
}

.quiz-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.quiz-header {
  text-align: center;
  margin-bottom: 56px;
}
.quiz-header .section-subtitle {
  margin: 0 auto;
}

.quiz-body {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  min-height: 340px;
}

/* Progress */
.quiz-progress {
  height: 4px;
  background: var(--bg-4);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--accent), #5DD9FF);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}
.quiz-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

/* Quiz Steps */
.quiz-step {
  display: none;
  animation: quizFadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.quiz-step.active { display: block; }

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes quizFadeInBack {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-step.going-back {
  animation: quizFadeInBack 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.quiz-q {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* City buttons */
.quiz-city-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.quiz-city-btn {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.quiz-city-btn:hover,
.quiz-city-btn.selected {
  background: rgba(30,174,228,0.12);
  border-color: var(--accent);
  color: var(--text);
}
.quiz-city-btn.selected {
  box-shadow: 0 0 0 3px rgba(30,174,228,0.2);
}

.quiz-text-input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quiz-text-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,174,228,0.12);
}

/* Quiz options */
.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quiz-options--2 { gap: 16px; }
.quiz-options--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quiz-options--list {
  flex-direction: column;
  gap: 10px;
}

.quiz-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.quiz-opt:hover {
  background: rgba(30,174,228,0.08);
  border-color: rgba(30,174,228,0.4);
}
.quiz-opt.selected {
  background: rgba(30,174,228,0.14);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,174,228,0.18);
}

.quiz-opt--wide {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  padding: 16px 20px;
  min-width: unset;
  flex: unset;
  width: 100%;
}
.quiz-options--2 .quiz-opt {
  flex: 1;
  min-width: 180px;
  padding: 28px 20px;
}
.quiz-opt__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.quiz-opt--wide .quiz-opt__icon { font-size: 22px; margin-right: 4px; }
.quiz-opt__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Quiz contacts form */
.quiz-contact-form .form-group {
  margin-bottom: 16px;
}
.quiz-contact-form input {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  width: 100%;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quiz-contact-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,174,228,0.12);
}
.quiz-contact-form input.error { border-color: #e45555; }
.quiz-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
}

/* Consent checkbox */
.quiz-consent {
  margin: 20px 0;
}
.quiz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.quiz-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.quiz-checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
  position: relative;
}
.quiz-checkbox input:checked + .quiz-checkbox__box {
  background: var(--accent);
  border-color: var(--accent);
}
.quiz-checkbox input:checked + .quiz-checkbox__box::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.quiz-checkbox__text {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
}
.quiz-checkbox__text a { color: var(--accent); }
.quiz-checkbox__text a:hover { text-decoration: underline; }

/* Quiz navigation */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 4px;
}
.quiz-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  font-family: inherit;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px 0;
}
.quiz-back-btn svg { width: 16px; height: 16px; }
.quiz-back-btn:hover { color: var(--text); }
.quiz-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto;
}
.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-4);
  transition: all var(--transition);
  cursor: pointer;
}
.quiz-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.quiz-dot.done {
  background: rgba(30,174,228,0.4);
}

/* Quiz submit button pulse */
.quiz-submit-btn {
  position: relative;
  overflow: visible;
}
.quiz-submit-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.quiz-submit-btn:hover::before {
  opacity: 0.15;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.04); opacity: 0.08; }
}

/* Quiz — финальный экран */
.quiz-step--thanks {
  text-align: center;
  padding: 20px 0;
}
.quiz-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quiz-thanks__anim {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}
.quiz-thanks__check {
  width: 80px;
  height: 80px;
}
.quiz-thanks__circle {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.quiz-thanks__tick {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.quiz-step--thanks.animate .quiz-thanks__circle {
  stroke-dashoffset: 0;
}
.quiz-step--thanks.animate .quiz-thanks__tick {
  stroke-dashoffset: 0;
}

.quiz-thanks__title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quiz-thanks__text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
}
.quiz-thanks__summary {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 420px;
  text-align: left;
  width: 100%;
}
.quiz-thanks__summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.quiz-thanks__summary-item:last-child { border-bottom: none; }
.quiz-thanks__summary-item span:first-child { color: var(--text-3); }
.quiz-thanks__summary-item span:last-child { color: var(--text); font-weight: 600; text-align: right; }
.quiz-thanks__btn { margin-top: 8px; }

/* ── HERO + QUIZ responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 100px;
    align-content: start;
    gap: 40px;
    min-height: unset;
  }
  .hero-form-wrap {
    max-width: 520px;
  }
  .hero { height: auto; min-height: 100dvh; }
}

@media (max-width: 768px) {
  .quiz-body {
    padding: 28px 20px;
  }
  .quiz-options--grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quiz-options--2 .quiz-opt {
    min-width: 130px;
    padding: 20px 14px;
  }
  .quiz-city-options {
    gap: 8px;
  }
  .quiz-city-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
  .hero-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .quiz-options--grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .quiz-opt {
    padding: 16px 10px;
    min-width: unset;
  }
  .quiz-opt__icon { font-size: 22px; }
  .quiz-opt__label { font-size: 12px; }
  .quiz-q { font-size: 18px; }
  .quiz-body { padding: 24px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SALE BADGE
   ═══════════════════════════════════════════════════════════ */
.hero-sale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201,149,60,0.25), rgba(228,185,106,0.15));
  border: 1.5px solid rgba(201,149,60,0.5);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  animation: salePulse 3s ease-in-out infinite;
  flex-wrap: wrap;
}
@keyframes salePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,149,60,0); }
  50%     { box-shadow: 0 0 0 6px rgba(201,149,60,0.12); }
}
.hero-sale__tag {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}
.hero-sale__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
}
.hero-sale__arrow {
  font-size: 16px;
  color: var(--gold);
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  flex: 1;
  min-width: 160px;
}
.trust-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(30,174,228,0.1);
  border: 1px solid rgba(30,174,228,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item__icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SALE BANNER
   ═══════════════════════════════════════════════════════════ */
.sale-banner {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}
.sale-banner__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(201,149,60,0.08) 0%, rgba(20,20,20,0) 60%);
  border: 1px solid rgba(201,149,60,0.2);
  border-radius: 24px;
  padding: 52px 52px;
  position: relative;
  overflow: hidden;
}
.sale-banner__inner::before {
  content: 'SALE';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(201,149,60,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.sale-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.sale-banner__tag svg { width: 14px; height: 14px; stroke: #000; }
.sale-banner__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.sale-banner__desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}
.sale-banner__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sale-banner__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sale-banner__list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Price Card */
.sale-price-card {
  background: var(--bg-3);
  border: 1px solid rgba(201,149,60,0.3);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.sale-price-card::before {
  content: 'ХИТ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 100px;
}
.sale-price-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.sale-price-card__from {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 4px;
}
.sale-price-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.sale-price-card__num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sale-price-card__currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 6px;
}
.sale-price-card__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.sale-price-card__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.sale-price-card__item span {
  color: var(--gold);
  font-weight: 700;
}
.sale-price-card__note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF / REVIEWS
   ═══════════════════════════════════════════════════════════ */
.social-proof { background: var(--bg-2); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.proof-card:hover {
  border-color: rgba(201,149,60,0.25);
  transform: translateY(-3px);
}
.proof-card__stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}
.proof-card__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.proof-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.proof-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.proof-card__author span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
}

/* CTA после отзывов */
.proof-cta__inner {
  background: linear-gradient(135deg, rgba(30,174,228,0.08), rgba(30,174,228,0.03));
  border: 1px solid rgba(30,174,228,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-cta__text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.proof-cta__text p {
  font-size: 14px;
  color: var(--text-2);
}
.proof-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FIRST — полная переработка
   Base = мобиль, media = десктоп
   ═══════════════════════════════════════════════════════════ */

/* Сбрасываем старые desktop-first медиазапросы для Hero */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 32px;
    min-height: unset;
  }
  .hero { height: auto; min-height: 100dvh; }
  .hero-form-wrap { max-width: 100%; }

  .sale-banner__inner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }
  .sale-price-card { max-width: 400px; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 0; }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* ── Header mobile ── */
  .header-inner { gap: 0; padding: 0 16px; }
  .header-logo img { height: 36px; }
  .header-phone { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(18,18,18,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    margin: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    pointer-events: none;
    z-index: 99;
  }
  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header-nav a {
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .header-nav a:last-child { border-bottom: none; }

  /* ── Hero mobile ── */
  .hero {
    height: auto;
    min-height: 100dvh;
    padding-bottom: 0;
  }
  .hero-inner {
    padding: calc(var(--header-h) + 24px) 16px 40px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    min-height: unset;
  }
  .hero-sale {
    font-size: 13px;
    padding: 8px 12px;
    gap: 8px;
  }
  .hero-sale__text { font-size: 13px; }
  .hero-sale__arrow { display: none; }
  .hero-title { font-size: clamp(26px, 7.5vw, 38px); }
  .hero-subtitle { font-size: 14px; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 20px;
  }
  /* hero-stats на мобиле — управляется блоком 2500+ */
  .desk-only { display: none; }

  /* Hero form mobile */
  .hero-form-card { padding: 20px 16px; border-radius: var(--radius); }
  .hero-form-header h3 { font-size: 18px; }
  .hero-form-header p { font-size: 12px; }

  /* ── Trust bar mobile ── */
  .trust-bar { padding: 0; }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-item {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    min-width: unset;
    flex: unset;
  }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-divider { display: none; }
  .trust-item__icon { width: 32px; height: 32px; }
  .trust-item__icon svg { width: 15px; height: 15px; }
  .trust-item strong { font-size: 12px; }
  .trust-item span { font-size: 10px; }

  /* ── Section spacing ── */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }

  /* ── About mobile ── */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-gallery { order: -1; }
  .about-img-main { aspect-ratio: 16/8; }
  .about-img-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-features { grid-template-columns: 1fr; gap: 12px; }

  /* ── Sale banner mobile ── */
  .sale-banner { padding: 48px 0; }
  .sale-banner__inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 32px;
  }
  .sale-banner__inner::before { display: none; }
  .sale-banner__title { font-size: clamp(22px, 6vw, 32px); }
  .sale-price-card { padding: 28px 20px; max-width: 100%; }
  .sale-price-card__num { font-size: 36px; }
  .sale-price-card__includes { grid-template-columns: 1fr; gap: 6px; }

  /* ── Projects mobile ── */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .project-card--large { grid-column: span 1; aspect-ratio: 16/9; }
  .project-card { aspect-ratio: 4/3; }
  .project-card__overlay { opacity: 1; }
  .project-card__info h3 { font-size: 15px; }

  /* ── Social proof mobile ── */
  .proof-grid { grid-template-columns: 1fr; gap: 14px; }
  .proof-cta__inner { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .proof-cta__actions { width: 100%; flex-direction: column; }
  .proof-cta__actions .btn { width: 100%; justify-content: center; }

  /* ── Advantages mobile ── */
  .advantages-bg { background-attachment: scroll; }
  .advantages-grid { grid-template-columns: 1fr; gap: 12px; }
  .adv-card { padding: 22px 18px; }

  /* ── Process mobile ── */
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    max-width: 100%;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
  }
  .process-step__num { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 15px; }
  .process-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--accent), rgba(30,174,228,0.2));
    margin-top: 0;
    margin-left: 23px;
    flex: unset;
  }

  /* ── Contact mobile ── */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 24px 18px; }
  .contact-desc { font-size: 14px; margin-bottom: 28px; }

  /* ── Quiz mobile ── */
  .quiz-section { padding: 56px 0; }
  .quiz-body { padding: 24px 16px; }
  .quiz-q { font-size: 17px; }
  .quiz-options--grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .quiz-options--2 .quiz-opt { min-width: unset; padding: 20px 12px; }
  .quiz-opt { padding: 14px 10px; min-width: unset; }
  .quiz-opt__icon { font-size: 22px; }
  .quiz-opt__label { font-size: 12px; }
  .quiz-city-btn { font-size: 13px; padding: 8px 12px; }

  /* ── Modal mobile ── */
  .modal {
    padding: 28px 20px;
    border-radius: var(--radius);
    max-height: 95dvh;
    margin: 0;
    align-self: flex-end;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }
  .modal-title { font-size: 22px; }

  /* ── Lightbox mobile ── */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* ── Footer mobile ── */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* ── Float CTA mobile ── */
  .float-cta { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(22px, 8vw, 30px); }
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .section-title { font-size: clamp(22px, 6vw, 30px); }

  .trust-items { grid-template-columns: 1fr 1fr; }

  .quiz-options--grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .quiz-opt { padding: 12px 8px; }
  .quiz-body { padding: 20px 14px; border-radius: var(--radius); }

  .sale-price-card__num { font-size: 32px; }
  .sale-banner__tag { font-size: 10px; padding: 5px 10px; }

  .proof-card { padding: 22px 18px; }
  .adv-card { padding: 18px 16px; }

  .footer-brand img { height: 36px; }
}

/* ── Hover: none (touch) ────────────────────────────────── */
@media (hover: none) {
  .project-card__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
  }
  .about-img-main img, .about-img-grid img { transition: none; }
  .adv-card:hover { transform: none; }
  .proof-card:hover { transform: none; }
}

/* ── prefers-reduced-motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-sale { animation: none; }
  .quiz-submit-btn::before { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERO STATS — строчное выравнивание + кирпичная анимация
   ═══════════════════════════════════════════════════════════ */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 12px;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
  gap: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: stretch;
}
/* Кирпичная анимация — фоновые кирпичики */
.hero-stat__bricks {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-stat.counting .hero-stat__bricks { opacity: 1; }

.hero-stat__bricks::before,
.hero-stat__bricks::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 7px,
    rgba(30,174,228,0.06) 7px,
    rgba(30,174,228,0.06) 8px
  );
  animation: brickRise 1.6s ease-out both;
  transform-origin: bottom;
}
.hero-stat__bricks::after {
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 14px,
    rgba(30,174,228,0.04) 14px,
    rgba(30,174,228,0.04) 15px
  );
  animation-delay: 0.1s;
}
@keyframes brickRise {
  from { clip-path: inset(100% 0 0 0); }
  to   { clip-path: inset(0% 0 0 0); }
}

.hero-stat__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.hero-stat__plus {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.hero-stat__label {
  font-size: 12px;
  color: rgba(240,237,232,0.75);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* ── Hero stats — мобиль ── */
@media (max-width: 768px) {
  .hero-stats { border-radius: 10px; margin-top: 8px; }
  .hero-stat { padding: 14px 6px 11px; gap: 3px; }
  .hero-stat__num { font-size: 26px; }
  .hero-stat__plus { font-size: 17px; }
  .hero-stat__label { font-size: 10px; margin-top: 2px; white-space: normal; }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR — новый вид 2×2 + плашка
   ═══════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.trust-grid .trust-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: unset;
  min-width: unset;
}
.trust-grid .trust-item:nth-child(2n) { border-right: none; }
.trust-grid .trust-item:nth-child(3),
.trust-grid .trust-item:nth-child(4) { border-bottom: none; }

.trust-full-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(30,174,228,0.08), transparent);
  border-top: 1px solid rgba(30,174,228,0.15);
}
.trust-full-row .trust-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(30,174,228,0.1);
  border: 1px solid rgba(30,174,228,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-full-row .trust-item__icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.trust-full-row strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.trust-full-row span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   SALE PRICE — stage label
   ═══════════════════════════════════════════════════════════ */
.sale-price-card__stage {
  font-size: 12px;
  color: var(--gold-light);
  background: rgba(201,149,60,0.12);
  border: 1px solid rgba(201,149,60,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner__inner {
  background: rgba(28,28,28,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}
.cookie-banner__icon { font-size: 28px; flex-shrink: 0; }
.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.cookie-banner__text p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  font-size: 13px;
  padding: 10px 18px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cookie-banner__inner { padding: 14px 16px; gap: 12px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* SVG логотипа */
.preloader__logo {
  width: clamp(200px, 50vw, 280px);
  height: auto;
  overflow: visible;
}
/* Шевроны рисуются поочерёдно */
.pl-chev {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawChev 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.pl-chev--1 { animation-delay: 0.1s; }
.pl-chev--2 { animation-delay: 0.35s; }
@keyframes drawChev {
  to { stroke-dashoffset: 0; }
}
/* Текст появляется */
.pl-text { opacity: 0; animation: fadeInUp 0.5s ease 0.6s forwards; }
.pl-subtext { opacity: 0; animation: fadeInUp 0.4s ease 0.85s forwards; }
.pl-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 0.4s ease 0.7s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Кирпичи-лоадер */
.preloader__bricks {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 20px;
}
.pl-brick {
  display: block;
  width: 18px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.2;
  animation: brickLoad 1.2s ease-in-out infinite;
}
.pl-brick:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.pl-brick:nth-child(2) { height: 14px; animation-delay: 0.1s;  }
.pl-brick:nth-child(3) { height: 20px; animation-delay: 0.2s;  }
.pl-brick:nth-child(4) { height: 14px; animation-delay: 0.3s;  }
.pl-brick:nth-child(5) { height: 8px;  animation-delay: 0.4s;  }
.pl-brick:nth-child(6) { height: 12px; animation-delay: 0.5s;  }
@keyframes brickLoad {
  0%,100% { opacity: 0.15; transform: scaleY(0.85); }
  50%      { opacity: 1;    transform: scaleY(1);    background: var(--gold); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { transition: none; }
  .pl-chev, .pl-text, .pl-subtext, .pl-line { animation: none; opacity: 1; stroke-dashoffset: 0; }
  .pl-brick { animation: none; opacity: 0.6; }
}

/* ── Preloader status text ── */
.preloader__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
}
.preloader__status-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.preloader__dots {
  display: flex;
  gap: 1px;
}
.preloader__dots span {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  animation: dotBlink 1.2s ease-in-out infinite both;
}
.preloader__dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader__dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink {
  0%,80%,100% { opacity: 0.2; transform: translateY(0); }
  40%          { opacity: 1;   transform: translateY(-3px); }
}
