/*
Theme Name: Гранд
Theme URI: https://izh-grand.ru
Author: Владимир Слюсаренко
Author URI: https://slsrnko.ru
Description: Тема для агентства недвижимости «Гранд» — Ижевск и вся Россия
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grand
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #e84c19;
  --accent-dark:  #c43d14;
  --accent-soft:  rgba(232, 76, 25, 0.09);
  --accent-glow1: rgba(232, 76, 25, 0.07);
  --accent-glow2: rgba(232, 76, 25, 0.04);

  --bg:            #f4f2f3;
  --bg-card:       #ffffff;
  --bg-dark:       #0f1324;
  --hero-card-bg:  #0f1324;
  --badge-bg:      #ffffff;
  --text:          #0f1324;
  --text-2:        rgba(15, 19, 36, 0.52);
  --text-3:        rgba(15, 19, 36, 0.27);
  --border:        rgba(15, 19, 36, 0.09);
  --border-md:     rgba(15, 19, 36, 0.14);
  --nav-bg:        rgba(255, 255, 255, 0.88);
  --chip-bg:       rgba(15, 19, 36, 0.04);
  --srv-num:       rgba(15, 19, 36, 0.07);
  --srv-num-hover: rgba(232, 76, 25, 0.13);
  --badge-shadow:  0 24px 56px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] {
  --accent-soft:   rgba(232, 76, 25, 0.14);
  --accent-glow1:  rgba(232, 76, 25, 0.06);
  --accent-glow2:  rgba(232, 76, 25, 0.03);

  --bg:            #0f1324;
  --bg-card:       #161b2e;
  --bg-dark:       #090c1c;
  --hero-card-bg:  #1a2040;
  --badge-bg:      #1e2440;
  --text:          #f4f2f3;
  --text-2:        rgba(244, 242, 243, 0.52);
  --text-3:        rgba(244, 242, 243, 0.25);
  --border:        rgba(244, 242, 243, 0.08);
  --border-md:     rgba(244, 242, 243, 0.13);
  --nav-bg:        rgba(15, 19, 36, 0.92);
  --chip-bg:       rgba(244, 242, 243, 0.06);
  --srv-num:       rgba(244, 242, 243, 0.05);
  --srv-num-hover: rgba(232, 76, 25, 0.16);
  --badge-shadow:  0 24px 56px rgba(0, 0, 0, 0.4);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
[id]  { scroll-margin-top: 72px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.35s ease, color 0.35s ease;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1;
  transition: color 0.35s ease;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.2px;
  line-height: 1;
  transition: color 0.35s ease;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--accent); }

.nav-burger { display: none; }

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(12deg);
}
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"]  .theme-toggle .icon-moon { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-primary {
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 76, 25, 0.3);
}
.btn-outline {
  padding: 11px 22px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-md);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  min-height: 100vh;
  padding: 72px 64px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.35s ease;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow1) 0%, transparent 68%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 28px;
  transition: color 0.35s ease;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 44px;
  transition: color 0.35s ease;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-card-wrap {
  position: relative;
  padding-bottom: 0;
}

.hero-card {
  background: var(--hero-card-bg);
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.hero-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 76, 25, 0.16) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.hero-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 36px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-stat:nth-child(odd)       { padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.07); }
.hero-stat:nth-child(even)      { padding-left: 28px; }
.hero-stat:nth-last-child(-n+2) { border-bottom: none; }

.h-stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.h-stat-num sup { font-size: 22px; color: var(--accent); vertical-align: super; }
.h-stat-label   { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.5; }

.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 32px 0 28px;
}
.hero-card-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-prompt {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.hero-card-prompt strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14.5px;
}

.btn-accent-sm {
  flex-shrink: 0;
  padding: 11px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-accent-sm:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-badge {
  position: absolute;
  bottom: 0;
  left: -28px;
  background: var(--badge-bg);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--badge-shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.hero-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.35s ease;
}
.hero-badge-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.35s ease;
}
.hero-badge-sub {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  transition: color 0.35s ease;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: bobble 2.2s ease-in-out infinite;
  color: var(--text);
}
.scroll-hint span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.stats-section {
  background: var(--bg-dark);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 68% 58% at 18% 52%, rgba(232, 76, 25, 0.07) 0%, transparent 62%),
    radial-gradient(ellipse 52% 72% at 82% 22%, rgba(40, 60, 140, 0.05) 0%, transparent 58%);
  animation: gradDrift1 22s ease-in-out infinite alternate;
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 60% 50% at 62% 80%, rgba(232, 76, 25, 0.05) 0%, transparent 58%);
  animation: gradDrift2 30s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(7%, -5%) scale(1.06); }
}
@keyframes gradDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, 7%) scale(1.04); }
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.stats-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
  max-width: 600px;
}
.stats-title em { font-style: normal; color: var(--accent); }

.stats-right-text {
  font-size: 15px;
  color: rgba(255,255,255,0.36);
  max-width: 300px;
  text-align: right;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
}

.stat-card {
  padding: 52px 44px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.3s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover      { background: rgba(255,255,255,0.025); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.stat-card:hover::before { background: var(--accent); }

.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 4.5vw, 68px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.stat-num sup { font-size: 36px; color: var(--accent); vertical-align: super; letter-spacing: 0; }
.stat-desc    { font-size: 14px; color: rgba(255,255,255,0.36); line-height: 1.6; max-width: 200px; }

.stats-footnote {
  margin-top: 48px;
}
.stats-fn-text { font-size: 13px; color: rgba(255,255,255,0.2); }

.services-section {
  background: var(--bg);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.services-inner { max-width: 1280px; margin: 0 auto; }

.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
}
.services-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
  transition: color 0.35s ease;
}
.services-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 320px;
  text-align: right;
  transition: color 0.35s ease;
}

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

.srv-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-card:hover {
  border-color: rgba(232, 76, 25, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(232, 76, 25, 0.09);
}
.srv-card:hover::after { transform: scaleX(1); }

.srv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.srv-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: var(--srv-num);
  letter-spacing: -0.5px;
  user-select: none;
  transition: color 0.3s;
}
.srv-card:hover .srv-num { color: var(--srv-num-hover); }

.srv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.35s ease;
}
.srv-icon svg { display: block; }

.srv-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}
.srv-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  transition: color 0.35s ease;
}

/* ── Нижняя строка услуг: 4-й блок + CTA ── */
.services-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.srv-card--wide { flex-direction: column; }

