/* ============================
   АЭЮК — Общие стили
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #1D3557;
  --primary-light: #457B9D;
  --accent: #E07A5F;
  --accent-hover: #C4613F;
  --accent-soft: rgba(224, 122, 95, 0.10);
  --bg: #F5F5F0;
  --white: #ffffff;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --border: #D8D8D0;
  --shadow: 0 2px 12px rgba(29, 53, 87, 0.08);
  --shadow-hover: 0 6px 24px rgba(29, 53, 87, 0.14);
  --radius: 6px;
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --primary: #A8DADC;
    --primary-light: #457B9D;
    --accent: #E07A5F;
    --accent-hover: #E8998D;
    --accent-soft: rgba(224, 122, 95, 0.15);
    --bg: #121212;
    --white: #1E1E1E;
    --text: #E8E8E8;
    --text-light: #A0A0A0;
    --border: #333333;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.4);
  }

  .site-header {
    background: #1E1E1E;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }

  .hero,
  .steps-section,
  .cta-form-section {
    background: linear-gradient(135deg, #1D3557 0%, #264773 100%);
  }

  .contact-form {
    background: #2A2A2A;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  }

  .contact-form h3 { color: var(--text); }

  .mobile-nav {
    background: #1E1E1E;
  }

  .situation-card,
  .service-card,
  .card,
  .point-b-card,
  .barrier-item {
    background: #2A2A2A;
    border-color: #333;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: #2A2A2A;
    border-color: #444;
    color: var(--text);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    background: #333;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
  }

  img { opacity: 0.92; }
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================
   SKIP LINK
   ============================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* ============================
   CONTAINER
   ============================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   HEADER
   ============================ */

.site-header {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(29, 53, 87, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-emblem span {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

@media (prefers-color-scheme: dark) {
  .logo-emblem {
    background: var(--accent);
  }
  .logo-emblem span {
    color: #fff;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--bg);
  color: var(--accent);
}

/* Header CTA */

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.header-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.header-phone:hover {
  color: var(--accent);
}

.btn-consult {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-consult:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff;
}

/* Burger */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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); }

/* Mobile nav */

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================
   HERO
   ============================ */

.hero {
  background: linear-gradient(135deg, #1D3557 0%, #264773 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: rgba(224, 122, 95, 0.06);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ============================
   SECTIONS
   ============================ */

section {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.section-head {
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================
   ICON (SVG replacement for emoji)
   ============================ */

.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--accent);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon--lg {
  width: 48px;
  height: 48px;
}

.icon--lg svg {
  width: 28px;
  height: 28px;
}

/* ============================
   CARDS GRID
   ============================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================
   SITUATIONS (Узнаёшь себя?)
   ============================ */

.situations {
  background: var(--white);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.situation-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}

.situation-card:hover {
  border-color: var(--accent);
}

.situation-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.situation-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.situation-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================
   STEPS
   ============================ */

.steps-section {
  background: linear-gradient(135deg, #1D3557 0%, #264773 100%);
  color: #fff;
}

.steps-section .section-label {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}

.steps-section .section-title {
  color: #fff;
}

.steps-section .section-sub {
  color: rgba(255,255,255,0.7);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: background var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.1);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================
   WHY US (merged with Point B)
   ============================ */

.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
}

.why-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.why-num span {
  font-size: 20px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================
   BARRIERS / FAQ
   ============================ */

.barriers {
  background: var(--bg);
}

.barriers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.barrier-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.barrier-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.barrier-q-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--accent);
  font-weight: 800;
}

.barrier-q h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  flex: 1;
  line-height: 1.3;
}

.barrier-a {
  padding: 0 22px 18px 68px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================
   REVIEWS SECTION
   ============================ */

.reviews-section {
  padding: 60px 0;
  background: var(--bg);
}

.reviews-widget {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.reviews-widget iframe {
  width: 100%;
  max-width: 560px;
  height: 800px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

.reviews-link {
  text-align: center;
  margin-top: 20px;
}

.reviews-link a {
  color: var(--accent);
  font-weight: 600;
}

.reviews-link a:hover {
  color: var(--accent-hover);
}

/* ============================
   CTA FORM
   ============================ */

.cta-form-section {
  background: linear-gradient(135deg, #1D3557 0%, #264773 100%);
  color: #fff;
  padding: 70px 0;
}

.cta-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-form-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  text-wrap: balance;
}

.cta-form-text p {
  font-size: 16px;
  opacity: 0.82;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.85;
}

.cta-guarantee::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.25;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
  background: var(--white);
}

/* ============================
   CUSTOM SELECT
   ============================ */

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  display: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-light);
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  user-select: none;
  line-height: 1.4;
}

.custom-select-trigger.has-value {
  color: var(--text);
}

.custom-select-trigger:hover {
  border-color: var(--primary);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
  background: var(--white);
}

.custom-select-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-light);
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(29, 53, 87, 0.12);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-select-option:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.custom-select-option:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.custom-select-option:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.custom-select-option.selected {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.custom-select-option .option-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .custom-select-options {
    background: #2A2A2A;
    border-color: #444;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  .custom-select-trigger {
    background: #2A2A2A;
    border-color: #444;
  }
  .custom-select.open .custom-select-trigger {
    background: #333;
  }
}

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

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ============================
   SERVICES OVERVIEW
   ============================ */

.services-section {
  background: var(--bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 32px;
  line-height: 1;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ============================
   CONTACTS PAGE
   ============================ */

.contacts-hero {
  background: linear-gradient(135deg, #1D3557 0%, #264773 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.contacts-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  text-wrap: balance;
}

.contacts-hero p {
  font-size: 18px;
  opacity: .85;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-card h2 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.25;
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
  background: #1D3557;
  color: rgba(255,255,255,0.85);
  padding: 50px 0 24px;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background: #0D1B2A;
  }
}

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

.footer-brand .logo-name {
  color: #fff;
  font-size: 20px;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.55);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-contact-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-phone-link {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-phone-link:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-schema {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================
   ANIMATIONS
   ============================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }

/* ============================
   BREADCRUMBS
   ============================ */

.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs a {
  color: var(--accent);
}

.breadcrumbs a:hover {
  color: var(--accent-hover);
}

.breadcrumbs span {
  color: var(--border);
}

/* ============================
   SERVICES LIST INLINE
   ============================ */

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.service-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================
   HIGHLIGHT BOX
   ============================ */

.highlight-box {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.highlight-box strong {
  color: var(--primary);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-form-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 22px;
  }

  section {
    padding: 44px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cards-grid,
  .cards-grid-3,
  .situation-grid,
  .steps-grid,
  .why-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-form-inner {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .reviews-widget iframe {
    height: 600px;
  }

  .site-nav a,
  .btn-primary,
  .btn-secondary,
  .btn-consult,
  .form-submit {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section-title {
    font-size: 22px;
  }

  .breadcrumbs-inner {
    flex-wrap: wrap;
    gap: 4px;
  }

  .why-card,
  .service-card,
  .card,
  .step-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tagline {
    display: none;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .container {
    padding: 0 16px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .reviews-widget iframe {
    height: 500px;
  }
}

/* ============================
   ACCESSIBILITY
   ============================ */

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-delay-1,
  .fade-in-delay-2,
  .fade-in-delay-3,
  .fade-in-delay-4 {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
