:root {
  --blue: #0b7ce6;
  --blue-dark: #0859a8;
  --cyan: #eaf7ff;
  --green: #20b486;
  --text: #102033;
  --muted: #637083;
  --line: #e4eef7;
  --soft: #f5faff;
  --white: #fff;
  --shadow: 0 22px 70px rgba(9, 70, 130, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.policy-container { width: min(1060px, calc(100% - 40px)); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 24px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), #57d4ff);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(11, 124, 230, .25);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.phone { font-weight: 850; font-size: 18px; white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 34px rgba(11, 124, 230, .28); }
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-dark); }
.btn-light { background: #fff; color: var(--blue); border: 1px solid var(--line); }
.btn-wa { background: #21c163; color: #fff; }
.btn-pulse { position: relative; overflow: visible; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(11, 124, 230, .32);
  opacity: 0;
  transform: scale(.94);
  animation: ctaPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0% { opacity: 0; transform: scale(.94); }
  18% { opacity: .55; }
  70%, 100% { opacity: 0; transform: scale(1.14); }
}

.hero {
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 86% 12%, rgba(87, 212, 255, .38), transparent 32%),
    linear-gradient(180deg, #f2faff 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 46px; align-items: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}
h1 { font-size: 64px; line-height: .98; letter-spacing: 0; margin: 22px 0 20px; }
.lead { font-size: 21px; color: var(--muted); max-width: 650px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(11, 124, 230, .06);
  font-weight: 800;
}
.point span { display: block; color: var(--muted); font-weight: 600; font-size: 14px; margin-top: 5px; }
.hero-card {
  position: relative;
  border-radius: 38px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #fff;
}
.hero-photo { height: 560px; border-radius: 30px; overflow: hidden; background: #dff4ff; position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.floating {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(7, 70, 130, .14);
}
.floating b { font-size: 18px; }
.floating p { margin: 6px 0 0; color: var(--muted); }

section { padding: 76px 0; }
.section-head { max-width: 800px; margin-bottom: 34px; }
h2 { font-size: 44px; line-height: 1.05; letter-spacing: 0; margin: 0 0 14px; }
.section-head p { font-size: 19px; color: var(--muted); margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .review, .step, .compare-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(7, 70, 130, .06);
}
.card { padding: 28px; }
.icon { width: 48px; height: 48px; border-radius: 17px; background: var(--cyan); display: grid; place-items: center; font-size: 20px; margin-bottom: 18px; font-weight: 900; color: var(--blue); }
.card h3 { font-size: 22px; margin: 0 0 10px; }
.card p, .review p { color: var(--muted); margin: 0; }
.section-cta { display: flex; justify-content: center; margin-top: 28px; }
.section-cta.align-left { justify-content: flex-start; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: center; }
.photo-box { border-radius: 34px; background: #f0f8ff; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.photo-box img { width: 100%; height: 100%; display: block; object-fit: cover; }
.professional-photo { height: 560px; }
.professional-photo img { object-position: center top; }
.feature-list { display: grid; gap: 14px; }
.feature { display: flex; gap: 14px; padding: 18px; border-radius: 22px; background: var(--soft); border: 1px solid var(--line); }
.check { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 999px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.feature b { display: block; margin-bottom: 4px; }
.feature span { color: var(--muted); }
.compare { background: linear-gradient(180deg, #f4faff, #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { padding: 28px; }
.compare-col h3 { margin: 0 0 18px; font-size: 25px; }
.compare-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.compare-col li { padding: 14px 16px; border-radius: 16px; background: #f7fbff; color: var(--muted); }
.compare-col.smart li { background: #ecfff8; color: #174b3d; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; padding: 26px; min-height: 180px; box-shadow: none; }
.num { font-size: 42px; font-weight: 950; color: #d7efff; line-height: 1; margin-bottom: 18px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { padding: 24px; }
.stars { color: #ffb800; font-size: 19px; margin-bottom: 12px; letter-spacing: 2px; }
.review p { margin-bottom: 16px; }
.review b { font-size: 15px; }
.area-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.area { padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 34px rgba(7, 70, 130, .05); font-weight: 850; text-align: center; }

.cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(87, 212, 255, .3), transparent 28%),
    linear-gradient(135deg, #0879e5, #0a4d9a);
  color: #fff;
}
.cta-box { display: grid; grid-template-columns: 1fr .9fr; gap: 34px; align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .82); font-size: 19px; }
.form { background: #fff; color: var(--text); border-radius: 30px; padding: 28px; box-shadow: 0 26px 80px rgba(0, 0, 0, .18); }
.form label { display: block; font-weight: 800; margin-bottom: 8px; }
.form input, .form textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; min-height: 52px; padding: 14px 16px; font-size: 16px; margin-bottom: 14px; font-family: inherit; }
.form textarea { min-height: 96px; resize: vertical; }
.form small { display: block; color: var(--muted); font-size: 12px; margin-top: 10px; }
.form-status { min-height: 22px; margin: 12px 0 0; font-weight: 800; font-size: 14px; color: var(--muted); }
.form-status[data-state="success"] { color: #16815f; }
.form-status[data-state="error"] { color: #b42318; }
.form button:disabled { cursor: wait; opacity: .78; transform: none; }

.policy-hero { padding: 72px 0 42px; }
.policy-wrap { padding: 42px 0 76px; }
.policy-card { background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: 42px; box-shadow: var(--shadow); }
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill { padding: 9px 13px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); color: var(--muted); font-weight: 700; font-size: 14px; }
.policy-card h2 { font-size: 28px; line-height: 1.15; margin: 34px 0 12px; }
.policy-card h2:first-of-type { margin-top: 0; }
.policy-card p { margin: 0 0 14px; color: #26384d; }
.policy-card ul { margin: 0 0 18px; padding-left: 22px; color: #26384d; }
.policy-card li { margin: 7px 0; }
.notice { background: #f5faff; border: 1px solid var(--line); border-radius: 22px; padding: 20px; margin: 26px 0; color: #35506a; }
.contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.contact-card { background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.contact-card b { display: block; margin-bottom: 6px; }
.contact-card span { color: var(--muted); }

footer { background: #071a2d; color: #dcebfa; padding: 44px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
.footer-grid p { color: #9fb4c8; margin: 8px 0; }
.footer-title { font-weight: 900; color: #fff; margin-bottom: 10px; }
.legal { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 30px; padding-top: 20px; color: #9fb4c8; font-size: 14px; }

@media (max-width: 980px) {
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  h1 { font-size: 52px; }
  .hero-photo { height: 480px; }
  .cards, .reviews { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container, .policy-container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 58px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 12px; }
  .phone, .nav-actions .btn-light { display: none; }
  .nav-actions .btn-wa { min-height: 42px; padding: 0 14px; font-size: 14px; }
  .hero { padding: 16px 0 28px; }
  .hero-grid { display: grid; gap: 12px; }
  .hero-grid > div:first-child { display: contents; }
  .badge {
    order: 1;
    width: fit-content;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.2;
    box-shadow: none;
  }
  h1 { order: 2; font-size: 33px; line-height: 1.02; margin: 4px 0 2px; }
  h2 { font-size: 34px; }
  .lead { order: 3; font-size: 16px; line-height: 1.36; margin: 0; }
  .section-head p, .cta p { font-size: 17px; }
  .hero-points, .cards, .reviews, .steps, .compare-grid, .area-grid, .contacts { grid-template-columns: 1fr; }
  .hero-card { order: 4; width: min(100%, 360px); justify-self: center; padding: 10px; border-radius: 24px; box-shadow: 0 12px 34px rgba(7, 70, 130, .1); }
  .hero-photo { height: auto; aspect-ratio: 1 / 1; max-height: 360px; border-radius: 18px; }
  .hero-photo img { object-position: center; }
  .floating { left: 14px; right: 14px; bottom: 14px; border-radius: 16px; padding: 10px 12px; }
  .floating b { font-size: 15px; }
  .floating p { display: none; }
  .hero-cta { order: 5; display: grid; grid-template-columns: 1fr; gap: 9px; margin: 2px 0 0; }
  .hero-points { order: 6; gap: 8px; margin-top: 4px; }
  .point { padding: 12px 14px; border-radius: 16px; }
  section { padding: 42px 0; }
  .section-head { margin-bottom: 20px; }
  h2 { font-size: 29px; line-height: 1.08; margin-bottom: 10px; }
  .section-head p { font-size: 16px; line-height: 1.42; }
  .cards, .reviews, .steps, .compare-grid, .feature-list { gap: 10px; }
  .card { padding: 18px; border-radius: 18px; }
  .icon { width: 38px; height: 38px; border-radius: 13px; font-size: 16px; margin-bottom: 12px; }
  .card h3 { font-size: 19px; margin-bottom: 6px; }
  .feature { padding: 14px; border-radius: 16px; }
  .compare-col { padding: 18px; border-radius: 18px; }
  .compare-col h3 { font-size: 20px; margin-bottom: 12px; }
  .compare-col ul { gap: 8px; }
  .compare-col li { padding: 11px 12px; border-radius: 12px; }
  .step { min-height: auto; padding: 18px; border-radius: 18px; }
  .num { font-size: 32px; margin-bottom: 10px; }
  .review { padding: 18px; border-radius: 18px; }
  .section-cta, .section-cta.align-left { justify-content: stretch; margin-top: 16px; }
  .section-cta .btn { width: 100%; }
  .professional-photo { height: auto; padding: 14px; background: linear-gradient(180deg, #f0f8ff, #fff); }
  .professional-photo img { height: auto; max-height: 360px; object-fit: contain; object-position: center top; border-radius: 22px; }
  .hide-mobile { display: none; }
  .photo-box { border-radius: 26px; }
  .hero-cta .btn { width: 100%; }
  .btn { min-height: 48px; }
  .cta { padding: 56px 0; }
  .policy-hero { padding: 48px 0 32px; }
  .policy-wrap { padding: 28px 0 54px; }
  .policy-card { padding: 24px; border-radius: 24px; }
  .policy-card h2 { font-size: 24px; }
  footer { padding-bottom: 80px; }
}
