/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1e3d52;
  --navy-md: #254e67;
  --blue:    #1e3d52;
  --blue-lt: #4d85a4;
  --sky:     #eef4f8;
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-400:#94a3b8;
  --gray-600:#475569;
  --gray-800:#1e293b;
  --text:    #1e293b;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(30,61,82,.08);
  --shadow-lg: 0 8px 40px rgba(30,61,82,.16);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--gray-600); line-height: 1.75; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* ─── LAYOUT ──────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}
.section-alt {
  background: var(--gray-50);
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(30,61,82,.35);
}
.btn-primary:hover { background: var(--navy-md); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(30,61,82,.45); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

.btn-nav {
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}
.btn-nav:hover { background: var(--navy-md); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; }

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  padding: 5.5rem 3.5rem 5.5rem max(1.5rem, calc((100vw - 1100px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.8) saturate(0.9);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.hero .eyebrow { color: var(--blue-lt); }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* ─── SECTION HEADER ──────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-sub {
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ─── CARDS ───────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.card p  { font-size: 0.925rem; }

/* ─── ABOUT ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1rem; font-size: 1rem; }

blockquote {
  border-left: 3px solid var(--blue);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  box-shadow: var(--shadow);
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.about-stats-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow);
  min-width: 90px;
}
.stat-chip strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-chip span {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.2rem;
}

.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-image-wrap:hover .about-img {
  transform: scale(1.03);
}

/* ─── CTA BANNER ──────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  padding: 5rem 0;
}
.cta-banner-inner {
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ─── CONTACT ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-info p  { margin-bottom: 1.5rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--blue); }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--sky);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

/* ─── FORM ─────────────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.925rem;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer .logo-img-footer { filter: brightness(0) invert(1); opacity: 0.85; }
.footer p { font-size: 0.85rem; color: rgba(255,255,255,.45); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 280px;
    order: -1;
  }
  .hero-image::before {
    background: linear-gradient(to bottom, var(--navy) 0%, transparent 40%);
  }
  .hero-text {
    padding: 3rem 1.5rem 4rem;
  }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-toggle { display: flex; }

  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrap { order: -1; aspect-ratio: 16/9; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .about-stats-row { gap: 0.75rem; }
  .stat-chip { min-width: 80px; }
}
