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

:root {
  --dark:    #141C26;
  --dark2:   #1E2B3A;
  --orange:  #F47B1F;
  --orange2: #C4600A;
  --orange-light: #FEF0E3;
  --yellow:  #F5C842;
  --white:   #ffffff;
  --bg:      #F5F7F5;
  --text:    #141C26;
  --muted:   #5A6B7A;
  --border:  #D8E4D8;
  --radius:  8px;
  --shadow:  0 6px 32px rgba(244,123,31,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.65; }
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; line-height: 1.15; letter-spacing: 0.5px; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange2); }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
header { background: var(--white); position: sticky; box-shadow: 0 2px 16px rgba(0,0,0,0.08); top: 0; z-index: 100; border-bottom: 3px solid var(--orange); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

/* ── ЛОГОТИП ── */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-wrap { display: flex; flex-direction: column; gap: 3px; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.logo-sk { font-size: 16px; font-weight: 600; vertical-align: middle; letter-spacing: 1px; }
.logo-num { color: var(--orange2); }
.logo-stripes { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.logo-stripe {
  height: 3px;
  background: var(--orange);
  border-radius: 1px;
  transform: skewX(-20deg);
  transform-origin: left center;
}
.logo-stripe:first-child { width: 100%; }
.logo-stripe:last-child  { width: 75%; opacity: 0.6; }
nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
nav a { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500; color: var(--text); padding: 6px 12px; border-radius: 4px; letter-spacing: 0.5px; transition: color 0.2s, background 0.2s; }
nav a:hover, nav a.active { color: var(--orange); background: var(--orange-light); }
.header-cta { background: var(--orange); color: white; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: var(--radius); letter-spacing: 0.5px; white-space: nowrap; transition: background 0.2s; }
.header-cta:hover { background: var(--orange2); color: white; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
.hero-wrap { background: var(--dark); }
.hero { background: var(--dark); color: white; padding: 0; min-height: 540px; display: flex; align-items: stretch; position: relative; overflow: hidden; max-width: 1600px; margin: 0 auto; }
.hero-left { flex: 1; padding: 90px 60px 90px 80px; display: flex; flex-direction: column; justify-content: center; max-width: 680px; position: relative; z-index: 2; }
.hero-left::after { content: ''; position: absolute; right: -60px; top: 0; bottom: 0; width: 120px; background: var(--dark); clip-path: polygon(0 0, 0% 100%, 100% 100%); z-index: 1; }
.hero-right { flex: 0 0 52%; min-width: 360px; background: #0f0f0f; clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%); display: flex; align-items: center; justify-content: center; font-size: 120px; position: relative; }
.hero-right::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.5) 100%), url('img/fon.webp'); background-size: cover; background-position: center; background-color: #0f0f0f; }
.hero-right span { position: relative; z-index: 1; font-size: 160px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(244,123,31,0.5)); }
.hero-eyebrow { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; margin-bottom: 22px; text-transform: uppercase; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 440px; margin-bottom: 38px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s; border: none; text-align: center; text-transform: uppercase; }
.btn-green { background: var(--orange); color: white; }
.btn-green:hover { background: var(--orange2); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,31,0.3); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e0b430; color: var(--dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark2); color: white; transform: translateY(-2px); }

/* ── STATS BAR ── */
.stats-bar { background: #111; border-top: 3px solid var(--orange); border-bottom: 3px solid var(--orange); padding: 28px 28px; }
.stats-bar-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-bar-5col { grid-template-columns: repeat(5, 1fr); }
.stat-b { text-align: center; border-right: 1px solid rgba(255,255,255,0.2); padding: 8px 20px; }
.stat-b:last-child { border-right: none; }
.stat-b .num { font-family: 'Oswald', sans-serif; font-size: 40px; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-b .lbl { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 80px 28px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-tag { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 3.5vw, 46px); font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.section-title em { color: var(--orange); font-style: normal; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 540px; margin-bottom: 52px; }

/* ── SERVICES GRID V2 ── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Карточка */
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  position: relative;
}
/* Затемнение остальных при наведении на грид */
.srv-grid:hover .srv-card { opacity: 0.42; }
.srv-grid:hover .srv-card:hover {
  opacity: 1;
  transform: translateY(-7px);
  box-shadow: 0 18px 52px rgba(244,123,31,0.18);
}

/* Первая карточка — широкая */
.srv-card--featured { grid-column: span 2; }

/* Верхняя тёмная зона — под 3D модель */
.srv-card-top {
  background: var(--dark);
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.srv-card--featured .srv-card-top { height: 168px; }

/* Диагональный оранжевый акцент */
.srv-card-top::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 70px; height: 70px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.35;
  transition: opacity 0.28s;
}
.srv-card:hover .srv-card-top::before { opacity: 0.65; }

/* Полупрозрачный паттерн-фон в dark-зоне */
.srv-card-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 12px
  );
}

/* Иконка / 3D модель */
.srv-card-emoji {
  font-size: 50px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
  line-height: 1;
}
.srv-card--featured .srv-card-emoji { font-size: 68px; }
.srv-card:hover .srv-card-emoji { transform: scale(1.14) rotate(-4deg); }

/* Изображение вместо эмодзи (для будущих 3D моделей) */
.srv-card-img {
  max-height: 90px;
  max-width: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.srv-card--featured .srv-card-img { max-height: 140px; }
.srv-card:hover .srv-card-img { transform: scale(1.08) translateY(-4px); }

/* Тело карточки */
.srv-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-left: 3px solid transparent;
  transition: border-color 0.22s;
}
.srv-card:hover .srv-card-body { border-left-color: var(--orange); }

.srv-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1.2;
}
.srv-card--featured h3 { font-size: 22px; }

