:root {
  --blue: #78b8e2;
  --blue-dark: #4e96c5;
  --blue-soft: #dceff9;
  --blue-pale: #eef8fd;

  --green: #a7c957;
  --green-dark: #7fa62f;
  --green-soft: #edf7d8;
  --green-pale: #f6faec;

  --silver: #d8dadf;
  --silver-dark: #9ca6b2;
  --silver-soft: #f5f6f8;
  --silver-pale: #fbfcfd;

  --white: #ffffff;
  --bg: #fafbfc;
  --text: #334155;
  --text-dark: #243244;
  --text-light: #64748b;
  --border: #e4e8ee;

  --shadow: 0 22px 60px rgba(78, 150, 197, .16);
  --shadow-soft: 0 16px 38px rgba(78, 150, 197, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--blue-dark), #6eac66);
  color: rgba(255, 255, 255, .94);
  font-size: 14px;
  padding: 10px 0;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 232px; }
.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(78, 150, 197, .13);
}
.brand-text strong { display: block; color: var(--blue-dark); font-size: 20px; letter-spacing: -.02em; }
.brand-text span { display: block; color: var(--text-light); font-size: 13px; margin-top: -2px; }
.main-nav { display: flex; align-items: center; gap: 24px; color: #43546a; font-weight: 700; font-size: 15px; }
.main-nav a:hover { color: var(--blue-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: #ffffff;
  border: 1px solid rgba(78, 150, 197, .35);
  box-shadow: 0 14px 28px rgba(78, 150, 197, .24);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: rgba(255, 255, 255, .72);
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, .82);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 12% 20%, rgba(120, 184, 226, .30), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(167, 201, 87, .24), transparent 26%),
    linear-gradient(135deg, var(--blue-soft) 0%, var(--silver-soft) 52%, var(--green-soft) 100%);
}
.hero-shape { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .75; }
.hero-shape-one { right: -120px; top: 80px; width: 300px; height: 300px; background: rgba(120, 184, 226, .34); }
.hero-shape-two { left: -120px; bottom: -120px; width: 320px; height: 320px; background: rgba(167, 201, 87, .26); }
.hero-shape-three { right: 20%; bottom: -160px; width: 260px; height: 260px; background: rgba(216, 218, 223, .55); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .02em;
  color: var(--blue-dark);
  text-transform: uppercase;
}
.eyebrow {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(255, 255, 255, .86);
  text-transform: none;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 999px; background: var(--green-dark); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 24px 0 18px;
  max-width: 780px;
  color: #263b50;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-lead { max-width: 640px; margin: 0; color: #4b5c70; font-size: 20px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.trust-row div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(78, 150, 197, .10);
}
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { color: var(--blue-dark); }
.trust-row span { color: var(--text-light); font-size: 14px; }

.hero-card,
.panel,
.card,
.step,
.contact-card {
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(228, 232, 238, .92);
  box-shadow: var(--shadow-soft);
}
.hero-card { border-radius: 34px; padding: 30px; box-shadow: var(--shadow); }
.logo-box { display: flex; align-items: center; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.logo-box img { width: 94px; height: 94px; object-fit: contain; border-radius: 22px; background: var(--white); border: 1px solid var(--border); }
.logo-box h2 { margin: 0; color: var(--blue-dark); font-size: 24px; line-height: 1.18; }
.logo-box p { margin: 6px 0 0; color: var(--text-light); font-size: 15px; }

.checklist,
.feature-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.checklist li,
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--silver-pale);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-weight: 650;
}
.check { width: 24px; height: 24px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; flex: none; }

.section { padding: 82px 0; }
.soft-section {
  background: linear-gradient(180deg, rgba(220, 239, 249, .60), rgba(237, 247, 216, .38));
  border-top: 1px solid rgba(228, 232, 238, .80);
  border-bottom: 1px solid rgba(228, 232, 238, .80);
}
.section-head { max-width: 740px; margin-bottom: 36px; }
.section-head.compact { margin-bottom: 0; }
.section-head h2,
.cta-box h2 { margin: 10px 0 10px; color: #263b50; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.section-head p,
.cta-box p { margin: 0; color: var(--text-light); font-size: 18px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border-radius: var(--radius); padding: 25px; }
.card-icon { width: 48px; height: 48px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 18px; }
.blue-card .card-icon { background: var(--blue-soft); color: var(--blue-dark); }
.green-card .card-icon { background: var(--green-soft); color: var(--green-dark); }
.silver-card .card-icon { background: var(--silver-soft); color: var(--silver-dark); }
.card h3,
.step h3 { margin: 0 0 8px; color: var(--blue-dark); font-size: 20px; }
.card p,
.step p { margin: 0; color: var(--text-light); font-size: 15px; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.panel { border-radius: 30px; padding: 34px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { border-radius: var(--radius); padding: 24px; }
.step span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-weight: 900; margin-bottom: 18px; }

.audience-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-pills span {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 15px;
  color: #43546a;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(78, 150, 197, .08);
}

.contact-section { background: var(--bg); }
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 0%, rgba(167, 201, 87, .30), transparent 30%),
    linear-gradient(135deg, var(--blue-soft) 0%, var(--silver-soft) 50%, var(--green-soft) 100%);
  box-shadow: var(--shadow);
}
.cta-box h2 { color: #263b50; }
.cta-box p { max-width: 640px; color: #465a70; }
.section-kicker.light { color: var(--blue-dark); }
.contact-card { display: grid; gap: 9px; border-radius: 26px; padding: 24px; background: rgba(255, 255, 255, .74); backdrop-filter: blur(12px); }
.contact-card strong { color: var(--blue-dark); font-size: 20px; }
.contact-card .btn { width: fit-content; margin-top: 10px; }

.site-footer { background: linear-gradient(90deg, var(--blue-dark), #6eac66); color: rgba(255, 255, 255, .90); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner strong, .footer-inner span { display: block; }
.footer-inner strong { color: var(--white); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid, .split-grid, .cta-box { grid-template-columns: 1fr; }
  .service-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .section-head.compact { margin-bottom: 28px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar { display: none; }
  .nav { height: 74px; }
  .brand { min-width: 0; }
  .brand-logo { width: 54px; height: 54px; }
  .brand-text span, .header-cta { display: none; }
  h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero { padding: 58px 0 56px; }
  .hero-card, .panel, .cta-box { padding: 24px; border-radius: 24px; }
  .trust-row, .service-grid, .steps { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
}
