:root {
  --blue: #5A719D;
  --navy: #0D174B;
  --red: #BD3239;
  --white: #FFFFFF;
  --ice: #F3F7FB;
  --light-blue: #E7F1FA;
  --ink: #1C2430;
  --muted: #5D6878;
  --line: rgba(13, 23, 75, 0.12);
  --shadow: 0 24px 70px rgba(13, 23, 75, 0.14);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -50px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
}
.nav-wrap {
  min-height: 70px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  line-height: 1;
  flex: 0 0 auto;
}
.brand-wordmark { width: 158px; height: auto; }
.brand span {
  margin-left: 8px;
  margin-top: -2px;
  color: var(--navy);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 700;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--red); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--light-blue);
  border-radius: 14px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 10px;
}

section { position: relative; }
.section-blue {
  background: var(--blue);
  color: var(--white);
}
.section-blue-dark {
  background: var(--navy);
  color: var(--white);
}
.section-light { background: var(--light-blue); }
.section-white { background: var(--white); }

.hero {
  min-height: 740px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 92px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(90,113,157,.98) 0%, rgba(90,113,157,.9) 45%, rgba(90,113,157,.45) 100%),
    url("hero-building.jpg") center right / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -190px;
  top: 80px;
  border: 82px solid rgba(255,255,255,.13);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 54px;
  align-items: center;
}
.hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 24px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.lead {
  max-width: 680px;
  margin: 0 0 32px;
  font-size: 19px;
  color: rgba(255,255,255,.92);
}
.eyebrow {
  margin: 0;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.82);
}
.eyebrow.dark { color: var(--red); }
.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(189, 50, 57, .24);
}
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.28);
}
.btn-secondary.dark {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.hero-proof {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-proof div {
  min-width: 128px;
  padding: 16px 18px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
}
.hero-proof strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1;
}
.hero-proof span { display: block; font-size: 13px; opacity: .85; }
.hero-card {
  background: rgba(255,255,255,.95);
  color: var(--navy);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 8px solid var(--red);
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.hero-card-top img { width: 76px; height: 76px; border-radius: 20px; }
.hero-card-top p { margin: 0; font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-card h2, .hero-card-top h2 { margin: 2px 0 0; font-family: "Poppins", sans-serif; line-height: 1.1; }
.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0 1px var(--blue);
}

.benefit-strip {
  background: var(--navy);
  color: var(--white);
}
.strip-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.strip-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 18px;
  position: relative;
}
.strip-grid div::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--navy);
  background: var(--white);
}

.problem-section { padding: 92px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.problem-card h2,
.section-heading h2,
.framework-copy h2,
.founder-copy h2,
.cta-card h2,
.tools-side h2 {
  margin: 10px 0 18px;
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.problem-list {
  display: grid;
  gap: 18px;
}
.problem-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
}
.problem-item span {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.problem-item p { margin: 0; font-size: 18px; font-weight: 600; color: var(--navy); }

.section-white, .section-light { padding: 96px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  min-height: 460px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ice);
  border: 1px solid var(--line);
  overflow: hidden;
}
.service-card.featured {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-16px);
  box-shadow: var(--shadow);
}
.service-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 34px solid rgba(90,113,157,.12);
}
.service-card.featured::after { border-color: rgba(255,255,255,.18); }
.card-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  margin-bottom: 24px;
}
.service-card.featured .card-number { background: var(--white); color: var(--navy); }
.service-card h3 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy);
}
.service-card.featured h3 { color: var(--white); }
.service-card p { color: var(--muted); margin: 0 0 22px; }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,.9); }
.service-card ul { margin: 0; padding-left: 18px; display: grid; gap: 9px; font-weight: 600; }

.framework-section { padding: 100px 0; overflow: hidden; }
.framework-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,23,75,.18), rgba(13,23,75,.05)),
    url("hero-building-alt.jpg") center / cover no-repeat;
  opacity: .35;
}
.framework-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.framework-copy h2 { color: var(--white); }
.framework-copy p { color: rgba(255,255,255,.9); max-width: 520px; }
.small-note {
  padding-left: 18px;
  border-left: 4px solid var(--white);
  font-size: 14px;
  opacity: .88;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pillar-grid article {
  min-height: 210px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(13, 23, 75, .12);
}
.pillar-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.pillar-grid h3 { font-family: "Poppins", sans-serif; margin: 18px 0 8px; line-height: 1.12; }
.pillar-grid p { margin: 0; color: var(--muted); }

.steps-section { overflow: hidden; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps-grid div {
  min-height: 132px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(13,23,75,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.steps-grid div::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(90,113,157,.12);
}
.steps-grid span {
  color: var(--red);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
}
.steps-grid strong {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  color: var(--navy);
  line-height: 1.2;
}

.tools-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: stretch;
}
.tools-side {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tools-side img { height: 260px; width: 100%; object-fit: cover; opacity: .78; }
.tools-side div { padding: 32px; }
.tools-side h2 { color: var(--white); font-size: 38px; margin-bottom: 10px; }
.tools-side p { margin: 0; color: rgba(255,255,255,.82); }
.tool-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ice);
  border: 1px solid var(--line);
}
.tool-panel h3 {
  margin: 0 0 26px;
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  font-size: 28px;
}
.tool-groups { display: grid; gap: 20px; }
.tool-group {
  background: #DDEBF6;
  border-radius: 22px;
  padding: 20px;
}
.tool-group.highlight { background: #F6EBDD; }
.tool-group h4 { margin: 0 0 14px; color: var(--navy); font-family: "Poppins", sans-serif; }
.tool-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tool-items.two-col { grid-template-columns: repeat(2, 1fr); }
.tool-items a {
  min-height: 72px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  border: 1px solid rgba(13,23,75,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tool-items a:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,23,75,.09); }
.panel-note { margin: 20px 0 0; color: var(--muted); font-size: 14px; }

.proof-section { padding: 100px 0; overflow: hidden; }
.proof-section::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 56px solid rgba(255,255,255,.08);
}
.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 54px;
  align-items: center;
}
.founder-card {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #030617;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}
.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.founder-copy h2 { color: var(--white); }
.founder-copy p { color: rgba(255,255,255,.84); max-width: 720px; }
.credential-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.credential-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}