.srv-cta {
  background: var(--accent);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.srv-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.srv-cta-content { position: relative; z-index: 1; }
.srv-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.srv-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}
.srv-cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}
.srv-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}
.srv-cta-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.srv-cta-link:hover {
  background: #fff;
  border-color: #fff;
  color: #0f1324;
}

/* ─── КАЛЬКУЛЯТОР ────────────────────────────── */
.calc-section {
  background: var(--bg);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.calc-inner { max-width: 1280px; margin: 0 auto; }

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

.calc-intro { position: sticky; top: 96px; }

.calc-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  transition: color 0.35s ease;
}
.calc-title em { font-style: normal; color: var(--accent); }

.calc-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  transition: color 0.35s ease;
}

.calc-banks {
  margin-top: 32px;
}
.calc-banks-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
  opacity: 0.6;
  transition: color 0.35s ease;
}
@keyframes banks-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.calc-banks-list {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.calc-banks { min-width: 0; }
.calc-intro { min-width: 0; }
.calc-banks-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: banks-scroll 25s linear infinite;
}
.calc-banks-track:hover { animation-play-state: paused; }
.calc-bank-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-bank-tag img {
  height: 32px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.calc-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 0.35s ease;
}

.calc-input-wrapper { position: relative; }
.calc-input-wrapper input {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border-md);
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
  transition: border-color 0.2s, background 0.35s ease, color 0.35s ease;
}
.calc-input-wrapper input::-webkit-outer-spin-button,
.calc-input-wrapper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-input-wrapper input:focus { border-color: var(--accent); }

.calc-suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-3);
  pointer-events: none;
  transition: color 0.35s ease;
}

.calc-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  border-radius: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.calc-result {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: border-color 0.35s ease;
}
.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s ease, background 0.35s ease;
}
.calc-result-row:last-child { border-bottom: none; }
.calc-result-row--main { background: var(--accent-soft); }
.calc-result-label {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.35s ease;
}
.calc-result-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}
.calc-result-row--main .calc-result-value {
  font-size: 20px;
  color: var(--accent);
}
.calc-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 16px;
}

