:root {
  --navy: #071423;
  --navy-2: #0b1f3a;
  --blue: #153f73;
  --orange: #f28c28;
  --orange-2: #ff9f38;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --text: #0b1f3a;
  --muted: #5f6f82;
  --line: rgba(11,31,58,.12);
  --shadow: 0 24px 80px rgba(5,18,35,.13);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

.accent { color: var(--orange); }

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(42px, 6vw, 78px); margin: 0 0 24px; }
h2 { font-size: clamp(30px, 4vw, 52px); margin: 0 0 22px; }
h3 { font-size: 22px; margin: 0 0 12px; }
p { margin-top: 0; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #071423;
  box-shadow: 0 14px 34px rgba(242,140,40,.28);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.button.dark {
  background: var(--navy);
  color: #fff;
}

/* HEADER */

.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar {
  background: var(--soft);
  color: var(--text);
  padding: 6px 0;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 28px;
}

.brand-logo {
  max-height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 18px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.primary-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sub-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  min-width: 260px;
  box-shadow: var(--shadow);
  z-index: 2000;
}

.nav-group:hover .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  border-radius: 10px;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--soft);
}

.nav-cta {
  background: var(--orange);
  color: #071423 !important;
  padding: 10px 16px;
  border-radius: 999px;
}

/* HERO */

.hero {
  padding: 110px 0 84px;
  background:
    linear-gradient(135deg, rgba(7,20,35,.94), rgba(19,63,115,.84)),
    var(--hero, url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80")) center/cover no-repeat;
  color: #fff;
}

.hero-inner {
  max-width: 960px;
}

.hero p {
  color: rgba(255,255,255,.84);
  font-size: 20px;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

/* LAYOUT */

.section { padding: 82px 0; }
.section.soft, .section.alt { background: var(--paper); }

.section.dark {
  background:
    radial-gradient(circle at top left, rgba(242,140,40,.18), transparent 34%),
    linear-gradient(135deg, #071423, #0b1f3a);
  color: #fff;
}

.section-title,
.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* CARDS */

.card,
.feature-card,
.service-card,
.dark-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 50px rgba(5,18,35,.07);
  text-decoration: none;
  color: var(--text);
}

.card h1,
.card h2,
.card h3,
.card p,
.card li,
.card strong,
.feature-card h1,
.feature-card h2,
.feature-card h3,
.feature-card p,
.feature-card li,
.feature-card strong,
.service-card h1,
.service-card h2,
.service-card h3,
.service-card p,
.service-card li,
.service-card strong {
  color: var(--text);
}

.dark-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.dark-card h1,
.dark-card h2,
.dark-card h3 {
  color: #fff;
}

.dark-card p,
.dark-card li {
  color: rgba(255,255,255,.76);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47,128,237,.14), rgba(242,140,40,.18));
  color: var(--orange);
  margin-bottom: 18px;
  font-weight: 900;
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.photo,
.image-panel {
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
}

.banner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
}

/* FIX WHITE CARDS IN DARK SECTIONS */

.section.dark .card,
.section.dark .feature-card,
.section.dark .service-card {
  background: #ffffff;
  color: var(--text);
}

.section.dark .card h1,
.section.dark .card h2,
.section.dark .card h3,
.section.dark .card h4,
.section.dark .card p,
.section.dark .card li,
.section.dark .card strong,
.section.dark .feature-card h1,
.section.dark .feature-card h2,
.section.dark .feature-card h3,
.section.dark .feature-card h4,
.section.dark .feature-card p,
.section.dark .feature-card li,
.section.dark .feature-card strong,
.section.dark .service-card h1,
.section.dark .service-card h2,
.section.dark .service-card h3,
.section.dark .service-card h4,
.section.dark .service-card p,
.section.dark .service-card li,
.section.dark .service-card strong {
  color: var(--text);
}

.section.dark .card .eyebrow,
.section.dark .feature-card .eyebrow,
.section.dark .service-card .eyebrow,
.section.dark .card .icon,
.section.dark .feature-card .icon,
.section.dark .service-card .icon {
  color: var(--orange);
}

.section.dark .check-list li::before {
  color: var(--orange);
}

/* PROCESS */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255,255,255,.76);
}

.learn {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

/* IMAGE CARDS */

.image-card {
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.image-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, rgba(7,20,35,.08), rgba(7,20,35,.88));
  color: #fff;
}

.image-card h3,
.image-card p {
  color: #fff;
}

/* STATS */

.stats,
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(5,18,35,.06);
}

