:root {
  --ink: #172033;
  --muted: #667085;
  --line: #e6ebf2;
  --white: #ffffff;
  --soft: #f6f8fb;
  --navy: #14213d;
  --gold: #c7a35a;
  --gold-dark: #96743c;
  --shadow: 0 24px 60px rgba(20, 33, 61, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 34px)); margin: 0 auto; }
.section-pad { padding: 86px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--gold));
  box-shadow: 0 12px 25px rgba(20,33,61,.18);
}
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: .25s ease;
}
.nav-links a:hover { color: var(--navy); background: var(--soft); }
.menu-toggle { display: none; background: none; border: 0; font-size: 28px; color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(199,163,90,.20), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}
.hero-bg-shape { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .72; }
.shape-one { width: 360px; height: 360px; background: rgba(20,33,61,.09); top: 80px; right: -150px; }
.shape-two { width: 260px; height: 260px; background: rgba(199,163,90,.16); bottom: 30px; left: -120px; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
  min-height: 620px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--navy); }
h1 { font-size: clamp(46px, 7vw, 86px); letter-spacing: -.06em; }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -.045em; }
h3 { font-size: 22px; letter-spacing: -.02em; }
.lead { max-width: 710px; font-size: clamp(18px, 2vw, 23px); color: #344054; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--navy), #22375f); box-shadow: 0 18px 35px rgba(20,33,61,.24); }
.btn-secondary { color: var(--navy); border: 1px solid var(--line); background: var(--white); }
.hero-card {
  position: relative;
  border: 1px solid rgba(199,163,90,.28);
  border-radius: var(--radius-xl);
  padding: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(199,163,90,.28);
  border-radius: 24px;
  pointer-events: none;
}
.card-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--navy));
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-card h2 { font-size: 32px; margin-bottom: 14px; }
.hero-card p { color: var(--muted); margin-bottom: 24px; }
.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
}
.contact-strip span { color: var(--muted); }
.contact-strip strong { color: var(--navy); }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.intro { background: var(--white); }
.intro-text {
  padding: 30px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--soft);
}
.intro-text p { margin-top: 0; color: #3b465b; font-size: 18px; }
.intro-text p:last-child { margin-bottom: 0; }
.center-heading { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.services { background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(16,24,40,.06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(199,163,90,.55); box-shadow: var(--shadow); }
.service-card.wide { grid-column: span 2; }
.number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--gold-dark);
  background: #fff7e7;
  font-weight: 900;
}
.service-card p { color: var(--muted); }
.coverage-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #243b68);
  box-shadow: var(--shadow);
}
.coverage-panel h2, .coverage-panel .eyebrow { color: var(--white); }
.coverage-panel p { color: rgba(255,255,255,.8); }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.coverage-tags span {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}
.highlight { background: var(--white); }
.highlight-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.highlight-card, .process-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--soft);
}
.highlight-card p, .process-card p { color: #445064; font-size: 18px; }
.highlight-card .btn { margin-top: 12px; }
.process-card { background: #fff; box-shadow: var(--shadow); }
.process-card span { display: block; color: var(--gold-dark); font-weight: 900; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.contact { background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%); }
.contact-box {
  text-align: center;
  padding: 54px 28px;
  border: 1px solid rgba(199,163,90,.35);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-box p { max-width: 720px; margin: 16px auto; color: var(--muted); font-size: 18px; }
.phone-link {
  display: inline-flex;
  margin-top: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gold-dark);
  font-weight: 900;
}
.footer {
  padding: 38px 0;
  background: #101828;
  color: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .6fr; gap: 28px; }
.footer p { color: rgba(255,255,255,.72); margin: 8px 0 0; }
.footer span, .footer strong { font-weight: 900; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .coverage-panel, .highlight-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 36px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .section-pad { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .coverage-panel, .highlight-card, .process-card { padding: 26px; }
  .contact-strip { flex-direction: column; }
}