.srv-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.srv-card--featured .srv-card-body p { font-size: 14px; }

.srv-link {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.srv-arr { display: inline-block; transition: transform 0.2s ease; }
.srv-card:hover .srv-arr { transform: translateX(6px); }

/* ── SPLIT SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 0; overflow: hidden; }
.split-dark { background: var(--dark); color: white; padding: 60px 56px; }
.split-light { background: var(--bg); padding: 60px 56px; }
.split-dark h2 { color: white; margin-bottom: 20px; }
.split-dark p { color: rgba(255,255,255,0.72); margin-bottom: 14px; line-height: 1.75; }
.split-dark .btn-green { margin-top: 20px; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.check-list li::before { content: ''; width: 20px; height: 20px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; margin-top: 2px; }

/* ── WHY GRID ── */
.why-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 32px 28px; border-radius: 0; border: 1px solid var(--border); }
.why-card:nth-child(odd) { background: var(--dark); color: white; border-color: var(--dark); }
.why-card:nth-child(odd) p { color: rgba(255,255,255,0.7); }
.why-card:nth-child(odd) h4 { color: var(--yellow); }
.why-card .w-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); }

/* ── CTA ── */
.cta-strip { background: var(--dark); padding: 70px 28px; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--yellow); }
.cta-strip-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(24px, 3vw, 42px); color: white; text-transform: uppercase; max-width: 560px; }
.cta-strip h2 em { color: var(--yellow); font-style: normal; }
.cta-strip p { color: rgba(255,255,255,0.65); margin-top: 10px; font-size: 15px; }