.stat b,
.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
}

/* FORMS */

.form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
}

.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(15,36,62,.16);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #f8fafc;
}

/* FLIP CARDS */

.insights-flip-grid {
  align-items: stretch;
}

.flip-card {
  perspective: 1200px;
  min-height: 420px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 100%;
  transition: transform .65s ease;
  transform-style: preserve-3d;
}

.flip-card .card {
  margin: 0;
}

.flip-card-front,
.flip-card-back {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  overflow: hidden !important;
}

.flip-card-front {
  z-index: 2;
  transform: rotateY(0deg);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #071423, #123b68) !important;
  color: #fff !important;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card:focus-within .flip-card-inner,
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-back h3,
.flip-card-back p,
.flip-card-back strong {
  color: #fff !important;
}

.flip-card-back .eyebrow {
  color: var(--orange) !important;
}

/* FOOTER */

.footer-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  padding: 58px 0;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(242,140,40,.16), transparent 32%),
    linear-gradient(135deg, #071423, #030812);
  color: #fff;
}

.footer-grid {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: 38px;
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

/* Desktop nav polish */

@media (min-width: 961px) {
  .primary-nav {
    gap: 34px;
  }

  .primary-nav a {
    font-size: 19px;
    letter-spacing: -0.01em;
  }

  .nav-cta {
    font-size: 20px;
    padding: 15px 26px;
  }

  .sub-menu a {
    font-size: 16px;
  }
}

@media (min-width: 961px) {

  .nav-group {

    padding: 18px 0;

  }

  .sub-menu {

    top: 100%;

  }

  .nav-group:hover > .sub-menu,

  .nav-group:focus-within > .sub-menu {

    display: block;

  }

}

/* MOBILE MENU */

@media (max-width: 960px) {
  body.menu-open { overflow: hidden; }

  .topbar { display: none; }

  .nav-wrap {
    min-height: 76px;
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
  }

  .brand-logo {
    max-width: 210px;
    max-height: 44px;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #071423;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    font-size: 15px;
  }

  .primary-nav {
    display: none !important;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background:
      radial-gradient(circle at top right, rgba(242,140,40,.18), transparent 34%),
      linear-gradient(180deg, #071423, #0b1f3a);
    padding: 22px 22px 34px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 9998;
  }

  .primary-nav.open {
    display: flex !important;
  }

  .primary-nav > a,
  .nav-group > a {
    display: block;
    width: 100%;
    color: #fff !important;
    text-decoration: none;
    font-size: 19px;
    font-weight: 900;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nav-group {
    display: grid;
    grid-template-columns: 1fr 46px;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .nav-group > a {
    border-bottom: 0;
  }

  .sub-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    justify-self: end;
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-size: 24px;
    font-weight: 800;
  }

  .sub-menu {
    grid-column: 1 / -1;
    display: none !important;
    position: static !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: none !important;
    border-radius: 18px;
    padding: 10px 14px;
    margin: 0 0 16px;
    min-width: 0;
  }

  .nav-group.open .sub-menu {
    display: block !important;
  }

  .sub-menu a {
    color: rgba(255,255,255,.78) !important;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    white-space: normal;
  }

  .nav-cta {
    margin-top: 18px;
    display: flex !important;
    justify-content: center;
    background: linear-gradient(135deg, #f28c28, #ff9f38) !important;
    color: #071423 !important;
    border-radius: 999px;
    padding: 15px 20px !important;
    border-bottom: 0 !important;
  }

  .grid,
  .grid-3,
  .grid-2,
  .split,
  .process,
  .stats,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 32px; }

  .grid,
  .grid-3,
  .grid-2,
  .split,
  .process,
  .stats,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flip-card,
  .flip-card-inner {
    min-height: 480px;
  }
}









.nav-toggle {

  width: 40px;

  height: 40px;

  padding: 0 !important;

  border-radius: 999px;

  display: inline-flex !important;

  align-items: center;

  justify-content: center;

}

.menu-icon {

  display: flex;

  flex-direction: column;

  gap: 5px;

}

.menu-icon span {

  display: block;

  width: 24px;

  height: 3px;

  background: #071423;

  border-radius: 999px;

}


.nav-toggle {
  display: none !important;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex !important;
  }
}






.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.footer-bottom span {
  white-space: nowrap;
}

.footer-bottom span:last-child {
  text-align: right;
}

/* Mobile */
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom span,
  .footer-bottom span:last-child {
    text-align: left;
    white-space: normal;
  }
}