﻿:root {
  --bg: #eef7ff;
  --ink: #0d2033;
  --muted: #3d5468;
  --brand: #1f9ddd;
  --brand-dark: #1077bb;
  --accent: #14c2c9;
  --panel: #ffffff;
  --line: #cfe7fb;
  --shadow: 0 20px 55px rgba(16, 54, 88, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(1200px 900px at 12% -10%, #d4eeff 0%, var(--bg) 45%, #f7fcff 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.32;
  z-index: -1;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: #55ccff;
  top: -100px;
  left: -70px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: #8ce7ca;
  right: -120px;
  bottom: -150px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(238, 247, 255, 0.72);
  border-bottom: 1px solid rgba(195, 224, 247, 0.6);
}

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

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: auto;
  height: 70px;
}

.brand-text {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.3px;
  font-size: 1.5rem;
}

.brand-text strong {
  color: var(--brand-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--brand-dark);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
  padding: 72px 0;
}

.kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-dark);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4.7vw, 4rem);
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.02em;
}
h1 strong {
  color: var(--brand-dark);
}

h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(95deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 125, 196, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(31, 125, 196, 0.34);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: rgba(17, 116, 178, 0.1);
  color: var(--brand-dark);
  box-shadow: none;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-list li {
  border: 1px solid var(--line);
  background: #f7fcff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.hero-card {
  background: linear-gradient(145deg, #f5fcff, #e5f5ff 62%, #d0ecff);
  border: 1px solid #c0e2f8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.spray-line {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -85px;
  top: -120px;
  border: 20px solid rgba(16, 145, 220, 0.2);
  border-top-color: rgba(13, 101, 165, 0.45);
  transform: rotate(18deg);
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 16px;
}

.services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid #d3e8f8;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(29, 78, 110, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9fdff;
  border: 1px solid #d2e8f8;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
}

.steps span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-size: 0.9rem;
}

.refs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ref {
  margin: 0;
  background: #ffffff;
  border: 1px solid #d0e6f7;
  border-radius: 18px;
  padding: 20px;
}

.ref blockquote {
  margin: 0 0 14px;
  font-weight: 600;
}

.ref figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #cfe5f7;
  border-radius: 18px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #b8d9f2;
  padding: 10px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 156, 228, 0.32);
  border-color: #5ab8ec;
}

.form-status {
  margin: 0;
  min-height: 1.5em;
  font-weight: 600;
  font-size: 0.92rem;
  color: #35546f;
}

.form-status.is-success {
  color: #0b7a5f;
}

.form-status.is-error {
  color: #ba2c2c;
}

.footer {
  border-top: 1px solid rgba(194, 221, 240, 0.9);
  margin-top: 32px;
}

.footer-wrap {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #35546f;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: initial;
    padding: 54px 0;
  }

  .services,
  .refs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .nav {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .services,
  .refs {
    grid-template-columns: 1fr;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
  }
}
