﻿:root {
  --accent: #24c281;
  --accent2: #4dc3ff;
  --accent3: #ffae1a;
  --muted: #8392a7;
  --bg: #f5f8fa;
  --surface: #fff;
  --surface-alt: #e8f5f0;
  --danger: #ff4d69;
  --text-main: #20232c;
  --text-soft: #495161;
  --radius: 11px;
  --shadow: 0 2px 20px #b8eec750, 0 1px 6px #35c9ff18;
}
* { box-sizing: border-box; }
body {
  background: var(--bg);
  margin: 0;
  color: var(--text-main);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 1.05em;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
header {
  background: var(--surface);
  box-shadow: 0 1.5px 9px #24c28105;
  padding: 19px 0 13px 0;
}
.nav {
  display: flex; gap: 32px; justify-content: center; align-items: center; font-size: 1.07em;
}
.brand {
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--accent), var(--accent2) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main {padding: 0 4vw;}
.hero {
  text-align: center; margin: 36px 0 26px 0;
}
.hero-title {
  font-size: 2.3em;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent3) 13%, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--muted); font-size: 1.1em; margin: 10px 0 30px 0;
}
.form-wrap {
  max-width: 410px;
  margin: 0 auto 22px auto;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 27px 24px 17px 24px;
  border: 1.2px solid var(--accent2);
}
.form-wrap label {
  display: block; margin-bottom: 6px; font-weight: 700; color: var(--text-soft);
}
.form-wrap input, .form-wrap button {
  width: 100%; font-size: 1em; padding: 12px; margin-bottom: 17px; border-radius: var(--radius); border: none;
}
.form-wrap input {
  background: #ebf4f7; border-bottom: 2px solid var(--accent);
  color: var(--text-main)
}
.form-wrap input:focus { border-color: var(--accent2);}
.form-wrap button {
  margin-top: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff; font-weight: bold;
  box-shadow: 0 0 0 0 var(--accent3);
  cursor: pointer; border: none; letter-spacing: 0.01em;
}
.form-wrap button:disabled {
  opacity: 0.65; cursor: not-allowed; background: #acdacfbb;
}
#form-error {color:var(--danger); margin-bottom:12px; display:none;}
.features {
  margin: 40px auto 12px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 29px;
  max-width: 1000px;
}
.feature {
  flex: 1 1 170px;
  min-width: 188px; max-width: 238px;
  margin: 7px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 22px 14px;
  box-shadow: 0 2px 14px #4dc3ff15;
  text-align: center; border: 1px solid var(--accent2);
}
.feature svg { height: 38px; margin-bottom:7px;}
.feature-title { font-size: 1.1em; font-weight: 700; color:var(--accent);}
.feature-desc {font-size: .97em; color: var(--muted);}
.trust {
  background: var(--surface);
  border-radius: var(--radius);
  margin: 37px auto 25px auto;
  max-width: 950px;
  padding: 25px 17px 14px 17px;
  box-shadow: 0 1.5px 16px #4dc3ff08;
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}
.testimonial {
  flex: 1 1 200px;
  min-width: 210px; max-width: 260px; background: #eaf8f4;
  border-radius: var(--radius);
  margin: 0 10px 11px 0;
  padding: 14px 13px 11px 13px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 0 7px #25c07c1a;
}
.testimonial img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; margin-bottom: 7px;
  border:2px solid var(--accent2); box-shadow: 0 0 5px #25c07c41;
}
.testimonial-name { font-weight: 600; color:var(--accent2);}
.testimonial-role {font-size: 0.98em; color: var(--muted);}
.testimonial-text {font-size: 0.96em;}
.blog-preview {
  margin: 38px auto 0 auto;
  max-width: 970px;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  justify-content: center;
}
.blog-post {
  flex: 1 1 240px; min-width: 210px; max-width: 320px;
  background: #eafbfb;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px #4dc3ff11;
  border: 1.5px solid #24c28144;
  overflow: hidden; display: flex; flex-direction: column;
}
.blog-post img { width: 100%; min-height: 124px; max-height: 155px; object-fit: cover; background: #eaf5fe;}
.blog-content {padding:15px 14px 11px 15px; flex:1;}
.blog-title {color: var(--accent); font-size:1.07em; font-weight:700;margin-bottom:7px;}
.blog-desc {color: var(--muted); font-size:.97em;}
.footer {
  margin-top: 55px;
  background: #f1f6f7;
  color: #8392a7;
  padding: 25px 0 13px 0;
  text-align: center;
  font-size: 0.97em;
}
.footer .links {margin-bottom: 10px;}
.footer a {color: var(--accent2); margin: 0 10px;}
#cookie-banner {
  display:none; position:fixed; left:0; right:0; bottom:0;
  background:#fffefde9; color:#222; padding:19px 15px; z-index:3000;
  box-shadow: 0 -1.5px 21px #4dc3ff70;
  text-align: center; font-size:1.08em;
  border-top: 2px solid var(--accent2);
}
#cookie-banner.active {display:block;}
#cookie-banner button {
  margin-left:16px; padding:8px 22px;
  border-radius:var(--radius);
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  color:#fff; border:none; font-weight:bold; cursor:pointer; box-shadow:0 1.5px 8px #24c28138;
}
@media (max-width:900px) {
  .features, .blog-preview {flex-direction:column;gap:13px;}
  .brand {font-size:1.25em;}
}
@media (max-width:660px) {
  .hero-title {font-size:1.15em;}
  .features {gap:10px;}
}
