:root {
  --blue: #0A5EC9;
  --yellow: #F8C40A;
  --navy: #06214A;
  --white: #FFFFFF;
  --soft-blue: #EAF1FF;
  --cool-gray: #D7E1F0;
  --graphite: #243040;
  --green: #10B981;
  --amber: #F59E0B;
  --ink: #101928;
  --muted: #5C6B80;
  --line: #DCE6F5;
  --surface: #F8FBFF;
  --shadow: 0 18px 50px rgba(6, 33, 74, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: 64px; max-width: 860px; }
h2 { font-size: 42px; }
h3 { font-size: 22px; }
ul, ol { padding-left: 1.2rem; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 14px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
.top-strip {
  background: #031833;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.top-strip-inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-height: 34px;
  align-items: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 12px 34px rgba(3, 24, 51, 0.2);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-mark {
  width: 220px;
  flex: 0 0 220px;
  display: flex;
  align-items: center;
}
.brand-mark img { width: 220px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav > a,
.nav-dropdown-trigger {
  color: rgba(255,255,255,0.9);
  background: transparent;
  border: 0;
  font: inherit;
  padding: 14px 11px;
  border-radius: 8px;
  cursor: pointer;
}
.site-nav > a:hover,
.nav-dropdown-trigger:hover { background: rgba(255,255,255,0.09); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mega strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.nav-mega a {
  display: block;
  padding: 8px 0;
  color: var(--graphite);
}
.nav-mega a:hover { color: var(--blue); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--white);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  overflow-wrap: anywhere;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(248, 196, 10, 0.25);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(10, 94, 201, 0.22);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.header-cta { flex: 0 0 auto; }
.home-hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,33,74,0.96) 0%, rgba(6,33,74,0.78) 42%, rgba(6,33,74,0.16) 70%),
    linear-gradient(180deg, rgba(6,33,74,0.22), rgba(6,33,74,0.68));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  padding: 110px 0 80px;
}
.hero-copy h1 { color: var(--white); margin: 16px 0 24px; }
.hero-copy p {
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.home-hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow { color: var(--yellow); }
.hero-actions,
.cta-actions,
.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.center-actions { justify-content: center; }
.trust-row {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,0.82);
}
.trust-row span:not(:first-child) {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
}
.section { padding: 96px 0; }
.soft-section {
  background:
    linear-gradient(135deg, #F8FBFF 0%, #EAF1FF 100%);
}
.section-header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-header p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
}
.service-grid,
.portfolio-grid,
.team-grid,
.post-grid,
.three-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card,
.portfolio-card,
.team-card,
.post-card,
.info-card,
.testimonial-card,
.stat-card,
.process-step,
.case-block,
.outcome-panel,
.feature-list,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6, 33, 74, 0.07);
}
.service-card,
.team-card,
.post-card,
.info-card,
.testimonial-card,
.process-step,
.case-block {
  padding: 24px;
}
.service-card span,
.post-card span,
.portfolio-content span,
.team-card span,
.case-block span {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}
.service-card h3,
.team-card h3,
.post-card h3,
.info-card h3,
.portfolio-content h3 { margin: 12px 0; }
.service-card p,
.team-card p,
.post-card p,
.info-card p,
.portfolio-content p,
.testimonial-card p { color: var(--muted); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}
.text-link {
  color: var(--blue);
  font-weight: 900;
}
.split-grid,
.page-hero-grid,
.contact-grid,
.article-layout,
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}
.page-hero {
  background:
    linear-gradient(130deg, rgba(6,33,74,0.98), rgba(10,94,201,0.9)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 16px);
  color: var(--white);
  padding: 86px 0;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.86); font-size: 19px; max-width: 680px; }
.visual-system {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 65px rgba(0,0,0,0.24);
  min-height: 330px;
  background: var(--navy);
}
.visual-system img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.metric-float {
  position: absolute;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.metric-float strong { display: block; font-size: 24px; }
.metric-float span { color: var(--muted); font-size: 13px; }
.metric-one { top: 18px; left: 18px; }
.metric-two { right: 18px; bottom: 18px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.stat-card {
  padding: 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}
.check-list,
.feature-list ul,
.outcome-panel ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li,
.feature-list li,
.outcome-panel li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}
.check-list li::before,
.feature-list li::before,
.outcome-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}
.portfolio-card { overflow: hidden; }
.portfolio-visual {
  min-height: 190px;
  background:
    linear-gradient(135deg, var(--navy), var(--blue)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.14) 2px, transparent 2px, transparent 18px);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 900;
}
.portfolio-content { padding: 24px; }
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 18px;
}
.stars { color: var(--yellow); font-weight: 900; margin-bottom: 12px; }
.testimonial-section { background: #FDFEFF; }
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 74px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.78); max-width: 720px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 70px 0 38px;
}
.site-footer {
  background: #031833;
  color: rgba(255,255,255,0.78);
}
.site-footer h2 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin: 9px 0; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand img { width: 220px; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a { margin-left: 14px; }
.category-pills,
.mini-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-pills a,
.category-pills span,
.mini-service-list a {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--graphite);
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 800;
}
.service-category-band { padding: 70px 0; }
.service-category-band:nth-child(odd) { background: var(--surface); }
.outcome-panel,
.feature-list {
  padding: 30px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.process-grid .section-header {
  grid-column: 1 / -1;
}
.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}
details p { margin-top: 14px; color: var(--muted); }
.contact-methods {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.contact-methods a,
.contact-methods span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 3px;
}
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--graphite);
  background: var(--white);
}
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; }
.article-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 130px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}
.article-toc strong,
.article-toc a { display: block; }
.article-toc a {
  padding: 8px 0;
  color: var(--muted);
}
.article-content {
  max-width: 830px;
}
.article-content h2 {
  font-size: 34px;
  margin: 36px 0 14px;
}
.article-content p,
.article-content li {
  font-size: 18px;
}
.article-meta {
  color: var(--blue);
  font-weight: 900;
}
.article-cta {
  margin-top: 34px;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}
.article-cta h2 { color: var(--white); }
.legal-content {
  max-width: 900px;
}
.legal-content h2 { font-size: 30px; margin: 34px 0 12px; }
.sitemap-list {
  display: grid;
  gap: 10px;
}
.sitemap-list a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 18px;
  background: var(--white);
}
.sitemap-list span { color: var(--navy); font-weight: 900; }
.sitemap-list small { color: var(--muted); overflow-wrap: anywhere; }
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.metric-float { animation: soft-float 4s ease-in-out infinite; }
@media (max-width: 1080px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .service-grid,
  .service-grid.compact,
  .portfolio-grid,
  .team-grid,
  .post-grid,
  .three-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-cta { display: none; }
}
@media (max-width: 900px) {
  .top-strip { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-mega {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    margin-top: 8px;
  }
  .nav-dropdown:focus-within .nav-mega,
  .nav-dropdown:hover .nav-mega { display: grid; }
  .home-hero { min-height: 640px; }
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .article-layout,
  .case-grid {
    grid-template-columns: 1fr;
  }
  .article-toc { position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 42px; }
  h2 { font-size: 31px; }
  h3 { font-size: 20px; }
  .section { padding: 68px 0; }
  .home-hero { min-height: 600px; }
  .hero-copy p,
  .page-hero p,
  .section-header p,
  .article-content p,
  .article-content li { font-size: 16px; }
  .service-grid,
  .service-grid.compact,
  .portfolio-grid,
  .team-grid,
  .post-grid,
  .three-grid,
  .testimonial-grid,
  .stat-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-mark,
  .brand-mark img { width: 190px; }
  .cta-inner,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }
  .nav-mega { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}