/* ── СТРАНИЦА УСЛУГИ: ПОЧЕМУ МЫ ── */
.svc-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.svc-why-card { background: var(--bg); border-left: 4px solid var(--orange); padding: 24px 22px; }
.svc-why-icon { font-size: 32px; margin-bottom: 12px; display: block; width: 48px; height: 48px; object-fit: contain; }
.svc-stage-icon { font-size: 32px; margin-bottom: 12px; }
.svc-stage-icon img { width: 44px; height: 44px; object-fit: contain; display: block; }
.svc-why-card h4 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.svc-why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── СТРАНИЦА УСЛУГИ: CTA-БАННЕР В СЕРЕДИНЕ ── */
.svc-cta-mid { background: var(--dark); padding: 0; }
.svc-cta-mid-inner { max-width: 1240px; margin: 0 auto; padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.svc-cta-mid-inner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(244,123,31,0.09) 1.5px, transparent 1.5px); background-size: 24px 24px; pointer-events: none; }
.svc-cta-mid-text { position: relative; z-index: 1; }
.svc-cta-mid-text h2 { font-size: clamp(20px, 2.5vw, 30px); color: white; margin-bottom: 8px; }
.svc-cta-mid-text h2 em { color: var(--yellow); font-style: normal; }
.svc-cta-mid-text p { color: rgba(255,255,255,0.68); font-size: 15px; }
.svc-cta-mid .btn { position: relative; z-index: 1; flex-shrink: 0; white-space: nowrap; }

/* ── СТРАНИЦА УСЛУГИ: FAQ ── */
.faq-section { margin-top: 52px; }
.faq-section > h2 { font-size: 24px; margin-bottom: 24px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover, .faq-q.open { color: var(--orange); }
.faq-arrow { font-size: 20px; color: var(--orange); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding-bottom 0.25s; }
.faq-a.open { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: 14.5px; color: var(--muted); line-height: 1.78; }

/* ── СТРАНИЦА УСЛУГИ: ПОХОЖИЕ УСЛУГИ ── */
.svc-related { margin-top: 52px; padding-top: 40px; border-top: 2px solid var(--border); }
.svc-related > h2 { font-size: 22px; margin-bottom: 20px; }
.svc-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-rel-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 20px 18px; display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.svc-rel-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(244,123,31,0.1); }
.svc-rel-icon { font-size: 34px; flex-shrink: 0; width: 48px; height: 48px; object-fit: contain; display: block; }
.svc-rel-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 3px; }
.svc-rel-sub { font-size: 12px; color: var(--muted); display: block; }

/* ── PORTFOLIO ── */
.port-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.port-item { border-radius: 0; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted); font-size: 13px; }
.port-item .pi { font-size: 38px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); color: white; padding: 0; border-bottom: 4px solid var(--orange); overflow: hidden; }
.page-hero-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; min-height: 260px; }
.page-hero-text { padding: 52px 60px 52px 0; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.breadcrumb { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.38); }
.breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 { font-size: clamp(28px, 3.5vw, 50px); text-transform: uppercase; font-weight: 700; margin-bottom: 10px; line-height: 1.1; }
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero-desc { font-size: 15px; color: rgba(255,255,255,0.62); max-width: 480px; line-height: 1.65; margin-bottom: 22px; }
.page-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ph-chip { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; }
.ph-chip-icon { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; font-size: 14px; }

/* Hero правая панель */
.page-hero-vis { background: #0d0d0d; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%); }
.page-hero-vis::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(244,123,31,0.10) 1.5px, transparent 1.5px); background-size: 22px 22px; pointer-events: none; }
.ph-big-icon { position: relative; z-index: 1; margin-bottom: 16px; }
.ph-big-icon img { width: 170px; height: 170px; object-fit: contain; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25)); display: block; }
.ph-stats { display: flex; gap: 20px; position: relative; z-index: 1; }
.ph-stat { text-align: center; }
.ph-stat-num { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
.ph-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SERVICE PAGE ── */
.svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.svc-layout p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

/* ── КОНЦЕПТ Г: иконочный список + мини-карточки фактов ── */
.svc-section-title { font-size: 22px; font-weight: 700; margin-bottom: 18px; color: var(--text); }
.svc-work-list { border: 1px solid var(--border); overflow: hidden; }
.svc-work-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--white); transition: background 0.15s; }
.svc-work-row:last-child { border-bottom: none; }
.svc-work-row:hover { background: var(--orange-light); }
.svc-work-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.svc-work-text { font-size: 14px; color: var(--text); line-height: 1.4; }
.svc-facts-sidebar { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 90px; }
.svc-fact-mini { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--orange); padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.svc-fact-mini-icon { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.svc-fact-mini-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-family: 'Oswald', sans-serif; margin-bottom: 3px; }
.svc-fact-mini-val { font-size: 15px; font-weight: 700; color: var(--text); font-family: 'Oswald', sans-serif; }
.svc-facts-btn { display: block; text-align: center; margin-top: 4px; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; border-radius: 10px; overflow: hidden; }
.price-table th { background: var(--dark); color: white; padding: 14px 18px; text-align: left; font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 0.5px; }
.price-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.price-table tr:hover td { background: var(--orange-light); }
.price-table td:last-child { font-weight: 700; color: var(--orange); white-space: nowrap; }