.event-gallery { padding-bottom: 104px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ice);
  box-shadow: 0 16px 36px rgba(13,23,75,.08);
}
.gallery-grid img { width: 100%; height: 320px; object-fit: cover; }
.gallery-grid figure:nth-child(4) img { object-position: center; }
.gallery-grid figcaption {
  padding: 14px 18px 18px;
  color: var(--navy);
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.trusted-section { padding-top: 90px; }
.logo-block { margin-top: 32px; }
.logo-block h3 { font-family: "Poppins", sans-serif; color: var(--navy); font-size: 22px; margin: 0 0 18px; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.logo-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(13,23,75,.08);
  box-shadow: 0 12px 28px rgba(13,23,75,.06);
}
.partner-logos { grid-template-columns: repeat(4, 1fr); }
.partner-logos img { height: 112px; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ice);
  display: flex;
  flex-direction: column;
}
.article-grid span {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.article-grid h3 { font-family: "Poppins", sans-serif; color: var(--navy); font-size: 24px; line-height: 1.25; margin: 18px 0; }
.article-grid a { margin-top: auto; color: var(--navy); font-weight: 800; }

.cta-section {
  padding: 110px 0;
  background: var(--blue);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(90,113,157,.95), rgba(90,113,157,.72)),
    url("building-footer.jpg") center / cover no-repeat;
}
.cta-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.95);
  border-radius: 36px;
  padding: clamp(34px, 6vw, 62px);
  max-width: 980px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--red);
}
.cta-card p { max-width: 760px; color: var(--muted); margin: 0 0 26px; }
.contact-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.contact-detail div {
  padding: 18px;
  border-radius: 18px;
  background: var(--ice);
  border: 1px solid var(--line);
}
.contact-detail strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  margin-bottom: 4px;
}
.contact-detail span { display: block; color: var(--muted); font-size: 14px; line-height: 1.5; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-brand .brand-wordmark { filter: brightness(0) invert(1); }
.footer-brand span { color: rgba(255,255,255,.72); }
.site-footer h3 { color: var(--white); font-family: "Poppins", sans-serif; margin: 0 0 16px; font-size: 17px; }
.site-footer p { max-width: 360px; margin: 18px 0 0; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--red);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(189,50,57,.28);
}
.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff !important;
  color: #fff !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-grid, .problem-grid, .framework-grid, .tools-grid, .proof-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 76px; }
  .hero-card { max-width: 560px; }
  .service-grid, .article-grid, .contact-detail { grid-template-columns: 1fr 1fr; }
  .service-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid, .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { min-height: 70px; margin-top: 0; margin-bottom: 0; padding: 0; border-radius: 0; }
  .brand-wordmark { width: 130px; }
  .brand span { font-size: 9px; }
  .main-nav { top: 74px; }
  .hero-copy h1 { font-size: 40px; }
  .lead { font-size: 16px; }
  .hero-actions, .contact-actions, .btn { width: 100%; }
  .btn { padding-left: 18px; padding-right: 18px; }
  .hero-proof, .strip-grid, .service-grid, .steps-grid, .tool-items, .tool-items.two-col, .gallery-grid, .logo-grid, .partner-logos, .article-grid, .contact-detail, .footer-grid { grid-template-columns: 1fr; }
  .strip-grid { min-height: auto; }
  .problem-card, .service-card, .tool-panel, .cta-card { padding: 26px; border-radius: 24px; }
  .problem-item { grid-template-columns: 1fr; }
  .section-white, .section-light, .framework-section, .proof-section, .cta-section { padding: 70px 0; }
  .tools-side { min-height: auto; }
  .tools-side img { height: 220px; }
  .founder-card { min-height: 380px; }
  .footer-bottom { flex-direction: column; }
  .floating-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; border-radius: 18px; }
}
