:root {
  --blue: #075BC5;
  --blue-dark: #043a7f;
  --green: #67A33A;
  --green-dark: #4d7d2b;
  --white: #ffffff;
  --ink: #183047;
  --muted: #5e7387;
  --bg: #f5f9ff;
  --card: #ffffff;
  --border: #d9e7fb;
  --shadow: 0 18px 50px rgba(7, 91, 197, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(103,163,58,0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(7,91,197,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-size: 1.08rem;
}

.brand-text small {
  display: block;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.menu a {
  color: var(--blue-dark);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #1f78f0);
  color: var(--white);
  font-weight: 800;
  border: 2px solid transparent;
  box-shadow: 0 12px 30px rgba(7, 91, 197, 0.22);
}

.btn:hover { transform: translateY(-1px); }

.btn-small { min-height: 42px; padding: 0.7rem 1rem; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: rgba(7,91,197,0.22);
  box-shadow: none;
}

.light-outline {
  color: white;
  border-color: rgba(255,255,255,0.35);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(103,163,58,0.12);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--blue);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.hero-card {
  position: relative;
}

.logo-panel,
.info-card,
.service-card,
.about-panel,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-panel {
  padding: 1.25rem;
}

.shield {
  border-radius: 30px;
  padding: 1rem;
  background: linear-gradient(160deg, var(--blue), #0e72ef 70%, var(--green));
}

.shield-inner {
  border-radius: 24px;
  min-height: 355px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.92));
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.shield h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
}

.shield h2 span {
  color: var(--blue);
  letter-spacing: 0.04em;
}

.shield p {
  margin: 0.5rem 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.info-card {
  padding: 1.25rem;
  margin-top: 1rem;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.question-list {
  display: grid;
  gap: 0.75rem;
}

.question {
  background: linear-gradient(90deg, rgba(7,91,197,0.08), rgba(103,163,58,0.08));
  border: 1px solid rgba(7,91,197,0.08);
  color: var(--blue-dark);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 800;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2,
.about h2,
.cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-head p:last-child,
.about p,
.cta p {
  color: var(--muted);
}

.services,
.about,
.cta {
  padding: 3rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.25rem;
  min-height: 220px;
}

.service-card h3 {
  margin: 0.5rem 0;
  line-height: 1.2;
}

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

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(7,91,197,0.08);
  font-size: 1.6rem;
}

.service-card.highlight {
  background: linear-gradient(135deg, var(--blue), #0f6be0);
  color: white;
  border-color: transparent;
}

.service-card.highlight p {
  color: rgba(255,255,255,0.82);
}

.service-card.highlight .service-icon {
  background: rgba(255,255,255,0.16);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.about-panel {
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(7,91,197,0.05), rgba(103,163,58,0.08));
}

.check-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(7,91,197,0.1);
  font-weight: 700;
}

.check-item:last-child {
  border-bottom: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  border-color: transparent;
}

.cta .eyebrow {
  background: rgba(255,255,255,0.12);
  color: #dff1ff;
}

.cta p {
  color: rgba(255,255,255,0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #0a2340;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.45rem;
}

.site-footer p {
  margin: 0.2rem 0;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 0.25rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .trust-list {
    gap: 0.75rem 1rem;
  }
}