/* ── INFO BOX ── */
.info-box { background: var(--orange-light); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--text); }

/* ── LANDSCAPE SPECIAL ── */
.land-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.land-card { border-radius: 0; overflow: hidden; border: 1px solid var(--border); }
.land-card-header { background: var(--orange); padding: 24px; font-family: 'Oswald', sans-serif; font-size: 20px; color: white; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.land-card-body { padding: 20px; }
.land-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.land-card-body ul li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.land-card-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Oswald', sans-serif; }
.form-group input, .form-group textarea, .form-group select { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text); outline: none; transition: border 0.2s; background: white; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 28px 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 22px; color: white; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand span { color: var(--yellow); }
.footer-desc { font-size: 13px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-phone { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--yellow) !important; display: block; margin-bottom: 10px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-contacts a { color: rgba(255,255,255,0.65); }
.footer-contacts a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
.footer-orange-line { width: 100%; height: 3px; background: var(--orange); margin-bottom: 0; }

/* ── BTN ORANGE ── */
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange2); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,31,0.3); }

/* ── СТРАНИЦА УСЛУГ — ФАКТЫ И ЭТАПЫ ── */
.svc-facts-card {
  background: var(--dark);
  border-radius: 0;
  padding: 28px;
  color: white;
  position: sticky;
  top: 90px;
}
.svc-facts-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.svc-facts-list { display: flex; flex-direction: column; gap: 14px; }
.svc-fact { display: flex; align-items: center; gap: 14px; }
.svc-fact-icon { font-size: 24px; flex-shrink: 0; width: 36px; text-align: center; }
.svc-fact-label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-family: 'Oswald', sans-serif; }
.svc-fact-val { display: block; font-size: 16px; font-weight: 600; color: var(--yellow); }

.svc-stages { margin-top: 48px; }
.svc-stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: stage;
}
.svc-stage-card {
  background: var(--bg);
  border-radius: 0;
  padding: 24px 20px;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-stage-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(244,123,31,0.12); }
.svc-stage-icon { font-size: 32px; margin-bottom: 12px; }
.svc-stage-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.svc-stage-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr !important; }
  .svc-facts-card { position: static; }
  .svc-stages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .svc-stages-grid { grid-template-columns: 1fr; }
}

