/* ============================================================
   DESIGN TOKENS — LIGHT THEME
   ============================================================ */
:root {
  --clr-bg:          #f0f5fc;
  --clr-bg-alt:      #e6edf8;

  --clr-surface:     rgba(255, 255, 255, 0.72);
  --clr-surface-h:   rgba(255, 255, 255, 0.95);
  --clr-border:      rgba(90, 120, 170, 0.13);
  --clr-border-h:    rgba(0, 160, 80, 0.45);

  --clr-accent:      #009e50;
  --clr-accent-dark: #007038;
  --clr-accent-glow: rgba(0, 158, 80, 0.22);

  --clr-text:        #0c1728;
  --clr-text-sec:    #4d5f7c;
  --clr-text-muted:  #8a9ab8;

  --ff-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --dur: 0.3s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-glass: 0 6px 32px rgba(60, 80, 130, 0.1), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-glass-strong: 0 12px 48px rgba(60, 80, 130, 0.14);
  --shadow-glow:  0 0 48px rgba(0, 158, 80, 0.14);
  --shadow-btn:   0 4px 20px rgba(0, 158, 80, 0.38);
  --shadow-btn-h: 0 8px 32px rgba(0, 158, 80, 0.55);
  --shadow-neuro: inset 2px 2px 5px rgba(120, 140, 180, 0.22),
                  inset -1px -1px 4px rgba(255, 255, 255, 0.95);
}

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

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

body {
  font-family: var(--ff-base);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

/* Ambient background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(0, 200, 100, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(80, 130, 255, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-btn-h);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--radius-lg); }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 14px 0;
  background: rgba(240, 245, 252, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.header.scrolled {
  background: rgba(240, 245, 252, 0.97);
  box-shadow: 0 2px 20px rgba(60, 80, 130, 0.1);
  border-color: rgba(0, 158, 80, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
  transition: opacity var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}
.header__logo:hover {
  opacity: 0.82;
  filter: drop-shadow(0 0 10px var(--clr-accent-glow));
}
.header__logo img { height: 40px; width: auto; }

.header__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header__tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header__schedule {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-text);
  font-size: 0.9rem;
  transition: color var(--dur) var(--ease);
}
.header__phone:hover { color: var(--clr-accent); }
.header__phone strong { font-weight: 700; }
.header__phone-icon {
  height: 18px;
  width: auto;
  filter: invert(0.2) sepia(1) saturate(6) hue-rotate(100deg);
  opacity: 0.9;
}
.header__cabinet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  box-shadow: 0 2px 8px rgba(60,80,130,0.07);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
}
.header__cabinet:hover {
  background: #fff;
  border-color: var(--clr-border-h);
  color: var(--clr-accent);
  box-shadow: 0 4px 14px rgba(0,158,80,0.12);
}
.header__cabinet img {
  height: 16px;
  width: auto;
  filter: invert(0.3) sepia(0.5);
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.header__cabinet:hover img {
  filter: invert(0.2) sepia(1) saturate(6) hue-rotate(100deg);
  opacity: 1;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1) translateX(2%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(230, 240, 255, 0.88) 40%, rgba(230, 240, 255, 0.55) 100%),
    linear-gradient(to top,   rgba(230, 240, 255, 0.75) 0%, transparent 55%);
}
.hero__content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero__content { max-width: 660px; }

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 44px;
  background: linear-gradient(145deg, #0c1728 45%, var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__badge {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(0, 158, 80, 0.3);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(60, 80, 130, 0.12),
              0 0 60px rgba(0, 158, 80, 0.12),
              inset 0 1px 0 rgba(255,255,255,0.95);
  animation: pulseBadge 3s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 8px 40px rgba(60,80,130,0.12), 0 0 60px rgba(0,158,80,0.12), inset 0 1px 0 rgba(255,255,255,0.95); }
  50%       { box-shadow: 0 8px 40px rgba(60,80,130,0.18), 0 0 80px rgba(0,158,80,0.22), inset 0 1px 0 rgba(255,255,255,0.95); }
}
.hero__badge-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__badge-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-sec);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ============================================================
   PERKS — 3 ИКОНКИ ПОСЛЕ HERO
   ============================================================ */
.perks {
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

.perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.perks__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 36px;
  border-right: 1px solid var(--clr-border);
  transition: background var(--dur) var(--ease);
}
.perks__item:last-child { border-right: none; }
.perks__item:hover { background: rgba(0, 158, 80, 0.03); }

.perks__icon-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 158, 80, 0.08);
  border: 1px solid rgba(0, 158, 80, 0.18);
  border-radius: var(--radius-sm);
}
.perks__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(0.25) sepia(1) saturate(6) hue-rotate(100deg);
}

.perks__text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-sec);
  line-height: 1.5;
}


/* ============================================================
   FEATURES — ПОЧЕМУ СТОИТ ПОДКЛЮЧИТЬСЯ
   ============================================================ */
.features {
  padding: 100px 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 158, 80, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-border-h);
  box-shadow: var(--shadow-glass-strong), var(--shadow-glow);
}
.feature-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 158, 80, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.feature-card__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 158, 80, 0.32);
  letter-spacing: -0.02em;
}

