:root {
  --rose: #d47479;
  --slate: #6C7C98;
  --text: #253244;
  --muted: #667085;
  --bg: #f7f8fb;
  --card: #ffffff;
  --line: #e7eaf0;
  --shadow: 0 12px 30px rgba(30, 41, 59, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108,124,152,0.12);
}
.header-inner {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 190px; height: auto; }
.brand small { color: var(--muted); display: block; margin-top: 2px; }
.nav { display: flex; gap: 8px; flex-wrap: wrap; }
.nav a {
  padding: 10px 14px; border-radius: 999px; color: var(--slate); font-weight: 700; font-size: 15px;
}
.nav a.active, .nav a:hover {
  background: rgba(212,116,121,0.12); color: var(--rose);
}
.hero {
  padding: 72px 0 46px;
}
.hero-grid, .two-col {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(108,124,152,0.10); color: var(--slate); font-weight: 700; font-size: 14px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 22px; }
p.lead { font-size: 19px; color: #49576b; margin: 0 0 24px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border-radius: 14px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--rose), #c15c63); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--slate); border-color: var(--line); }
.hero-card, .card {
  background: var(--card); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.stat {
  background: #f8fafc; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
}
.stat strong { display: block; font-size: 28px; color: var(--rose); }
.section { padding: 36px 0 72px; }
.section-header { margin-bottom: 28px; max-width: 760px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { padding: 24px; }
.card p:last-child { margin-bottom: 0; }
.icon-badge {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(212,116,121,0.13); color: var(--rose);
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px;
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.list-clean li:last-child { border-bottom: 0; }
.price-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; }
.price-table th, .price-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.price-table th { background: #f6f8fb; color: var(--slate); font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table tr:last-child td { border-bottom: 0; }
.note {
  margin-top: 16px; color: var(--muted); font-size: 15px;
}
.contact-list a { color: var(--rose); font-weight: 700; }
.map-wrap iframe {
  border: 0; border-radius: 20px; box-shadow: var(--shadow); width: 100%;
}
.cta-box {
  background: linear-gradient(135deg, var(--slate), #5d6d89); color: #fff; border-radius: 28px; padding: 32px; box-shadow: var(--shadow);
}
.cta-box p { color: rgba(255,255,255,0.92); }
.site-footer {
  padding: 28px 0 44px; border-top: 1px solid var(--line); background: rgba(255,255,255,0.8);
}
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; color: var(--slate); }
.page-hero {
  padding: 60px 0 20px;
}
.page-hero .card { padding: 32px; }
@media (max-width: 900px) {
  .hero-grid, .two-col, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 0; align-items: flex-start; }
  .brand { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; }
  .stats { grid-template-columns: 1fr; }
}