/* ── КАК МЫ РАБОТАЕМ V2 ── */
.steps-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0 16px;
}
.steps-v2-line {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--orange) 0, var(--orange) 10px,
    transparent 10px, transparent 22px
  );
  z-index: 0;
  pointer-events: none;
}
.step-v2 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px 16px;
}
.step-v2-num {
  font-family: 'Oswald', sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(244,123,31,0.055);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.step-v2-circle {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--bg), 0 4px 24px rgba(244,123,31,0.14);
  transition: background 0.25s, transform 0.22s;
}
.step-v2-circle img { width: 44px; height: 44px; object-fit: contain; transition: filter 0.25s; }
.step-v2:hover .step-v2-circle {
  background: var(--orange);
  transform: scale(1.1);
}
.step-v2:hover .step-v2-circle img { filter: brightness(0) invert(1); }
.step-v2-badge {
  display: inline-block;
  background: rgba(244,123,31,0.09);
  color: var(--orange);
  border: 1px solid rgba(244,123,31,0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.step-v2 h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  color: var(--text);
}
.step-v2 p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ── DIFFER CHIPS (split-dark) ── */
.differ-chips { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.differ-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 14px 18px;
  transition: background 0.2s;
}
.differ-chip:hover { background: rgba(255,255,255,0.1); }
.dc-icon { font-size: 24px; flex-shrink: 0; }
.dc-body { display: flex; flex-direction: column; gap: 2px; }
.dc-title { font-size: 15px; font-weight: 700; color: white; font-family: 'Oswald', sans-serif; }
.dc-sub { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.45; }

/* ── INCLUDE LIST (split-light) ── */
.include-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.include-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.include-list li:last-child { border-bottom: none; }
.il-num {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--dark);
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── ОТЗЫВЫ ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: 0;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(244,123,31,0.12);
}
.review-stars { color: var(--orange); font-size: 18px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.75; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px;
  color: white; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 15px; color: var(--text); }
.review-author span { font-size: 12px; color: var(--muted); }

/* ── ОТЗЫВЫ V2 (светлый фон) ── */
.reviews-dark-section { background: var(--bg); padding: 80px 0; }
.reviews-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.review-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-v2:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.review-v2--featured {
  background: var(--white);
  border-color: var(--orange);
  border-width: 2px;
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(244,123,31,0.14);
}
.review-v2--featured:hover { transform: translateY(-14px); }
.rv2-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 140px;
  line-height: 0.75;
  color: var(--orange);
  opacity: 0.08;
  position: absolute;
  top: 12px; left: 16px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.rv2-stars { color: var(--orange); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; position: relative; z-index: 1; }
.rv2-text { color: var(--muted); font-size: 14.5px; line-height: 1.8; margin-bottom: 28px; position: relative; z-index: 1; font-style: italic; }
.rv2-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; border-top: 1px solid var(--border); padding-top: 20px; }
.rv2-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.rv2-name { font-size: 15px; font-weight: 700; color: var(--text); }
.rv2-city { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── ПОРТФОЛИО V2 ── */
.port-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.port-v2-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.port-v2-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pv2-top {
  height: 200px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pv2-top::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(244,123,31,0.09) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.pv2-num-bg {
  position: absolute;
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(244,123,31,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pv2-icon { font-size: 64px; position: relative; z-index: 2; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6)); }
.pv2-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange); color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 11px;
  z-index: 3;
}
.pv2-body { padding: 24px 24px 28px; }
.pv2-body h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--text); }
.pv2-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.pv2-stat { display: flex; align-items: baseline; gap: 6px; }
.pv2-count { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: var(--orange); }
.pv2-stat { font-size: 14px; color: var(--muted); }

/* ── DIVIDER: dark → bg ── */
.divider--dark-bg { background: var(--bg); }
.divider--dark-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* ── ПЛАВАЮЩАЯ КНОПКА ЗВОНКА ── */
.float-call {
  display: none;
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 20px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(244,123,31,0.5);
  text-decoration: none;
  animation: floatPulse 2s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s;
}
.float-call:hover { background: var(--orange2); transform: scale(1.1); color: white; }

/* ── КНОПКА НАВЕРХ ── */
.back-to-top {
  display: none;
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: 20px;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--dark);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 20px;
  color: white;
  cursor: pointer;
  border: none;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.back-to-top.visible { display: flex; opacity: 1; }
.back-to-top:hover { background: var(--orange); }

/* ── ПРОГРЕСС СКРОЛЛА ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── TYPING CURSOR ── */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: var(--yellow);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 1px;
  animation: blink-cursor 0.85s step-end infinite;
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
#typing-word { transition: opacity 0.25s ease; }

