:root {
  --blue: #1f49a5;
  --orange: #ef7d00;
  --cyan: #13b9e2;
  --gray: #6f7277;
  --ink: #192033;
  --surface: #ffffff;
  --soft-bg: #f5f8ff;
  --radius: 16px;
  --shadow: 0 14px 32px rgba(23, 39, 90, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(19, 185, 226, 0.16), transparent 32%),
    radial-gradient(circle at 92% 5%, rgba(239, 125, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, #f4f7ff 100%);
  line-height: 1.6;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5ecff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.65rem 0;
}

.brand img {
  width: 210px;
}

.site-nav {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.site-nav a {
  color: #273249;
  font-weight: 600;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav .is-active {
  background: #ebf2ff;
  color: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.74rem 1.2rem;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9b1f);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #2a66dc);
}

.hero {
  padding: 4.2rem 0 2.8rem;
}

.hero-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(120deg, rgba(14, 46, 116, 0.98), rgba(22, 112, 187, 0.94) 55%, rgba(19, 185, 226, 0.9));
  color: #fff;
  padding: min(6vw, 3.8rem);
  box-shadow: var(--shadow);
}

.hero-box::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  top: -90px;
  right: -70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(242, 247, 255, 0.9);
}

.hero h1 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  margin: 0;
  line-height: 1.1;
  font-size: clamp(2.1rem, 4.3vw, 3.65rem);
  max-width: 15ch;
}

.hero p {
  max-width: 58ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-chip {
  font-size: 0.82rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

.hero-panel {
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(8, 18, 49, 0.26);
}

.hero-panel p,
.hero-panel h3 {
  margin: 0;
}

.hero-panel-primary {
  background: linear-gradient(130deg, rgba(16, 30, 70, 0.75), rgba(17, 82, 151, 0.62));
}

.hero-panel-primary p:first-child {
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.hero-panel-primary h3 {
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: 1.22rem;
  margin-bottom: 0.45rem;
}

.hero-panel-secondary {
  background: linear-gradient(130deg, rgba(239, 125, 0, 0.25), rgba(255, 162, 41, 0.34));
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.55rem;
  margin-top: 0.55rem;
}

.section {
  padding: 2.2rem 0;
}

.section h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.9vw, 2.1rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eeff;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 39, 90, 0.16);
}

.card h3 {
  margin-top: 0;
}

.pill {
  display: inline-block;
  background: #edf3ff;
  border-radius: 999px;
  color: var(--blue);
  padding: 0.2rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
}

form {
  background: #fff;
  border: 1px solid #e0e8ff;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.kpi:hover {
  transform: translateY(-3px);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: block;
  font-weight: 600;
  margin: 0.7rem 0 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cad7ff;
  border-radius: 11px;
  padding: 0.72rem;
  font: inherit;
}

textarea {
  min-height: 120px;
}

.flash {
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

.flash-success {
  background: #e3f8ea;
  color: #145738;
}

.flash-error {
  background: #fce8e8;
  color: #8d1717;
}

.site-footer {
  margin-top: 3rem;
  background: #0f1b35;
  color: #f7f9ff;
  padding: 2.4rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-grid a {
  color: #c5dbff;
}

.footer-logo {
  width: 220px;
  filter: brightness(1.08);
}

.footer-bottom {
  padding-top: 0.8rem;
  border-top: 1px solid #2a3652;
  margin-top: 1rem;
}

.small {
  font-size: 0.92rem;
  color: #a8b7d6;
}

.kpi {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dce7ff;
}

.kpi strong {
  display: block;
  font-size: 1.65rem;
  color: var(--orange);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid #ccd8f8;
  background: #fff;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  cursor: pointer;
}

.filter-btn.is-selected {
  background: #e6f0ff;
  border-color: #abc1ff;
}

@media (max-width: 960px) {
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-block;
    border: 1px solid #cbd8ff;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    top: 66px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dbe4ff;
    box-shadow: var(--shadow);
    padding: 0.75rem;
    border-radius: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-box {
    border-radius: 20px;
  }

  .hero h1 {
    max-width: none;
  }
}
