@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Lato:wght@400;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #152238;
  --blue: #1B4FD8;
  --blue-light: #2E6AF6;
  --gold: #F0A500;
  --white: #ffffff;
  --off-white: #F8F9FC;
  --gray: #555E6D;
  --light-gray: #ECEEF2;
  --border: #DEE2EA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
header {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo span { color: var(--gold); }

nav { display: flex; gap: 2rem; align-items: center; }

nav a {
  color: #9BA8BB;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-light) !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.35);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.1rem;
  color: #8A97AB;
  margin-bottom: 2.2rem;
  max-width: 500px;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* hero card */
.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 12px 12px 0 0;
}

.hero-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9BA8BB;
  font-size: 0.95rem;
}

.hero-card ul li::before {
  content: '✓';
  background: var(--blue);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar span {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 0.6rem;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,0.1); }
.service-card:nth-child(even) { border-top-color: var(--gold); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step { text-align: center; padding: 1.5rem 1rem; }

.step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
}

.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.95rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.cta-band h2 span { color: var(--gold); }
.cta-band p { color: #8A97AB; font-size: 1.05rem; margin-bottom: 2rem; }

/* ── AREAS ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.area-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #8A97AB;
  padding: 3.5rem 5% 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { font-size: 1.2rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; }

footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul li a { font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── MOBILE ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; }

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.2rem; border-bottom: 2px solid var(--blue); }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-bar { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 65px 5%;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: #8A97AB; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── CONTENT ── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.7rem; margin: 2.5rem 0 0.8rem; font-weight: 800; }
.content-block p { color: var(--gray); margin-bottom: 1rem; }
.content-block ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--gray); }
.content-block ul li { margin-bottom: 0.5rem; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.88rem; font-family: 'Montserrat', sans-serif; color: var(--navy); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
  color: var(--navy);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; font-size: 1rem; padding: 1rem; border-radius: 6px; }

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

.stat-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.stat-box .big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box p { color: #8A97AB; font-size: 0.95rem; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