/* ── HERO PHONE LINE ── */
.hero-phone-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-phone-link {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, transform 0.2s;
}
.hero-phone-link:hover { color: white; transform: translateY(-1px); }
.hero-phone-icon { font-size: 18px; }
.hero-phone-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── HERO TRUST STRIP ── */
.hero-trust {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
}
.hero-trust-item + .hero-trust-item {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.hti-icon { font-size: 14px; }

/* ── HERO FLOATING BADGES ── */
.hero-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  pointer-events: none;
  user-select: none;
}
.hero-badge--rating {
  top: 38px;
  right: 36px;
  animation: badge-float-a 4s ease-in-out infinite;
}
.hero-badge--objects {
  bottom: 44px;
  right: 36px;
  animation: badge-float-b 4s ease-in-out infinite;
  animation-delay: 1.4s;
}
.hero-badge--free {
  bottom: 130px;
  right: 200px;
  animation: badge-float-a 4s ease-in-out infinite;
  animation-delay: 2.8s;
}
@keyframes badge-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes badge-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
.hb-icon { font-size: 24px; line-height: 1; }
.hb-text { display: flex; flex-direction: column; line-height: 1.2; }
.hb-num  { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; color: var(--dark); }
.hb-lbl  { font-size: 11px; color: var(--muted); letter-spacing: 0.3px; margin-top: 1px; }
.hb-accent { color: var(--orange); }

/* ── WEATHER WIDGET EXTENDED (stat bar) ── */
.w-stat-main  { display: flex; align-items: center; gap: 6px; justify-content: center; margin-bottom: 2px; }
.w-stat-icon  { font-size: 28px; line-height: 1; }
.w-stat-temp  { font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 700; color: var(--yellow); line-height: 1; }
.w-stat-desc  { font-size: 12px; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.w-stat-meta  { display: flex; gap: 12px; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.w-stat-feels { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── ПУЛЬС АНИМАЦИЯ ── */
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(244,123,31,0.5); }
  50%       { box-shadow: 0 4px 36px rgba(244,123,31,0.85); transform: scale(1.06); }
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(245,200,66,0); }
}
.btn-yellow { animation: btnPulse 2.5s ease-in-out infinite; }

