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

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

:root {
  --bg:        #F0F5FF;
  --bg-2:      #FFFFFF;
  --bg-3:      #E4EDFF;
  --navy:      #0B1F4A;
  --navy-mid:  #1A3A7A;
  --blue:      #1554E8;
  --blue-lt:   #4A8FFF;
  --blue-pale: #C8DCFF;
  --text:      #0B1628;
  --text-2:    #3D5478;
  --border:    #C0D0E8;
  --shadow:    0 4px 24px rgba(11,31,74,0.08);
  --shadow-lg: 0 12px 48px rgba(11,31,74,0.16);
  --radius:    12px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
}

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(240, 245, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}

.logo-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-name .clim { color: var(--blue); }

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--blue); }
.nav a.active::after { transform: scaleX(1); }

.btn-header {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--navy);
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-header:hover { background: var(--blue); transform: translateY(-1px); }

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(21,84,232,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  transform: translateY(-1px);
}

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

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg-2);
  padding-top: 68px;
}

/* Engineering grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--blue-pale) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-pale) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Diagonal tinted panel behind photo */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(155deg, transparent 35%, var(--bg-3) 35%);
}

/* Subtle radial accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(21,84,232,0.07) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 60px;
  padding-bottom: 0;
  min-height: 632px;
}

/* Staggered entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge  { animation: fadeUp 0.55s 0.05s both; }
.hero-text h1 { animation: fadeUp 0.6s 0.15s both; }
.hero-desc   { animation: fadeUp 0.6s 0.25s both; }
.hero-actions { animation: fadeUp 0.6s 0.35s both; }
.hero-stats  { animation: fadeUp 0.6s 0.45s both; }
.hero-photo  { animation: fadeUp 0.7s 0.2s both; }

.hero-text {
  align-self: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-text h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-text h1 .accent { color: var(--blue); }

.hero-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 430px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.hero-photo {
  flex-shrink: 0;
  align-self: end;
  position: relative;
  z-index: 1;
}

.photo-wrap {
  width: 460px;
  position: relative;
}

/* Soft halo behind the cutout figure */
.photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 85%; height: 75%;
  background: radial-gradient(ellipse at 50% 80%, var(--blue-pale) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 56px rgba(11,31,74,0.13));
}

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

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}

.scroll-arrow {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-2);
  animation: bounce 2.2s ease-in-out infinite;
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 480px;
}

.page-hero--sm { padding: 110px 0 44px; }

/* ============================
   SECTION LABEL
   ============================ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-bottom: 10px;
}

.page-hero .section-label { color: var(--blue-lt); }
.why .section-label { color: var(--blue-lt); }

/* ============================
   SERVICES
   ============================ */
.services {
  padding: 96px 0;
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-2);
  font-size: 15px;
}

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

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
  transition: background 0.2s;
}

.service-card:hover .service-icon { background: var(--blue-pale); }
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.2px;
}

/* ============================
   WHY / ADVANTAGES
   ============================ */
.why {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.why .container { position: relative; }

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

.why-text h2 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.why-list {
  list-style: none;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

.why-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.check {
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: white;
  margin-top: 1px;
}

.why-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background 0.2s, border-color 0.2s;
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(74,143,255,0.3);
}

.why-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--blue-lt);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  line-height: 1;
}

.why-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-weight: 500;
}

/* ============================
   CTA
   ============================ */
.cta {
  padding: 96px 0;
  background: var(--bg-3);
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
}

.cta .container { position: relative; }

.cta h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-hours {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-brand .logo-name { color: white; font-size: 15px; }
.footer-brand .clim { color: var(--blue-lt); }
.footer-brand p { font-size: 13px; margin-top: 6px; color: rgba(255,255,255,0.4); line-height: 1.5; }

.footer-links, .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-contacts a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-contacts a:hover { color: white; }

.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-weight: 500;
}

/* ============================
   PRICES PAGE
   ============================ */
.prices-section {
  padding: 64px 0 96px;
  background: var(--bg);
}

.price-block { margin-bottom: 64px; }

.price-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.price-note {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
  max-width: 640px;
  line-height: 1.65;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
}

.price-table thead {
  background: var(--navy);
  color: white;
}

.price-table th {
  padding: 14px 20px;
  font-weight: 700;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Manrope', sans-serif;
}

.price-table tbody tr:nth-child(even) { background: var(--bg-3); }
.price-table tbody tr { background: white; transition: background 0.15s; }
.price-table tbody tr:hover { background: var(--bg); }

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.price-table tr:last-child td { border-bottom: none; }

.price-val {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}

.hint {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 400;
}

.price-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.extra-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}

.extra-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.extra-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.extra-card p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.65;
}

.price-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.price-cta h2, .price-cta p, .price-cta a { position: relative; }

.price-cta h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.price-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 28px;
}

.price-cta .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}

.price-cta .btn-primary:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
}

/* ============================
   CONTACTS PAGE
   ============================ */
.contacts-section {
  padding: 64px 0 96px;
  background: var(--bg);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.contacts-info h2, .contacts-form-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 42px; height: 42px;
  background: var(--bg-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-2);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  font-family: 'Manrope', sans-serif;
}

.contact-hint {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 3px;
  font-weight: 500;
}

.contact-messengers {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.messenger-btn svg { width: 18px; height: 18px; }
.messenger-wa { background: #22C55E; color: white; }
.messenger-wa:hover { background: #16a34a; transform: translateY(-1px); }
.messenger-tg { background: #0088CC; color: white; }
.messenger-tg:hover { background: #0077bb; transform: translateY(-1px); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,84,232,0.1);
}

.form-group textarea { resize: vertical; }

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

.requisites {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.requisites h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

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

.req-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-2);
  margin-bottom: 4px;
  font-weight: 700;
}

.req-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
  .photo-wrap { width: 380px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-numbers { max-width: 480px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .price-extras { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .btn-header { display: none; }
  .burger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .price-extras { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .why-numbers { grid-template-columns: 1fr 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; }
  .contact-messengers { flex-direction: column; }
  .req-grid { grid-template-columns: 1fr; }
  .price-cta { padding: 36px 24px; }
}

/* Mobile price table */
@media (max-width: 640px) {
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: block;
    border-bottom: 2px solid var(--border);
    padding: 12px 0;
  }
  .price-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: none;
    font-size: 13px;
  }
  .price-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-2);
    font-size: 12px;
    flex: 1;
  }
  .price-val { font-size: 12px; }
}
