:root {
  --navy: #0b1d36;
  --navy-deep: #071525;
  --navy-mid: #123056;
  --blue: #1e5aa8;
  --blue-bright: #2a6fce;
  --ink: #1c2430;
  --muted: #5a6573;
  --line: #e4e8ee;
  --paper: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 29, 54, 0.12);
  --radius: 14px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

.topbar {
  display: none;
}

.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 14px;
  min-height: 52px;
}
.brand-title {
  color: #fff;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: .01em;
  line-height: 1.15;
  margin-right: auto;
}
.brand-title:hover { color: #fff; }
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: rgba(255,255,255,.88); font-weight: 600; font-size: .84rem;
  padding: 6px 10px; border-radius: 8px;
}
nav a:hover, nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.header-phone {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: .01em;
  white-space: nowrap;
  order: 2;
}
.header-phone:hover { color: #cfe0ff; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 40px; height: 40px; border-radius: 8px; cursor: pointer;
  order: 3;
}
nav { order: 4; }

.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  align-items: center;
  min-height: 0;
  position: relative;
  z-index: 2;
  padding: 36px 0;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  z-index: 2;
  max-width: 32rem;
}
.hero h1 {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.15; margin: 0 0 10px; font-weight: 800;
}
.hero .tagline {
  color: rgba(255,255,255,.88);
  font-size: .98rem;
  max-width: 30rem;
  margin: 0;
  line-height: 1.5;
}
.hero-form-wrap {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0;
  z-index: 2;
}
.hero-photo {
  position: absolute; inset: 0;
  background: center 40%/cover no-repeat;
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy) 0%, rgba(11,29,54,.92) 42%, rgba(11,29,54,.55) 68%, rgba(11,29,54,.25) 100%);
}
.quote-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.quote-form h2 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.quote-form label {
  display: block;
  font-weight: 700;
  font-size: .78rem;
  margin: 0 0 3px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: .9rem;
  margin-bottom: 9px;
}
.radio-group {
  display: grid; gap: 6px;
  margin-bottom: 9px;
}
.radio-group label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .82rem;
  margin: 0;
}
.radio-group input { width: auto; margin: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 8px; font-weight: 800; cursor: pointer;
  padding: 14px 22px; font-size: .95rem; font-family: inherit;
}
.btn-blue { background: var(--blue); color: #fff; width: 100%; }
.btn-blue:hover { background: var(--blue-bright); color: #fff; }

.actions { background: var(--white); padding: 48px 0; }
.action-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 760px; margin: 0 auto;
}
.action-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); text-align: center;
}
.action-card .icon {
  width: 48px; height: 48px; border-radius: 12px; background: #edf3fb;
  display: grid; place-items: center; color: var(--blue); margin: 0 auto 14px;
  font-size: 1.4rem;
}
.action-card h2 { margin: 0 0 8px; font-size: 1.2rem; color: var(--blue); }
.action-card p { margin: 0 0 12px; color: var(--muted); }
.action-card a { font-weight: 800; }