.calc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: var(--accent-soft);
  border-radius: 14px;
  transition: background 0.35s ease;
}
.calc-cta-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  transition: color 0.35s ease;
}

/* ─── НОВОСТРОЙКИ ─────────────────────────────── */
.novi-section {
  background: var(--bg-dark);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.novi-inner { max-width: 1280px; margin: 0 auto; }

.novi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.novi-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.novi-title em { font-style: normal; color: var(--accent); }
.novi-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  max-width: 300px;
  text-align: right;
  line-height: 1.75;
}

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

.novi-text-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.novi-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

.novi-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.novi-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.novi-ben-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(232,76,25,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.novi-process-col {
  display: flex;
  flex-direction: column;
}
.novi-step {
  display: flex;
  gap: 20px;
}
.novi-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}
.novi-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,76,25,0.4);
  background: rgba(232,76,25,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.novi-step:hover .novi-step-dot {
  background: rgba(232,76,25,0.14);
  border-color: var(--accent);
}
.novi-step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--accent);
}
.novi-step-line {
  width: 1px;
  flex: 1;
  min-height: 28px;
  background: linear-gradient(to bottom, rgba(232,76,25,0.22), rgba(232,76,25,0.04));
  margin-top: 6px;
}
.novi-step:last-child .novi-step-line { display: none; }
.novi-step-content {
  padding-bottom: 44px;
  padding-top: 8px;
}
.novi-step:last-child .novi-step-content { padding-bottom: 0; }
.novi-step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.novi-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ─── ЗАСТРОЙЩИКИ ─────────────────────────────── */
.partners-section {
  background: var(--bg);
  padding: 80px 64px;
  transition: background 0.35s ease;
}
.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.partners-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.partners-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}
.partners-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
  padding-bottom: 4px;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.partner-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.novi-partners { margin-top: 32px; }
.novi-partners-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(244,242,243,0.25);
  margin-bottom: 12px;
}
.novi-partners .partner-tag {
  color: rgba(244,242,243,0.52);
  border-color: rgba(244,242,243,0.08);
  background: rgba(244,242,243,0.06);
}
.novi-partners .partner-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,76,25,0.1);
}

/* ─── КОМАНДА ─────────────────────────────────── */
.team-section {
  background: var(--bg);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.team-inner { max-width: 1280px; margin: 0 auto; }

.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.team-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
  transition: color 0.35s ease;
}
.team-sub {
  font-size: 15px;
  color: var(--text-2);
  max-width: 300px;
  text-align: right;
  line-height: 1.75;
  transition: color 0.35s ease;
}

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.35s ease;
}
.team-card:hover {
  border-color: rgba(232,76,25,0.2);
  transform: translateY(-4px);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: oklch(from hsl(var(--av-hue, 210) 55% 60%) l c h);
  background: hsl(var(--av-hue, 210), 55%, 55%);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.team-avatar--photo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 24px;
}
.team-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  transition: color 0.35s ease;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.4;
}
.team-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  transition: color 0.35s ease;
}

/* ─── ОТЗЫВЫ ──────────────────────────────────── */
.reviews-section {
  background: var(--bg-dark);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.reviews-inner { max-width: 1280px; margin: 0 auto; }

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.reviews-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.reviews-title em { font-style: normal; color: var(--accent); }
.reviews-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
  text-align: right;
  line-height: 1.75;
}

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

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.review-stars {
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 2px;
}
.review-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
}
.review-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.review-date {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

.reviews-footer {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.reviews-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, gap 0.2s;
}
.reviews-more:hover {
  background: rgba(232,76,25,0.1);
  border-color: rgba(232,76,25,0.35);
  color: #fff;
  gap: 12px;
}

/* ─── CTA ─────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 100px 64px;
  transition: background 0.35s ease;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 28px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,76,25,0.12) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 48px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 440px;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
  justify-items: end;
}
.cta-actions .srv-cta-link {
  width: 100%;
  justify-content: center;
}

/* ─── КОНТАКТЫ ────────────────────────────────── */
.contacts-section {
  background: var(--bg-dark);
  transition: background 0.35s ease;
}
.contacts-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.contacts-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.contacts-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}
.contacts-title em {
  color: var(--accent);
  font-style: normal;
}
.contacts-head-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
  padding-bottom: 6px;
}

