@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #10233c;
  --muted: #5f7187;
  --paper: #fbfcf8;
  --white: #fff;
  --mist: #eef5f2;
  --line: #dfe8e4;
  --green: #147b6d;
  --green-dark: #0d5d54;
  --lime: #dff26a;
  --blue: #dcecff;
  --peach: #ffe2cf;
  --violet: #e9e1ff;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16, 35, 60, .09);
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 4%, rgba(223, 242, 106, .25), transparent 22rem),
    radial-gradient(circle at 92% 18%, rgba(220, 236, 255, .7), transparent 27rem);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 99; padding: 10px 14px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow { margin: 0 0 14px; color: var(--green-dark); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 880px; font-size: clamp(2.65rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.32rem); }
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251, 252, 248, .88);
  backdrop-filter: blur(18px); border-bottom: 1px solid rgba(223, 232, 228, .8);
}
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.14rem; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; font-weight: 600; }
.nav-links a { color: #3e5269; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 1.45rem; cursor: pointer; }
.btn {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--green); box-shadow: 0 12px 28px rgba(20, 123, 109, .2); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: white; border-color: var(--line); }
.btn-soft { background: var(--lime); color: var(--ink); }
.hero { padding: clamp(76px, 10vw, 132px) 0 78px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 8vw, 100px); align-items: center; }
.hero-copy { display: grid; gap: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 7px 12px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--muted); font-size: .88rem; font-weight: 600; }
.hero-art { min-height: 500px; position: relative; }
.orb { position: absolute; border-radius: 50%; filter: saturate(.9); }
.orb.one { width: 370px; height: 370px; right: 2%; top: 2%; background: var(--blue); }
.orb.two { width: 245px; height: 245px; left: 0; bottom: 0; background: var(--lime); }
.float-card {
  position: absolute; padding: 22px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow); border-radius: 24px; backdrop-filter: blur(14px);
}
.float-card strong { display: block; margin-bottom: 7px; font-family: "Manrope", sans-serif; font-size: 1.12rem; }
.float-card small { color: var(--muted); }
.float-card.a { width: 270px; right: 0; top: 82px; transform: rotate(3deg); }
.float-card.b { width: 250px; left: 2%; bottom: 82px; transform: rotate(-3deg); }
.float-card.c { width: 180px; right: 25%; bottom: 18px; }
.dot { width: 11px; height: 11px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--green); }
.section { padding: clamp(76px, 9vw, 120px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div { display: grid; gap: 16px; }
.products { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-card {
  min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid rgba(16,35,60,.06);
}
.product-card:nth-child(1) { grid-column: span 7; background: var(--blue); }
.product-card:nth-child(2) { grid-column: span 5; background: var(--peach); }
.product-card:nth-child(3), .product-card:nth-child(4), .product-card:nth-child(5) { grid-column: span 4; }
.product-card:nth-child(3) { background: var(--mist); }
.product-card:nth-child(4) { background: var(--violet); }
.product-card:nth-child(5) { background: #f8edcf; }
.product-top { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.product-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: rgba(255,255,255,.72); font-size: 1.55rem; }
.status { padding: 7px 11px; border: 1px solid rgba(16,35,60,.12); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.product-card h3 { margin: 30px 0 12px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.product-card p { max-width: 540px; color: #43576c; font-size: 1.05rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 700; }
.band { padding: clamp(40px, 7vw, 70px); border-radius: 34px; background: var(--ink); color: white; }
.band-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.band p { max-width: 650px; margin-top: 16px; color: #bcc9d7; font-size: 1.08rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.stat strong { display: block; font-family: "Manrope"; font-size: 2rem; }
.stat span { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.feature span { display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 40px; border-radius: 14px; background: var(--mist); font-size: 1.2rem; }
.feature h3 { margin-bottom: 12px; }
.feature p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 7vw, 90px); align-items: center; }
.panel { padding: clamp(30px, 5vw, 58px); border-radius: var(--radius); background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.stack { display: grid; gap: 18px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: start; }
.check-list li::before { content: "✓"; flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-weight: 800; font-size: .8rem; }
.page-hero { padding: 90px 0 62px; }
.page-hero .lead { margin-top: 22px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { padding: 32px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.price.featured { background: var(--ink); color: white; transform: translateY(-8px); }
.price.featured p, .price.featured li { color: #c9d3df; }
.price .amount { display: block; margin: 28px 0 4px; font: 800 clamp(2.2rem,4vw,3.5rem)/1 "Manrope"; }
.price p { color: var(--muted); }
.price .btn { width: 100%; margin-top: 26px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }
.contact-card { padding: 34px; border-radius: 24px; background: var(--mist); }
.contact-card a { color: var(--green-dark); font-weight: 700; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: white; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.site-footer { margin-top: 80px; padding: 58px 0 28px; background: #0b1b2e; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, .7fr); gap: 50px; }
.site-footer p, .site-footer a { color: #aebdca; }
.site-footer h3 { margin-bottom: 16px; color: white; font-size: 1rem; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 9px; list-style: none; padding: 0; margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid #243449; color: #8192a2; font-size: .88rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 72px; padding: 20px; flex-direction: column; align-items: stretch; gap: 12px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-actions .btn-secondary { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 400px; }
  .product-card:nth-child(n), .price-grid { grid-column: 1 / -1; }
  .products, .price-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .nav { min-height: 70px; }
  .nav-actions .btn { display: none; }
  .hero { padding-top: 58px; }
  .hero-art { min-height: 340px; }
  .orb.one { width: 270px; height: 270px; }
  .orb.two { width: 180px; height: 180px; }
  .float-card.a { width: 220px; top: 42px; }
  .float-card.b { width: 205px; bottom: 50px; }
  .float-card.c { display: none; }
  .section-head, .footer-bottom { align-items: start; flex-direction: column; }
  .feature-grid, .stats, .footer-grid, .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