/* ── АДАПТАЦИЯ НОВЫХ БЛОКОВ ── */
@media (max-width: 900px) {
  .steps-v2 { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .steps-v2-line { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-v2 { grid-template-columns: 1fr; }
  .review-v2--featured { transform: none; }
  .port-v2 { grid-template-columns: 1fr 1fr; }
  .svc-why { grid-template-columns: 1fr; }
  .svc-related-grid { grid-template-columns: 1fr; }
  .svc-cta-mid-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .steps-v2 { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .port-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .float-call { display: flex; }
}

/* ════════════════════════════════════════
   RESPONSIVE — АДАПТИВНОСТЬ
   320px   — мелкие телефоны
   480px   — телефоны (landscape)
   768px   — планшеты
   1024px  — мелкие ноутбуки
   1440px+ — большие экраны (FHD, 2K, 4K)
════════════════════════════════════════ */

/* ── Большие экраны: FHD / 2K / 4K ── */
@media (min-width: 1440px) {
  .header-inner,
  .section-inner,
  .stats-bar-inner,
  .cta-strip-inner,
  .footer-inner,
  .page-hero-inner {
    max-width: 1360px;
  }
  body { font-size: 17px; }
  .hero-left { padding: 100px 80px 100px 100px; max-width: 760px; }
  .hero h1 { font-size: 72px; }
  .stat-b .num { font-size: 48px; }
}

@media (min-width: 1920px) {
  .header-inner,
  .section-inner,
  .stats-bar-inner,
  .cta-strip-inner,
  .footer-inner,
  .page-hero-inner {
    max-width: 1600px;
  }
  body { font-size: 18px; }
  section { padding: 100px 40px; }
  .hero h1 { font-size: 80px; }
  .hero-right { flex: 0 0 500px; font-size: 150px; }
  .stat-b .num { font-size: 56px; }
  .why-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .land-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

@media (min-width: 2560px) {
  .header-inner,
  .section-inner,
  .stats-bar-inner,
  .cta-strip-inner,
  .footer-inner,
  .page-hero-inner {
    max-width: 1920px;
  }
  body { font-size: 20px; }
  section { padding: 120px 60px; }
  .hero h1 { font-size: 96px; }
  .hero-right { flex: 0 0 580px; font-size: 180px; }
  nav a { font-size: 16px; padding: 8px 16px; }
  .header-inner { height: 80px; }
  .stat-b .num { font-size: 64px; }
  .srv-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
  .port-grid { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
}

/* ── Ноутбуки / маленький десктоп ── */
@media (max-width: 1024px) {
  .hero-right { flex: 0 0 260px; font-size: 90px; }
  .split { grid-template-columns: 1fr; }
  .split-dark, .split-light { padding: 48px 40px; }
  .why-grid-v2 { grid-template-columns: 1fr 1fr; }
  .land-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Услуги: 3 колонки на ноутбуке */
  .srv-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .srv-card--featured { grid-column: span 2; }
}

/* ── Планшеты ── */
@media (max-width: 768px) {
  section { padding: 60px 20px; }

  /* Шапка */
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 200;
  }
  nav.open { display: flex; }
  .burger { display: flex; }
  .header-cta { display: none; }

  /* Герой */
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { padding: 60px 28px; max-width: 100%; }
  .hero-left::after { display: none; }
  .hero-right {
    flex: none;
    width: 100%;
    height: 200px;
    clip-path: none;
    font-size: 90px;
  }
  .hero-badge { display: none; }
  /* Трастовая строка — столбиком, без разделителей */
  .hero-trust { flex-direction: column; gap: 6px; margin-bottom: 22px; }
  .hero-trust-item + .hero-trust-item { padding-left: 0; border-left: none; }
  .hero-phone-link { font-size: 18px; }
  .hero-phone-line { margin-top: 16px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 12px 24px; font-size: 14px; }

  /* Статистика */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-b {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 14px;
  }
  .stat-b:nth-child(even) { border-right: none; }
  .stat-b .num { font-size: 38px; }
  .stat-b .lbl { font-size: 13px; }
  /* Погода — на всю ширину, чтоб текст не резался */
  .stat-b.weather-widget {
    grid-column: 1 / -1;
    border-bottom: none;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
  }
  .w-stat-temp { font-size: 30px; }
  .w-stat-icon { font-size: 24px; }

  /* Сетки */
  .why-grid-v2 { grid-template-columns: 1fr; }
  .land-grid { grid-template-columns: 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-dark, .split-light { padding: 40px 28px; }
  /* Услуги: 2 колонки на планшете, первая карточка широкая */
  .srv-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .srv-card--featured { grid-column: span 2; }
  .srv-card--featured .srv-card-top { height: 130px; }
  .srv-card-top { height: 90px; }
  .srv-card--featured .srv-card-emoji { font-size: 54px; }
  .srv-card-emoji { font-size: 40px; }
  /* Отключаем fade-эффект на тач-устройствах */
  .srv-grid:hover .srv-card { opacity: 1; }
  .srv-grid:hover .srv-card:hover { transform: none; box-shadow: none; }

  /* CTA полоса */
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-strip-inner .btn { width: 100%; text-align: center; }

  /* Страница услуги */
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-text { padding: 40px 20px 36px; }
  .page-hero-vis { display: none; }

  /* Форма */
  .form-grid { grid-template-columns: 1fr; }

  /* Футер */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-phone { font-size: 18px; }
}

/* ── Телефоны ── */
@media (max-width: 480px) {
  section { padding: 48px 16px; }

  /* Шапка */
  .header-inner { padding: 0 16px; height: 60px; }
  .logo-text { font-size: 20px; }
  .logo-sk { font-size: 13px; }
  nav { top: 60px; }

  /* Герой */
  .hero-left { padding: 48px 16px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero p { font-size: 14px; }
  .hero-right { height: 260px; font-size: 70px; padding-top: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-trust { margin-bottom: 18px; }
  .hero-trust-item { font-size: 12px; }
  .hero-phone-link { font-size: 17px; }
  .hero-phone-note { font-size: 11px; }

  /* Статистика — 2 ряда, крупнее */
  .stats-bar { padding: 20px 16px; }
  .stats-bar-inner,
  .stats-bar-5col { grid-template-columns: 1fr 1fr !important; gap: 4px; }
  .stat-b { padding: 16px 12px; }
  .stat-b .num { font-size: 32px; }
  .stat-b .lbl { font-size: 11px; margin-top: 4px; white-space: nowrap; }
  /* Погода — на всю ширину, крупнее */
  .stat-b.weather-widget { padding: 18px 20px; }
  .w-stat-temp { font-size: 36px; }
  .w-stat-icon { font-size: 30px; }
  .w-stat-desc { font-size: 13px; margin-bottom: 6px; }
  .w-stat-meta { font-size: 13px; gap: 16px; }
  .w-stat-feels { font-size: 12px; }

  /* Заголовки секций */
  .section-title { font-size: clamp(22px, 7vw, 32px); }

  /* Карточки */
  .srv-card-top { height: 80px; }
  .srv-card--featured .srv-card-top { height: 110px; }
  .srv-card-emoji { font-size: 34px; }
  .srv-card--featured .srv-card-emoji { font-size: 46px; }
  .srv-card-body { padding: 14px 14px 16px; gap: 7px; }
  .srv-card h3 { font-size: 14px; }
  .srv-card--featured h3 { font-size: 17px; }
  .srv-card-body p { font-size: 12px; }
  .srv-link { font-size: 11px; }
  .why-card { padding: 24px 20px; }

  /* Страница услуги */
  .page-hero { padding: 36px 16px; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 36px); }

  /* Контакты */
  .contacts-layout { grid-template-columns: 1fr; }
  .c-val .big { font-size: 20px; }

  /* CTA */
  .cta-strip { padding: 48px 16px; }

  /* Кнопки */
  .btn { padding: 12px 20px; font-size: 14px; }

  /* Футер */
  footer { padding: 48px 16px 24px; }
  .footer-brand { font-size: 18px; }
  .footer-phone { font-size: 16px; }
}

/* ── WATERMARK TEXT ── */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.04;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: 12px;
  z-index: 0;
  line-height: 1;
}
.section-has-watermark { position: relative; overflow: hidden; }
.section-has-watermark .section-inner { position: relative; z-index: 1; }

/* ── ДИАГОНАЛЬНЫЕ РАЗДЕЛИТЕЛИ ── */
.divider {
  height: 56px;
  position: relative;
  overflow: hidden;
  margin: -1px 0;
  z-index: 2;
  pointer-events: none;
}
/* тёмный кирпич → белый */
.divider--brick-white { background: var(--white); }
.divider--brick-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: #2B1200;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* тёмный → белый (справа) */
.divider--dark-white { background: var(--white); }
.divider--dark-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
/* оранжевый → серый */
.divider--orange-bg { background: var(--bg); }
.divider--orange-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ── SCROLL REVEAL ─�
/* ── БЕГУЩАЯ СТРОКА ─────────────────────────────────────────────── */
.marquee-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  border-top: 2px solid rgba(0,0,0,0.08);
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  flex-shrink: 0;
}
.marquee-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0); /* тёмные иконки на оранжевом */
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── ЛОГОТИП ────────────────────────────────────────────────────── */
.header-logo {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
  background: white;
  padding: 3px 6px;
}
.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: white;
  padding: 6px 10px;
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .header-logo { height: 38px; }
}

/* ── КОМБИНИРОВАННЫЙ ЛОГОТИП ────────────────────────────────────── */
.logo-combined {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .logo-divider { display: none; }
  .logo-wrap { display: none; }
}