.contacts-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cinfo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.cinfo-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,76,25,0.3);
  transform: translateY(-3px);
}
.cinfo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,76,25,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.cinfo-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.cinfo-value {
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  text-decoration: none;
  flex: 1;
}
.cinfo-link:hover { color: var(--accent); }
.cinfo-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.cinfo-action:hover { opacity: 1; }

.footer-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy  { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  order: 1;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.5); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.15); }
.footer-pdn {
  width: 100%;
  font-size: 10px;
  line-height: 1.5;
  color: #ffffff40;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-made {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.3px;
}
.footer-made a {
  color: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-made a:hover { color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════
   АДАПТИВ — ПЛАНШЕТ ≤768px
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-logo { gap: 8px; }
  .nav-logo-img { height: 30px; }
  .nav-logo-name { font-size: 14px; }
  .nav-logo-sub { font-size: 9px; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    color: var(--text);
  }
  .nav-right .nav-phone,
  .nav-right .btn { display: none; }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  #navBurger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #navBurger.is-open span:nth-child(2) { opacity: 0; }
  #navBurger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero { padding: 72px 24px 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0 52px;
  }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 140px; justify-content: center; }
  .hero-badge {
    position: relative;
    left: auto;
    bottom: auto;
    min-width: 0;
    align-self: center;
    margin: 0 auto;
    width: fit-content;
  }
  .hero-card-wrap { padding-bottom: 0; }

  /* ── ОБЩИЙ ПАДДИНГ СЕКЦИЙ ── */
  .stats-section,
  .services-section,
  .calc-section,
  .novi-section,
  .partners-section,
  .team-section,
  .reviews-section { padding: 64px 20px; }
  .contacts-inner { padding: 64px 20px; }
  .partners-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .partners-sub { max-width: 100%; text-align: left; }

  /* ── STATS ── */
  .stats-top { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .stats-title { max-width: 100%; }
  .stats-right-text { max-width: 100%; text-align: left; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* ── SERVICES ── */
  .services-head { grid-template-columns: 1fr; gap: 16px; }
  .services-sub { max-width: 100%; text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-card { padding: 32px 24px; }
  .services-bottom { grid-template-columns: 1fr; }
  .srv-cta { padding: 32px 28px; }

  /* ── CALCULATOR ── */
  .calc-layout { grid-template-columns: 1fr; gap: 32px; }
  .calc-intro { position: static; }

  /* ── НОВОСТРОЙКИ ── */
  .novi-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .novi-sub { max-width: 100%; text-align: left; }
  .novi-body-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* ── КОМАНДА ── */
  .team-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .team-sub { max-width: 100%; text-align: left; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { padding: 28px 20px; }

  /* ── ОТЗЫВЫ ── */
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .reviews-sub { max-width: 100%; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 28px 24px; }

  /* ── CTA ── */
  .cta-section { padding: 64px 24px; }
  .cta-inner {
    padding: 40px 32px;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .cta-actions { grid-template-columns: 1fr; }

  /* ── КОНТАКТЫ ── */
  .contacts-head { grid-template-columns: 1fr; gap: 20px; }
  .contacts-head-sub { max-width: 100%; }
  .contacts-cards { grid-template-columns: 1fr 1fr; }

  /* ── FOOTER ── */
  .footer-bar { padding: 24px; }
}

/* ═══════════════════════════════════════════════
   АДАПТИВ — МОБИЛЬНЫЙ ≤480px
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── NAV ── */
  .nav-burger { display: flex; }
  .nav-logo-img { height: 26px; }
  .nav-logo-sub { display: none; }

  /* ── HERO ── */
  .hero { padding: 72px 16px 0; }
  .hero-inner { padding: 24px 0 40px; }
  .hero-card-wrap { display: none; }
  .scroll-hint { display: none; }

  /* ── ОБЩИЙ ПАДДИНГ СЕКЦИЙ ── */
  .stats-section,
  .services-section,
  .calc-section,
  .novi-section,
  .partners-section,
  .team-section,
  .reviews-section { padding: 44px 16px; }
  .contacts-inner { padding: 44px 16px; }

  /* ── STATS ── */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 28px 20px; }

  /* ── CALCULATOR ── */
  .calculator-card { padding: 24px 20px; border-radius: 18px; }
  .calculator-fields { grid-template-columns: 1fr; gap: 14px; margin-bottom: 20px; }
  .calc-bank-tag img { height: 22px; }
  .calc-banks-track { gap: 16px; }

  /* ── КОМАНДА ── */
  .team-grid { grid-template-columns: 1fr; }

  /* ── КОНТАКТЫ ── */
  .contacts-cards { grid-template-columns: 1fr; }

  /* ── CTA ── */
  .cta-section { padding: 44px 16px; }

  /* ── FOOTER ── */
  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
  .footer-links { flex-direction: column; align-items: center; gap: 8px; }
  .footer-made { margin-left: 0; margin-top: 8px; }
}

/* ─── МОБИЛЬНОЕ МЕНЮ (FULL-SCREEN) ────────────── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: #0d1020;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 48px;
}
.nav-mobile-menu.is-open { display: flex; }

.mob-links {
  list-style: none;
  width: 100%;
  margin-bottom: 48px;
}
.mob-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mob-links li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.mob-links a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.mob-links a:hover,
.mob-links a:active { color: var(--accent); }

.mob-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.mob-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  white-space: nowrap;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mob-cta-link:hover,
.mob-cta-link:active {
  background: #fff;
  border-color: #fff;
  color: #0f1324;
}

/* ─── СКРОЛЛ НАВЕРХ ──────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 90;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 480px) {
  .scroll-top { bottom: 84px; left: 20px; width: 44px; height: 44px; }
}

/* ─── КНОПКА ЗВОНКА ───────────────────────────── */
@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.call-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.call-fab::before,
.call-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  animation: fab-pulse 2.2s ease-out infinite;
}
.call-fab::after {
  animation-delay: 0.9s;
}
.call-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.call-fab svg {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .call-fab { bottom: 84px; right: 20px; width: 52px; height: 52px; }
}
.menu-open .call-fab { opacity: 0; pointer-events: none; }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FAQ-АККОРДЕОН ──────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 120px 64px;
  transition: background 0.35s ease;
}
.faq-inner { max-width: 1280px; margin: 0 auto; }