.feature-card__body { flex: 1; }
.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text);
}
.feature-card__text {
  font-size: 0.92rem;
  color: var(--clr-text-sec);
  line-height: 1.7;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 158, 80, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 80, 130, 0.06);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.faq__item.open {
  border-color: var(--clr-border-h);
  box-shadow: 0 4px 24px rgba(0, 158, 80, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.faq__question:hover { color: var(--clr-accent); }
.faq__item.open .faq__question { color: var(--clr-accent); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--dur) var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after  { width: 2px; height: 10px; }
.faq__item.open .faq__icon {
  background: rgba(0, 158, 80, 0.1);
}
.faq__item.open .faq__icon::after { transform: scaleY(0); opacity: 0; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq__item.open .faq__answer { max-height: 600px; }

.faq__answer-inner {
  padding: 0 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__answer-inner p {
  font-size: 0.93rem;
  color: var(--clr-text-sec);
  line-height: 1.75;
}
.faq__answer-inner a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__answer-inner a:hover { text-decoration: none; }


/* ============================================================
   ЕСЛИ ВЫ УЖЕ ПОДКЛЮЧЕНЫ
   ============================================================ */
.already {
  padding: 100px 0;
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}
.already::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 158, 80, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.already__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.already__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--clr-text);
}
.already__content p {
  font-size: 0.95rem;
  color: var(--clr-text-sec);
  line-height: 1.75;
  margin-bottom: 14px;
}
.already__phone {
  color: var(--clr-accent) !important;
  font-weight: 700;
  transition: opacity var(--dur) var(--ease);
}
.already__phone:hover { opacity: 0.75; }

.already__visual {
  display: flex;
  flex-direction: column;
}
.already__cables {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 260px;
  box-shadow: var(--shadow-glass);
}
.already__cables img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.already__cables:hover img { transform: scale(1.04); }


/* ============================================================
   О КОМПАНИИ
   ============================================================ */
.about {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(230, 240, 255, 0.96) 38%, rgba(230, 240, 255, 0.6) 100%),
    linear-gradient(to top,   rgba(230, 240, 255, 0.8) 0%, transparent 40%);
}
.about__content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about__glass {
  max-width: 620px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  padding: 52px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass-strong),
              inset 0 1px 0 rgba(255,255,255,1);
}
.about__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--clr-text);
}
.about__glass p {
  font-size: 0.93rem;
  color: var(--clr-text-sec);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  background: rgba(0, 158, 80, 0.06);
  border: 1px solid rgba(0, 158, 80, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  overflow: hidden;
}
.about__stat { flex: 1; text-align: center; }
.about__stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.about__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}


/* ============================================================
   ФОРМА ЗАЯВКИ
   ============================================================ */
.form-section {
  padding: 100px 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 158, 80, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.application-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-glass-strong);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-sec);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__field input {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--clr-text);
  font-size: 0.97rem;
  font-family: var(--ff-base);
  outline: none;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-neuro);
}
.form__field input::placeholder { color: var(--clr-text-muted); }
.form__field input:focus {
  border-color: var(--clr-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 158, 80, 0.12);
}

.form__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.form__footer .btn { width: 100%; }
.form__privacy {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-align: center;
}
.form__privacy a {
  color: var(--clr-text-sec);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
.form__privacy a:hover { color: var(--clr-accent); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--clr-border);
  padding: 56px 0 0;
  box-shadow: 0 -2px 16px rgba(60, 80, 130, 0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 56px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}

.footer__logo {
  display: inline-block;
  transition: opacity var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}
.footer__logo:hover {
  opacity: 0.82;
  filter: drop-shadow(0 0 8px var(--clr-accent-glow));
}
.footer__logo img { height: 38px; width: auto; }

.footer__services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.footer__services a {
  font-size: 0.9rem;
  color: var(--clr-text-sec);
  transition: color var(--dur) var(--ease);
}
.footer__services a:hover { color: var(--clr-accent); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer__phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-accent);
  transition: opacity var(--dur) var(--ease);
}
.footer__phone:hover { opacity: 0.75; }
.footer__schedule {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer__bottom {
  padding: 18px 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__bottom-inner a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: color var(--dur) var(--ease);
}
.footer__bottom-inner a:hover { color: var(--clr-accent); }
.footer__copy {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.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.4s; }


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .header__meta { display: none; }
  .header__inner { gap: 20px; }
  .hero__badge { width: 130px; height: 130px; }
  .hero__badge-value { font-size: 2.5rem; }
  .features__grid { grid-template-columns: 1fr; }
  .already__grid { grid-template-columns: 1fr; }
  .already__visual { display: none; }
  .about__glass { padding: 36px; }
  .application-form { padding: 36px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__contacts { align-items: flex-start; }
  .perks__grid { grid-template-columns: 1fr; }
  .perks__item { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .perks__item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section-title { margin-bottom: 40px; }
  .hero__content-wrap { flex-direction: column; align-items: flex-start; }
  .hero__badge { display: none; }
  .features__grid { gap: 14px; }
  .feature-card { flex-direction: column; padding: 28px; }
  .application-form { padding: 28px 22px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { gap: 16px; }
  .footer__copy { margin-left: 0; }
}
