:root {
  --navy: #0a3f91;
  --navy-deep: #062d67;
  --teal: #28c5d8;
  --sky: #dff7ff;
  --white: #ffffff;
  --text: #17314e;
  --muted: #64809b;
  --line: rgba(10, 63, 145, 0.14);
  --shadow: 0 18px 45px rgba(6, 45, 103, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 32%, #f8fdff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,63,145,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand img { height: 68px; width: auto; }
.nav { display: flex; gap: 26px; font-weight: 600; color: var(--navy-deep); }
.nav a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(40,197,216,0.22);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary, .btn-outline {
  border: 1.5px solid rgba(10,63,145,0.18);
  color: var(--navy-deep);
  background: rgba(255,255,255,0.76);
}
.btn-secondary:hover, .btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(40,197,216,0.20), transparent 35%),
    radial-gradient(circle at bottom right, rgba(10,63,145,0.12), transparent 28%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
}
.eyebrow, .section-kicker {
  display: inline-block;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 16px;
}
.hero h1, .section-heading h2, .about-copy h2, .quote-section h2, .cta-inner h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  color: var(--navy-deep);
}
.hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.hero p, .section-heading p, .about-copy p, .quote-section p, .site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-list li {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(10,63,145,0.08);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}
.hero-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}

.highlight-bar {
  padding: 0 0 18px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.highlight-grid > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(6,45,103,0.06);
}
.highlight-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.highlight-grid span { color: var(--muted); line-height: 1.6; }

.section { padding: 86px 0; }
.section-heading.center { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,250,255,0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(6,45,103,0.06);
}
.service-card h3 { margin-top: 0; color: var(--navy-deep); }
.service-card p { margin-bottom: 0; color: var(--muted); }

.about-grid, .quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image-wrap {
  background: linear-gradient(135deg, rgba(10,63,145,.10), rgba(40,197,216,.14));
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.about-image { border-radius: 24px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy-deep);
  font-weight: 700;
}

.quote-section {
  background: linear-gradient(180deg, rgba(225,248,255,0.65), rgba(255,255,255,0.92));
}
.contact-card {
  margin-top: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
}
.quote-form {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-deep);
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(10,63,145,0.16);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(40,197,216,.22);
  border-color: var(--teal);
}
.full-btn { width: 100%; margin-top: 8px; }
.form-note { font-size: .94rem; margin-top: 12px; }

.cta-strip { padding-top: 32px; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--teal) 100%);
  color: white;
  padding: 38px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.cta-inner h2 { color: white; margin-bottom: 0; }
.cta-inner .section-kicker { color: rgba(255,255,255,.8); }

.site-footer {
  padding: 52px 0 42px;
  background: #081e46;
  color: rgba(255,255,255,.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h3 { margin-top: 0; color: white; }
.footer-logo { max-width: 240px; margin-bottom: 16px; }
.footer-note { color: #89dcf0 !important; font-weight: 700; }
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: #89dcf0; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid, .about-grid, .quote-grid, .footer-grid, .highlight-grid, .service-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand img { height: 56px; }
  .hero { padding-top: 36px; }
  .section { padding: 68px 0; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
