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

:root {
  --navy: #1a2744;
  --blue: #2563eb;
  --light: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 8px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 clamp(1rem, 4vw, 2rem);
}
nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
nav .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
nav .cta-phone {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}
nav .cta-phone:hover { background: #1d4ed8; }

/* ── HERO ── */
.hero {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,45,0.82) 0%, rgba(10,20,45,0.25) 55%, transparent 100%);
}
.hero .content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}
.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  max-width: 600px;
}
.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: #1d4ed8; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
}
.proof-bar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.proof-bar .stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.proof-bar strong { color: var(--text); font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem); }
.section .inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section p {
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  font-size: 0.95rem;
}
.service-card .icon {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.service-card p { color: var(--muted); font-size: 0.875rem; margin: 0; }

/* ── ABOUT / PROOF ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ── REVIEWS ── */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.review-card .stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.6rem; letter-spacing: 1px; }
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-style: normal;
}
.review-card .author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item summary {
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.975rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--blue); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-list li { display: flex; gap: 0.75rem; font-size: 0.9rem; }
.contact-list .label { font-weight: 700; color: var(--navy); min-width: 80px; }
.contact-list .val { color: var(--muted); }
.contact-list a { color: var(--blue); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e2e8f0;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}
.cta-banner .inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 0.85rem 2rem; }

/* ── FOOTER ── */
footer {
  background: #0d1726;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
/* mobile responsiveness guardrails: no horizontal scroll at 320px, 375px, 428px widths */
@media (max-width: 768px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid img { aspect-ratio: 16/9; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .proof-bar .inner { gap: 0.4rem 1.25rem; }
  .about-stats { grid-template-columns: 1fr; }
}
