@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary: #0a4f94;
  --primary-dark: #083767;
  --teal: #0f9e9c;
  --teal-dark: #087a78;
  --ink: #0f1d33;
  --muted: #5f6d83;
  --soft: #f2f8ff;
  --white: #ffffff;
  --line: #d7e6f6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 24px rgba(8, 52, 99, 0.08);
  --shadow-lg: 0 22px 60px rgba(8, 52, 99, 0.14);
  --max: 1180px;
  --nav-h: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(22, 173, 165, 0.09), transparent 40%),
    radial-gradient(circle at 95% 15%, rgba(10, 79, 148, 0.12), transparent 35%),
    linear-gradient(165deg, #f7fbff 0%, #eef6ff 52%, #f7fffe 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.6rem, 5vw, 5.8rem) 0;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-dark);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: #0c2b53;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 68ch;
}

.grid {
  display: grid;
  gap: 1.3rem;
}

.two-col,
.three-col,
.four-col {
  grid-template-columns: 1fr;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.84rem 1.45rem;
  font-size: 0.93rem;
  font-weight: 700;
  transition: all 0.28s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #1573cc);
  color: #fff;
  box-shadow: 0 12px 30px rgba(8, 73, 141, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 73, 141, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-color: #a8c9e9;
}

.btn-outline:hover {
  background: #fff;
  border-color: #72a8dd;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(89, 133, 180, 0.2);
}

.navbar {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #b8d2ea;
  background: #fff;
  display: grid;
  place-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  display: block;
}

.nav-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  width: min(82vw, 320px);
  height: calc(100dvh - var(--nav-h));
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateX(104%);
  transition: transform 0.3s ease;
  z-index: 901;
}

.nav-menu ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.nav-menu a {
  display: block;
  padding: 0.78rem 0.82rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #244469;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: #ecf5ff;
}

.nav-backdrop {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(5, 20, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 900;
}

.nav-open .nav-menu {
  transform: translateX(0);
}

.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: clamp(3.2rem, 6vw, 6rem) 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.35rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.1;
  color: #0a2a52;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media-wrap {
  display: grid;
  gap: 0.9rem;
}

.hero-media-main,
.hero-media-sub {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #d8e8f8;
}

.hero-media-main img {
  height: 330px;
  width: 100%;
  object-fit: cover;
}

.hero-media-sub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-media-sub img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-stat {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.85rem;
}

.hero-stat strong {
  display: block;
  color: #0a3d74;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-stat span {
  color: #617189;
  font-size: 0.82rem;
  font-weight: 600;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 52, 99, 0.15);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  color: #143761;
  font-size: 1.07rem;
  margin-bottom: 0.5rem;
}

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

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.33rem 0.66rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(130deg, var(--primary), var(--teal));
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.image-card .card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.highlight {
  background: linear-gradient(120deg, #0a4f94 0%, #0e72bc 46%, #0d9e9b 100%);
}

.highlight .section-title,
.highlight .section-lead,
.highlight .kicker {
  color: #e9f4ff;
}

.highlight .kicker::before {
  background: #8de4df;
}

.highlight .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(207, 232, 255, 0.3);
}

.highlight .card h3,
.highlight .card p {
  color: #eff9ff;
}

.trust-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item {
  border: 1px solid #deebf8;
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #30527c;
  background: #f9fcff;
}

.process-step {
  position: relative;
  padding-left: 1.1rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.quote-card {
  position: relative;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: 0.3rem;
  right: 0.9rem;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #a8c5e4;
}

.quote-meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #dbeaf8;
}

.quote-meta strong {
  display: block;
  color: #173a64;
  font-size: 0.93rem;
}

.quote-meta span {
  color: #64809e;
  font-size: 0.82rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #163b67;
  padding: 0.95rem 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: #5f7288;
  padding: 0 1rem 1rem;
}

.faq-item[open] summary {
  background: #f3f9ff;
}

.cta-band {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(130deg, #083a72 0%, #0d64a8 43%, #0d8f8d 100%);
  color: #fff;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: 0.9rem;
  align-items: center;
}

.cta-band h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.cta-band p {
  color: #d7eaff;
}

.contact-chip-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.contact-chip-list li {
  background: #f2f8ff;
  border: 1px solid #d5e6f8;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  color: #2a4e79;
}

.page-hero {
  padding: clamp(2.7rem, 4.8vw, 4rem) 0;
  border-bottom: 1px solid #d5e6f7;
  background: linear-gradient(160deg, #f6fbff, #eaf5ff);
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #0d315a;
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 72ch;
  color: #5e738e;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.field {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #24486e;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfe0f1;
  border-radius: 10px;
  background: #fafdff;
  font: inherit;
  padding: 0.76rem 0.82rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(12, 106, 192, 0.2);
  border-color: #7daee0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cfe2f5;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  margin-top: 3rem;
  background: #071f3c;
  color: #d8e8fa;
  padding: 2.5rem 0 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover {
  color: #8be4df;
}

.footer-note {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(174, 204, 236, 0.25);
  text-align: center;
  font-size: 0.84rem;
  color: #a5c1de;
}

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

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

@media (min-width: 720px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-media-sub img {
    height: 150px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 992px) {
  .menu-toggle,
  .nav-backdrop {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1.8rem;
  }

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

  .four-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .hero-media-main img {
    height: 410px;
  }
}
