:root {
  --blue: #56b7c2;
  --blue2: #9adce2;
  --green: #73b84e;
  --orange: #f5a21e;
  --yellow: #f5cb45;
  --red: #e85242;
  --ink: #30474a;
  --muted: #6c7b7e;
  --cream: #fff9f2;
  --line: #e4eeee;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1120px, 92%);
  margin: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 900;
}
.brand-d,
.brand-v {
  font-size: 3rem;
  line-height: 1;
}
.brand-d {
  color: var(--orange);
}
.brand-v {
  color: var(--green);
}
.brand-word {
  font-size: 1.45rem;
  color: var(--blue);
  margin-left: 7px;
  letter-spacing: 0.08em;
}
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.8rem;
  color: var(--ink);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 14px 22px;
  font-weight: 800;
  border: 2px solid var(--blue);
}
.button.outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--blue2);
}
.button.small {
  padding: 10px 16px;
}
.full {
  width: 100%;
}
.hero {
  padding: 88px 0 78px;
  background: linear-gradient(135deg, #f5feff 0%, #fff8ee 55%, #fff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.13em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
h1,
h2,
h3 {
  line-height: 1.12;
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  margin-bottom: 18px;
}
h1 span {
  color: var(--red);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.dots {
  display: flex;
  gap: 10px;
}
.dots i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.c1 {
  background: var(--orange);
}
.c2 {
  background: var(--green);
}
.c3 {
  background: var(--red);
}
.c4 {
  background: var(--yellow);
}
.c5 {
  background: var(--blue);
}
.logo-card {
  background: #fff;
  border: 3px solid var(--blue2);
  border-radius: 34px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(86, 183, 194, 0.14);
}
.big-logo .brand-d,
.big-logo .brand-v {
  font-size: 8rem;
}
.big-word {
  font-size: 3.2rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-weight: 900;
  margin-top: 5px;
}
.tag {
  margin-top: 12px;
  font-weight: 800;
  color: var(--muted);
}
.section {
  padding: 85px 0;
}
.soft {
  background: var(--cream);
}
.heading {
  max-width: 760px;
  margin-bottom: 40px;
}
.heading p {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 8px solid var(--blue);
  border-radius: 24px;
  padding: 26px;
}
.card p {
  color: var(--muted);
}
.card.orange {
  border-top-color: var(--orange);
}
.card.green {
  border-top-color: var(--green);
}
.card.blue {
  border-top-color: var(--blue);
}
.card.red {
  border-top-color: var(--red);
}
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 25px;
  padding: 27px;
  position: relative;
}
.pblue {
  border-top: 8px solid var(--blue);
}
.porange {
  border-top: 8px solid var(--orange);
}
.pgreen {
  border-top: 8px solid var(--green);
}
.pred {
  border-top: 8px solid var(--red);
}
.featured {
  box-shadow: 0 18px 40px rgba(115, 184, 78, 0.16);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 900;
  font-size: 0.78rem;
}
.label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--muted);
}
.amount {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 8px 0;
}
.muted,
.price ul {
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.steps > div {
  border-top: 4px solid var(--blue2);
  padding-top: 18px;
}
.steps b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  margin-bottom: 14px;
}
.steps p {
  color: var(--muted);
}
.extra {
  background: #f6fcfd;
}
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.extra-list {
  background: #fff;
  border: 2px solid var(--blue2);
  border-radius: 25px;
  padding: 10px 24px;
}
.extra-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.extra-list div:last-child {
  border: 0;
}
.note {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  border-radius: 28px;
  padding: 38px;
  text-align: center;
}
.note h2 {
  margin-bottom: 10px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.placeholder {
  color: var(--red);
  font-style: italic;
}
.form {
  background: #fff;
  border: 2px solid var(--blue2);
  border-radius: 26px;
  padding: 28px;
}
.form label {
  display: block;
  font-weight: 800;
  margin-bottom: 15px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font: inherit;
}
.check {
  font-size: 0.88rem;
}
.check a {
  color: var(--blue);
  text-decoration: underline;
}
footer {
  background: #2c5156;
  color: #fff;
  padding: 40px 0 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-brand {
  font-size: 1.3rem;
}
.footer-brand .brand-d,
.footer-brand .brand-v {
  font-size: 2.5rem;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.85rem;
}
.legal-page {
  min-height: 100vh;
  background: var(--cream);
  padding: 55px 0;
}
.legal-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 35px;
}
.back {
  color: var(--blue);
  font-weight: 800;
}
@media (max-width: 950px) {
  .hero-grid,
  .extra-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 95px;
    background: #fff;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .links.open {
    display: flex;
  }
  .cards,
  .pricing,
  .steps {
    grid-template-columns: 1fr;
  }
  .featured {
    transform: none;
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-d,
  .brand-v {
    font-size: 2.5rem;
  }
  .brand-word {
    font-size: 1.15rem;
  }
  .big-logo .brand-d,
  .big-logo .brand-v {
    font-size: 6rem;
  }
  .big-word {
    font-size: 2.4rem;
  }
}
.logo {
  width: 130px !important;
  max-width: 130px !important;
  height: auto !important;
  display: block;
}
.footer-logo {
  width: 130px !important;
  max-width: 130px !important;
  height: auto !important;
  display: block;
}
