:root {
  --navy: #242464;
  --teal: #00aea9;
  --teal-light: #7cd5d4;
  --orange: #ff8d39;
  --orange-dark: #f07a22;
  --text: #4d4d4d;
  --dark: #161922;
  --light: #f4f7f9;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal); }
h1, h2, h3 { color: var(--navy); line-height: 1.2; margin: 0 0 .6em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); text-align: center; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
section { padding: 72px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .75em 1.4em; border-radius: 40px; font-weight: 700;
  text-decoration: none; transition: background .2s, color .2s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: 1.1rem; padding: .95em 1.8em; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.logo img { display: block; width: 190px; }
.header-call svg { width: 18px; height: 18px; fill: currentColor; }

/* Hero */
.hero {
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,0) 70%),
              url("/img/hero.webp") center right / cover no-repeat;
  padding: 110px 0 120px;
}
.hero-copy { max-width: 560px; }
.eyebrow { color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .6em; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 900; }
.hero h1 span { color: var(--orange); }
.lead { font-size: 1.2rem; margin: 0 0 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Intro */
.intro { background: var(--navy); color: var(--white); text-align: center; padding: 56px 0; }
.intro p { font-size: 1.2rem; font-weight: 300; margin: 0; }

/* Stats */
.stats { background: var(--light); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; color: var(--teal); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; }
.stat span { display: block; color: var(--navy); font-weight: 500; }
.stat small { color: #929292; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.card {
  background: var(--white); border-radius: 12px; padding: 32px 24px; text-align: center;
  box-shadow: 0 6px 24px rgba(36,36,100,.08); border-top: 4px solid var(--teal);
}
.card img { width: 85px; height: 85px; margin-bottom: 12px; }
.card p { margin: 0; font-size: .97rem; }

/* Apply / form */
.apply { background: linear-gradient(135deg, var(--teal) 0%, #00bae1 100%); text-align: center; color: var(--white); }
.apply h2 { color: var(--white); }
.apply a { color: var(--white); font-weight: 700; }
.form-embed { margin-top: 28px; background: var(--white); border-radius: 12px; color: var(--text); }
.form-embed:empty { display: none; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
blockquote {
  margin: 0; background: var(--light); border-radius: 12px; padding: 28px 28px 24px;
  border-left: 5px solid var(--orange);
}
blockquote p { margin: 0 0 1em; font-style: italic; }
cite { color: var(--navy); font-weight: 700; font-style: normal; }

/* CTA */
.cta { background: var(--navy); text-align: center; }
.cta h2 { color: var(--white); }

/* Footer */
.site-footer { background: var(--dark); color: #b9bcc6; text-align: center; padding: 40px 0 48px; font-size: .9rem; }
.footer-logo { width: 180px; background: var(--white); border-radius: 8px; padding: 8px 12px; margin-bottom: 12px; }
.site-footer p { margin: .3em 0; }

/* Mobile sticky call bar */
.mobile-call { display: none; }

@media (max-width: 900px) {
  .stats-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; padding-bottom: 64px; }
  section { padding: 52px 0; }
  .logo img { width: 150px; }
  .header-call span { display: none; }
  .header-call { padding: .7em; }
  .hero { padding: 64px 0 72px; background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)), url("/img/hero.webp") 70% center / cover no-repeat; }
  .hero-actions .btn { flex: 1 1 100%; }
  .stats-grid, .services-grid { grid-template-columns: 1fr; }
  .mobile-call {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
    background: var(--orange); color: var(--white); text-align: center; font-weight: 700;
    padding: 18px; text-decoration: none; font-size: 1.1rem;
  }
}
