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

:root {
  --bg: #f7fbff;
  --bg-2: #eef5ff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --ink: #12213a;
  --muted: #4e6487;
  --line: #d5e2f8;
  --brand: #2b78ff;
  --brand-2: #13c8b5;
  --brand-strong: #1654c7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 8% 6%, rgba(43, 120, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 4%, rgba(19, 200, 181, 0.12), transparent 24rem),
    linear-gradient(170deg, var(--bg), var(--bg-2));
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(247, 251, 255, 0.86);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

nav { display: flex; flex-wrap: wrap; gap: 4px; }

nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

nav a:hover,
nav a.active {
  color: var(--brand-strong);
  background: rgba(43, 120, 255, 0.1);
}

main { padding-bottom: 72px; }

.hero,
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 28px 46px -38px rgba(16, 35, 68, 0.42);
}

.hero {
  margin-top: 28px;
  padding: clamp(1.4rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
}

.bullet-card h3 {
  margin: 0 0 10px;
}

.bullet-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(43, 120, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-strong);
  border: 1px solid rgba(43, 120, 255, 0.3);
  background: rgba(43, 120, 255, 0.08);
}

.hero h1 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 860px;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.cta-row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #5396ff);
  border: 1px solid rgba(43, 120, 255, 0.4);
  border-radius: 11px;
  padding: 11px 17px;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-block;
}

.btn:hover { filter: brightness(0.97); }

.btn.alt {
  color: var(--ink);
  background: var(--panel-solid);
  border-color: var(--line);
}

.section { margin-top: 28px; }

.section h1,
.section h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4.3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section .lead { margin: 0; color: var(--muted); max-width: 780px; }

.grid { display: grid; gap: 14px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { padding: 20px; }
.card h3 {
  margin: 0 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
}

.image-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cfe0fb;
  margin-bottom: 12px;
  background: #f8fbff;
}

.muted { color: var(--muted); }

.quick-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

form { display: grid; gap: 14px; }
label { font-size: 0.9rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 6px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d9f5;
  border-radius: 11px;
  padding: 11px 12px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(43, 120, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(43, 120, 255, 0.13);
}

textarea { min-height: 118px; }
.inline { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hidden { display: none; }
.note { color: var(--muted); font-size: 0.86rem; }

footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 24px 0;
}

footer a { color: inherit; }
footer a:hover { color: var(--brand-strong); }

@media (max-width: 920px) {
  .grid.two, .grid.three, .inline, .hero-split { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .container { padding: 0 14px; }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0 12px;
    min-height: 0;
  }

  nav { width: 100%; justify-content: flex-start; }

  nav a { font-size: 0.82rem; padding: 6px 8px; }

  .quick-cta { right: 12px; bottom: 12px; }
}
