/* =====================================================================
   SITE COLORS  —  change a value here and it updates across the whole site.
   Pick new color codes at https://htmlcolorcodes.com
   ===================================================================== */
:root {
  --blue: #2E6CA6;       /* main accent: buttons, links, highlights */
  --blue-dark: #234F79;  /* darker accent: button hover */
  --blue-light: #7AB8E6; /* light accent: step badges, focus rings */
  --ink: #16243A;        /* headings / dark navy text */
  --grey: #5E6E7E;       /* body text */
  --grey-light: #9AA7B2; /* muted labels, captions */
  --line: #DCE6EF;       /* thin divider lines / borders */
  --bg-soft: #F1F4F8;    /* soft section background */
  --max: 1080px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand span { color: var(--blue); }
.nav__brand i { color: var(--grey-light); font-style: normal; font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { text-decoration: none; color: var(--grey); font-size: 15px; font-weight: 500; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav__cta:hover { background: var(--blue-dark); }

/* Hero */
.hero { width: 100%; border-bottom: 1px solid var(--line); }
.hero__banner { display: block; width: 100%; height: auto; }

/* Sections */
section { padding: 46px 32px; }
.intro, .services, .approach, .contact, .testimonials, .about { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 12px;
}
.intro h1 { font-size: 44px; line-height: 1.15; margin: 0 0 14px; max-width: 28ch; }
.lead { font-size: 20px; color: var(--grey); max-width: 60ch; margin: 0 0 10px; }

h2 { font-size: 32px; margin: 0 0 14px; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn:hover { background: var(--blue-dark); }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { background: var(--bg-soft); }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
}
.card h3 { margin: 0 0 10px; font-size: 20px; color: var(--blue); }
.card p { margin: 0; color: var(--grey); }

/* Approach steps */
.approach { background: transparent; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.steps span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.steps h3 { margin: 4px 0 6px; font-size: 19px; }
.steps p { margin: 0; color: var(--grey); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote blockquote {
  margin: 0;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
}
.quote figcaption { display: flex; flex-direction: column; }
.quote figcaption strong { color: var(--blue); font-size: 15px; }
.quote figcaption span { color: var(--grey-light); font-size: 14px; }

/* About */
.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}
.about__text h2 { margin: 0 0 18px; }
.about__text p { color: var(--grey); font-size: 18px; margin: 0 0 10px; }
.about__stats { display: grid; gap: 12px; }
.stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 20px;
}
.stat strong { display: block; font-size: 30px; color: var(--blue); }
.stat span { color: var(--grey); font-size: 15px; }

/* Contact */
.contact {
  text-align: center;
  background: var(--bg-soft);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact h2 { margin-bottom: 12px; }
.contact > p { color: var(--grey); margin: 0 0 18px; font-size: 18px; }

/* Contact form */
.contact__form {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(122, 184, 230, 0.25);
}
.contact__form .btn { justify-self: start; cursor: pointer; border: none; }
.contact__note { min-height: 20px; font-size: 14px; margin: 0; }
.contact__alt { margin: 22px 0 0; color: var(--grey); font-size: 15px; }
.contact__alt a { color: var(--blue); }

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 32px;
  font-size: 14px;
  color: var(--grey-light);
}
.footer span:first-child { font-weight: 700; color: var(--ink); }

/* Responsive */
@media (max-width: 880px) {
  .quotes { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .intro h1 { font-size: 32px; }
  .cards { grid-template-columns: 1fr; }
  section { padding: 38px 20px; }
}