.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.faq-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.5px;
  transition: color 0.35s ease;
}
.faq-title em { font-style: normal; color: var(--accent); }
.faq-sub {
  font-size: 15px;
  color: var(--text-2);
  max-width: 300px;
  text-align: right;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s, background 0.35s ease;
}
.faq-item.is-open {
  border-color: rgba(232, 76, 25, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.is-open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer {
  padding: 0 28px 24px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.8;
  transition: color 0.35s ease;
}

@media (max-width: 768px) {
  .faq-section { padding: 64px 20px; }
  .faq-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .faq-sub { max-width: 100%; text-align: left; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 20px; }
}
@media (max-width: 480px) {
  .faq-section { padding: 44px 16px; }
  .faq-question { font-size: 14px; gap: 14px; }
  .faq-icon { width: 28px; height: 28px; }
}

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease, border-color 0.35s ease;
}
.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-text {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.4;
  margin: 0;
  transition: color 0.35s ease;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-text a:hover { color: var(--accent-dark); }

.cookie-accept {
  flex-shrink: 0;
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--accent-dark); }

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: translateX(0);
    width: auto;
  }
  .cookie-banner.is-hidden {
    transform: translateX(0) translateY(20px);
  }
}

/* ─── 404 PAGE ───────────────────────────────── */
.not-found {
  min-height: calc(100vh - 72px - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.not-found-inner {
  max-width: 560px;
  text-align: center;
}
.not-found-code {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 20vw, 200px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -4px;
  margin-bottom: 16px;
}
.not-found-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--text);
  margin-bottom: 16px;
}
.not-found-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 32px;
}
.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .not-found { padding: 48px 16px; }
  .not-found-code { font-size: 120px; }
  .not-found-actions .btn { flex: 1 1 140px; justify-content: center; }
}
