:root {
  --navy: #16284a;
  --navy-deep: #0f1d38;
  --steel: #2f6fb3;
  --steel-light: #4f93d6;
  --ink: #1a2230;
  --slate: #5a667a;
  --line: #e3e8f0;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --accent: #f4a01c;
  --accent-dark: #d8870a;
  --radius: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: "Barlow Condensed", "Inter", sans-serif; line-height: 1.1; margin: 0; letter-spacing: .2px; }

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 8px;
  transition: transform .12s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 15px 30px; font-size: 17px; }
.btn--accent { background: var(--accent); color: #1a1300; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--navy); }

/* Top bar */
.topbar { background: var(--navy-deep); color: #d8e2f0; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__phone { font-weight: 600; color: #fff; }
.topbar__phone:hover { color: var(--accent); }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand__logo { display: block; height: 42px; width: auto; background: #fff; padding: 5px 11px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,.14); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #e7eefa; font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--accent); }
.nav__cta { color: #1a1300 !important; }
.nav__cta:hover { color: #1a1300 !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .2s; }

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #0f1d38 center/cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&q=80");
  color: #fff;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,29,56,.94) 0%, rgba(15,29,56,.82) 45%, rgba(15,29,56,.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(79,147,214,.25), transparent 45%);
}
.hero__content { position: relative; max-width: 760px; padding-top: 70px; padding-bottom: 70px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; color: var(--accent); margin: 0 0 14px; }
.hero__title { font-size: clamp(38px, 6vw, 68px); font-weight: 700; }
.hero__title span { color: var(--steel-light); }
.hero__sub { font-size: 19px; color: #cdd8e8; margin: 22px 0 32px; max-width: 600px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
.section { padding: 84px 0; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; color: var(--steel); margin: 0 0 10px; }
.section__title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: var(--navy); }
.section__lead { font-size: 18px; color: var(--slate); margin: 14px 0 40px; max-width: 620px; }

/* Grid + cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(22,40,74,.12); border-color: var(--steel-light); }
.card__icon { font-size: 34px; margin-bottom: 14px; }
.card h3 { font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 15.5px; margin: 0 0 16px; }
.card__link { color: var(--steel); font-weight: 600; font-size: 15px; }
.card__link:hover { color: var(--accent-dark); }

/* Stats */
.stats { background: var(--navy); color: #fff; padding: 56px 0 30px; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 54px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat__label { display: block; margin-top: 8px; color: #c4d2e6; font-size: 15px; font-weight: 500; }
.stats__note { color: #7e90ad; font-size: 12.5px; text-align: center; margin: 26px auto 0; }

/* Feature */
.feature { background: var(--bg-alt); }
.feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature__text p { color: var(--slate); font-size: 17px; margin: 16px 0 26px; }
.feature__media {
  min-height: 360px; border-radius: var(--radius);
  background: #1d3a66 center/cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=1200&q=80");
  box-shadow: 0 18px 40px rgba(22,40,74,.2);
}

/* Testimonials */
.quote { margin: 0; background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 28px 26px; }
.quote p { font-size: 16.5px; color: var(--ink); margin: 0 0 16px; font-style: italic; }
.quote footer { color: var(--slate); font-weight: 600; font-size: 14.5px; }

/* Values */
.values { background: var(--bg-alt); }
.value { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value h3 { font-size: 23px; color: var(--navy); margin-bottom: 6px; }
.value p { color: var(--slate); margin: 0; font-size: 15px; }
.values__grid { margin-top: 36px; }

/* CTA */
.cta { background: linear-gradient(135deg, #0f1d38, #2f6fb3); color: #fff; padding: 72px 0; text-align: center; }
.cta h2 { font-size: clamp(30px, 4vw, 46px); }
.cta p { font-size: 18px; color: #d4deec; margin: 14px 0 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--navy-deep); color: #b9c6db; font-size: 15px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 60px 0 40px; }
.footer__brand .brand__logo { height: 40px; margin-bottom: 16px; }
.footer__brand p { margin: 0 0 14px; max-width: 280px; }
.footer__phone { font-weight: 700; color: #fff; font-size: 18px; }
.footer__col h4 { font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; color: #fff; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: #b9c6db; margin-bottom: 10px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13.5px; color: #8395b0; }

/* Responsive */
@media (max-width: 900px) {
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); padding: 10px 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    box-shadow: 0 12px 20px rgba(0,0,0,.2);
  }
  .nav.open { max-height: 420px; }
  .nav a { padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.06); }
  .nav__cta { margin: 12px 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .grid, .grid--3, .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .feature__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid, .grid--3, .stats__inner, .footer__inner { grid-template-columns: 1fr; }
  .topbar__areas { display: none; }
  .section { padding: 60px 0; }
}