section { padding: 84px 0; }
.center { text-align: center; }
.kicker { color: var(--blue); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; margin: 0 0 8px; }
h2.section-title {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 12px; color: var(--navy); line-height: 1.2;
}
.lede { color: var(--muted); font-size: 1.05rem; max-width: 46rem; }
.center .lede { margin: 0 auto 36px; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.prose h2 { margin-top: 0; }
.prose p { color: #334155; }
.prose p + p { margin-top: 1rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
}
.stat b { display: block; font-size: 2.4rem; font-family: "Libre Franklin", sans-serif; }
.stat span { color: rgba(255,255,255,.75); font-size: .92rem; }

.trust-bar {
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  text-align: center; font-weight: 800; color: var(--navy); font-size: .95rem;
}
.trust-bar li { padding: 0 12px; border-right: 1px solid var(--line); }
.trust-bar li:last-child { border-right: 0; }

.testimonial { background: var(--paper); }
.testimonial-video-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.team { background: #fff; }
.team-heading {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  color: var(--navy);
  margin: 0 0 40px;
  line-height: 1.15;
  font-weight: 800;
}
.team-feature {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 40px;
  align-items: center;
  margin: 8px auto 56px;
  max-width: 920px;
}
.team-feature-photo {
  position: relative;
}
.team-feature-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}
.team-feature-photo::after {
  content: "";
  position: absolute;
  inset: auto -10px -10px auto;
  width: 42%;
  height: 42%;
  border: 2px solid var(--blue);
  border-radius: 18px;
  z-index: -1;
}
.team-feature-copy .role {
  color: var(--blue);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.team-feature-copy h3 {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.15;
}
.team-feature-copy p {
  color: #334155;
  margin: 0 0 12px;
  max-width: 36rem;
}
.team-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--blue);
}
.team-cta:hover { color: var(--blue-bright); }

.team-subhead {
  text-align: center;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.team-founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
  max-width: 720px;
  margin: 0 auto;
}
.founder { text-align: center; }
.founder img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin: 0 auto 16px;
  outline: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.founder h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.1rem;
}
.founder .role {
  color: var(--blue);
  font-weight: 700;
  font-size: .82rem;
  margin: 0 0 10px;
}
.founder p {
  margin: 0 auto;
  color: var(--muted);
  font-size: .92rem;
  max-width: 18rem;
  line-height: 1.55;
}

.why { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-item {
  border: 1px solid var(--line); border-radius: 12px; padding: 20px 18px;
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  background: #fff;
}
.why-item b { display: block; color: var(--navy); margin-bottom: 4px; }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }
.num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .85rem;
}

.map-block iframe {
  width: 100%; height: 380px; border: 0; border-radius: var(--radius);
  filter: grayscale(.15) contrast(1.05);
}

.contact { background: var(--paper); }
.contact-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 32px; max-width: 520px; margin: 0 auto; text-align: center;
}
.contact-card h2 { color: #fff; margin-top: 0; }
.contact-card a { color: #fff; font-weight: 800; font-size: 1.35rem; }
.contact-card p { color: rgba(255,255,255,.8); }

footer {
  background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 48px 0 0;
}
.foot-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr; gap: 32px; padding-bottom: 36px; }
footer h3 { color: #fff; margin: 0 0 12px; font-size: 1rem; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin: 0 0 8px; }
footer a { color: rgba(255,255,255,.78); }
.foot-brand .foot-name {
  display: block;
  color: #fff;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.foot-brand img { width: 120px; height: auto; margin-bottom: 12px; background: transparent; }
.legal {
  background: var(--navy-mid); text-align: center; padding: 22px 16px; margin-top: 8px;
}
.legal strong { display: block; color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.legal p { margin: 0; font-size: .88rem; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; justify-content: center; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: .88rem; font-weight: 700; color: var(--navy);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 32px 0 40px; gap: 24px; }
  .hero-photo { position: relative; min-height: 200px; }
  .hero-photo::after { background: linear-gradient(0deg, var(--navy) 0%, transparent 55%); }
  .intro-grid, .action-grid, .team-feature, .team-founders, .why-grid, .foot-grid, .stats, .trust-bar ul {
    grid-template-columns: 1fr;
  }
  .team-feature { gap: 24px; margin-bottom: 44px; }
  .team-feature-photo { max-width: 280px; margin: 0 auto; }
  .team-feature-copy { text-align: center; }
  .team-feature-copy p { margin-left: auto; margin-right: auto; }
  .founder img { width: 112px; height: 112px; }
  .nav-toggle { display: grid; place-items: center; }
  nav {
    display: none; position: absolute; left: 0; right: 0; top: 52px;
    background: var(--navy-deep); flex-direction: column; padding: 12px 16px 20px;
    order: 5; width: 100%;
  }
  nav.open { display: flex; }
  .brand-title { white-space: normal; max-width: 11.5rem; font-size: 1.05rem; }
  .header-phone { font-size: 1.1rem; }
  .trust-bar li { border: 0; padding: 8px 0; }
}

@media (min-width: 961px) {
  nav a { padding: 6px 10px; font-size: .84rem; }
  .header-phone { order: 4; margin-left: 8px; }
  nav { order: 3; }
}
