
/* ===========================
   S-INSTALL — премиум светлая тема
   Самодостаточный CSS, без внешних файлов
   =========================== */

:root {
  --bg:        #f7f5f1;
  --bg-soft:   #ffffff;
  --bg-card:   #ffffff;
  --bg-elev:   #f1ede5;
  --line:      #e2dccf;
  --line-soft: #ece7dc;
  --text:      #1a1a1f;
  --text-mut:  #5c5a55;
  --text-dim:  #9a958a;
  --accent:    #a8814a;
  --accent-2:  #8a6738;
  --accent-soft: rgba(168, 129, 74, 0.12);
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 8px 24px rgba(60, 50, 30, 0.08);
  --maxw:      1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #d8d6ce 0%, #c4c2ba 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #a8a6a0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.logo-dot { color: var(--accent); }

/* Бургер-меню (моб.) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav > a { color: #2a2a2f; white-space: nowrap; font-weight: 500; }
.site-nav > a:hover { color: #8a6738; }

/* Выпадающее меню */
.nav-dd { position: relative; }
.nav-dd > summary {
  list-style: none;
  cursor: pointer;
  color: #2a2a2f;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.nav-dd > summary::-webkit-details-marker { display: none; }
.nav-dd > summary::after {
  content: '▾';
  font-size: 10px;
  color: var(--text-dim);
  transition: .2s;
}
.nav-dd[open] > summary { color: #8a6738; }
.nav-dd[open] > summary::after { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: .2s;
}
.nav-dd[open] .nav-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dd-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-mut);
  font-size: 14px;
}
.nav-dd-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent-2);
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 129, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-elev);
  border-color: var(--accent);
  color: var(--accent-2);
}

.nav-phone { margin-left: 8px; }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(168, 129, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(168, 129, 74, 0.05), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 500;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mut);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ===========================
   ИЗОБРАЖЕНИЯ-ПЛЕЙСХОЛДЕРЫ
   =========================== */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-rounded { border-radius: var(--radius); }

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(168, 129, 74, 0.14), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(168, 129, 74, 0.08), transparent 50%);
  pointer-events: none;
}

.ph-icon {
  width: 56px;
  height: 56px;
  opacity: 0.35;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.ph-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.02em;
  z-index: 1;
  pointer-events: none;
}

.ph-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
  z-index: 1;
  pointer-events: none;
}

/* Когда картинка вставлена — прячем плейсхолдер */
.ph.has-image {
  background: transparent;
  border: none;
}
.ph.has-image::before,
.ph.has-image .ph-icon,
.ph.has-image .ph-tag,
.ph.has-image .ph-label { display: none; }
.ph.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===========================
   SECTION / SECTION-HEAD
   =========================== */
.section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}
.section-head p {
  font-size: 17px;
  color: var(--text-mut);
  line-height: 1.55;
}

/* ===========================
   CARDS GRID
   =========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card .ph {
  aspect-ratio: 16/10;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--line-soft);
}
.card .ph.has-image img { border-radius: 0; }
.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.card-body p {
  font-size: 14px;
  color: var(--text-mut);
  line-height: 1.55;
  flex: 1;
}
.card-more {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.card:hover .card-more { color: var(--accent-2); }

/* ===========================
   SPLIT
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text);
}
.split p {
  color: var(--text-mut);
  margin-bottom: 14px;
  line-height: 1.65;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-mut);
  line-height: 1.55;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===========================
   STEPS GRID
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  position: relative;
  transition: border-color .2s ease;
}
.step:hover { border-color: var(--accent); }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-mut);
  line-height: 1.55;
}

/* ===========================
   MUTED / SMALL
   =========================== */
.muted { color: var(--text-mut); }
.small { font-size: 13px; line-height: 1.7; }

/* ===========================
   FAQ
   =========================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-wrap > h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  transition: .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-mut);
  font-size: 15px;
  line-height: 1.6;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  padding: 64px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cta-inner p { color: var(--text-mut); font-size: 16px; max-width: 540px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 16px;
  max-width: 320px;
}
.footer-phone {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
}
.site-footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: var(--text-mut);
  font-size: 14px;
}
.site-footer ul li a:hover { color: var(--accent-2); }
.footer-pending { color: var(--text-dim); font-size: 13px; font-style: italic; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero .ph { order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #d8d6ce 0%, #c4c2ba 100%);
    border-bottom: 1px solid #a8a6a0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  #nav-toggle:checked ~ .site-nav {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav > a,
  .nav-dd > summary {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  .nav-dd-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 16px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-dd-menu a { font-size: 15px; color: var(--text-mut); }
  .nav-phone {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }
  .section { padding: 52px 0; }
  .hero { padding: 48px 0 44px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}


/* ===========================
   ВНУТРЕННИЕ СТРАНИЦЫ — доп. стили
   =========================== */

