
* { box-sizing: border-box; }

:root {
  --bg: #f7fbff;
  --bg-soft: #eef6ff;
  --panel: rgba(255,255,255,.88);
  --panel-solid: #ffffff;
  --text: #172033;
  --muted: #5d6b82;
  --line: #dbe7f3;
  --accent: #2f7df6;
  --accent-dark: #1e5ec3;
  --accent-soft: #e8f2ff;
  --success-soft: #eaf8f1;
  --shadow: 0 18px 55px rgba(42, 91, 140, .12);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(90,169,255,.16), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(128,222,196,.18), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 36%, #ffffff 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.hero {
  min-height: 88vh;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -170px;
  background: rgba(111, 181, 255, .19);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -170px;
  background: rgba(124, 223, 192, .17);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(34, 78, 122, .10));
}

.navlinks {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #43526a;
  font-weight: 750;
  padding: 8px;
  border: 1px solid rgba(205,221,237,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 30px rgba(55, 98, 142, .08);
  backdrop-filter: blur(16px);
}

.navlinks a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  transition: .2s ease;
}

.navlinks a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero-content {
  max-width: 930px;
  margin: 95px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-block;
  padding: 9px 15px;
  border: 1px solid #cfe1f4;
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 30px rgba(52, 96, 140, .08);
  font-weight: 800;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin: 24px 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}

h3 {
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.lead {
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 34px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 23px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.primary {
  background: linear-gradient(135deg, var(--accent), #5ca1ff);
  color: white;
  box-shadow: 0 14px 30px rgba(47,125,246,.26);
}

.primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 18px 36px rgba(47,125,246,.30);
}

.secondary {
  border: 1px solid #cddceb;
  color: #28405f;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 26px rgba(52, 95, 138, .08);
}

main section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 28px;
}

.intro {
  text-align: center;
  max-width: 860px;
}

.intro p,
.trust p,
.contact p {
  color: var(--muted);
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article,
.price-grid > div,
.contact-box,
.legal-card {
  background: var(--panel);
  border: 1px solid rgba(214,228,241,.95);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.cards article,
.price-grid > div {
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cards article:hover,
.price-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(42,91,140,.15);
}

.cards p,
.price-grid p,
li {
  color: var(--muted);
}

.trust {
  background: linear-gradient(135deg, #edf6ff, #f5fffb);
  border: 1px solid #dceaf4;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.trust ul {
  padding-left: 24px;
  font-size: 19px;
}

.prices { text-align: center; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.price {
  font-size: 28px;
  color: var(--accent-dark) !important;
  font-weight: 900;
}

.small {
  font-size: 14px;
  color: #718096;
}

.process { text-align: center; }

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

.steps > div {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 25px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6eafff);
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(47,125,246,.25);
}

.contact { text-align: center; }

.contact-email-btn {
  padding: 18px 29px;
  font-size: 1.18em;
  margin: 10px auto 24px;
}

.contact-box {
  max-width: 700px;
  margin: 26px auto;
  padding: 20px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.contact-item {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #dce8f4;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: #20334e;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.contact-value {
  display: block;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 82px 28px;
}

.legal-card { padding: 38px; }

.legal-card p,
.legal-card li { color: var(--muted); }

.legal-card h1 { font-size: clamp(38px, 5vw, 62px); }

.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 38px;
}

.about-photo-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 28px 0;
  display: flex;
  justify-content: center;
}

.about-photo {
  display: block;
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 8px solid rgba(255,255,255,.95);
  box-shadow: 0 24px 70px rgba(41, 83, 126, .20);
}

footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
  background: rgba(255,255,255,.62);
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  opacity: .95;
}

.footer-links a {
  color: #52637a;
  text-decoration: none;
}

.footer-links a:hover { color: var(--accent-dark); }

@media (max-width: 850px) {
  .nav { align-items: flex-start; }
  .navlinks {
    flex-direction: column;
    border-radius: 22px;
    gap: 2px;
    align-items: stretch;
  }
  .navlinks a { padding: 8px 13px; }
  .hero-content { margin-top: 65px; }
  .cards, .price-grid, .steps { grid-template-columns: 1fr; }
  main section { padding: 58px 22px; }
}

@media (max-width: 600px) {
  .hero { padding: 18px; min-height: auto; padding-bottom: 70px; }
  .logo { width: 98px; height: 98px; }
  .hero-content h1 { font-size: clamp(36px, 11vw, 52px); }
  .lead { font-size: 18px; }
  .legal-card { padding: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