/* HERO внутренней страницы */
.page-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(168, 129, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(168, 129, 74, 0.05), transparent 50%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.page-hero h1 em { color: var(--accent-2); font-style: italic; font-weight: 500; }
.page-hero .lead { font-size: 17px; color: var(--text-mut); line-height: 1.6; margin-bottom: 22px; max-width: 540px; }
.page-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.breadcrumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span.sep { color: var(--text-dim); }

/* Feature grid (иконки с текстом) */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .25s ease;
}
.feature:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.feature p { font-size: 14px; color: var(--text-mut); line-height: 1.55; }

/* Текстовый блок с отступом */
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 34px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; }
.prose-block h3 { font-size: 19px; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.prose-block p { font-size: 16px; line-height: 1.7; color: var(--text-mut); margin-bottom: 14px; }
.prose-block ul { list-style: none; padding: 0; margin: 14px 0; }
.prose-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-mut);
  line-height: 1.6;
}
.prose-block ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Таблица цен / тарифов */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.pricing-card.featured { border-color: var(--accent); position: relative; }
.pricing-card.featured::before {
  content: 'Популярно';
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.pricing-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-2);
  margin: 12px 0;
}
.pricing-card .price small { font-size: 14px; color: var(--text-dim); font-weight: 400; font-family: 'Inter', sans-serif; }
.pricing-card ul { list-style: none; padding: 0; margin: 16px 0 0; flex: 1; }
.pricing-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-mut);
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Галерея изображений */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* CALCULATOR */
.calc-wrap { max-width: 820px; margin: 0 auto; }
.calc-options { display: flex; flex-direction: column; gap: 24px; }
.calc-group { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.calc-group h3 { font-size: 16px; font-weight: 600; margin-bottom: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.calc-group h3 .num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.calc-choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.calc-choice {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  background: var(--bg-soft);
  transition: all .2s;
  display: block;
}
.calc-choice:hover { border-color: var(--accent); }
.calc-choice input { position: absolute; opacity: 0; pointer-events: none; }
.calc-choice .label { font-weight: 500; font-size: 14px; color: var(--text); display: block; }
.calc-choice .desc { font-size: 12px; color: var(--text-dim); margin-top: 4px; line-height: 1.4; }
.calc-choice .cost { font-size: 13px; color: var(--accent-2); margin-top: 6px; font-weight: 600; }
.calc-choice.selected { border-color: var(--accent); background: var(--accent-soft); }
.calc-choice.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.calc-summary {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-top: 28px;
  text-align: center;
}
.calc-summary .label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.calc-summary .range {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: var(--accent-2);
  margin: 8px 0;
  letter-spacing: -0.02em;
}
.calc-summary .range small { font-size: 14px; color: var(--text-dim); font-weight: 400; font-family: 'Inter', sans-serif; }
.calc-summary .hint { font-size: 13px; color: var(--text-dim); margin-top: 8px; }
.calc-summary .btn { margin-top: 18px; }

/* FORM */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* CONTACT CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card .icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.contact-card .icon svg { width: 18px; height: 18px; }
.contact-card .label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card .value { font-size: 16px; font-weight: 600; color: var(--text); word-break: break-word; }
.contact-card .value a { color: var(--text); }
.contact-card .value a:hover { color: var(--accent-2); }

/* BLOG LIST */
.blog-list { display: flex; flex-direction: column; gap: 20px; max-width: 880px; margin: 0 auto; }
.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .2s;
}
.blog-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.blog-item img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.blog-item .body { display: flex; flex-direction: column; }
.blog-item .date { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.blog-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.blog-item p { font-size: 14px; color: var(--text-mut); line-height: 1.55; flex: 1; }
.blog-item .read-more { font-size: 13px; color: var(--accent-2); font-weight: 500; margin-top: 12px; }

/* IMAGE + TEXT (вариация split с другим порядком) */
.split.reverse > div:first-child { order: 2; }
.split.reverse > div:last-child { order: 1; }

/* Адаптивность внутренних */
@media (max-width: 860px) {
  .page-hero .container { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-img { order: -1; }
  .blog-item { grid-template-columns: 1fr; }
  .blog-item img { height: 180px; }
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px 20px; }
  .calc-group { padding: 18px; }
}
