:root {
  --navy: #0f172a;
  --navy-soft: #111c34;
  --blue: #1e3a8a;
  --gold: #fbbf24;
  --gold-deep: #e0a81a;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --line: rgba(15, 23, 42, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --text: #19243a;
  --muted: #5d6780;
  --shadow: 0 30px 80px rgba(8, 15, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
}

.brand span,
.footer-brand strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.nav-links a,
.footer-links a {
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(251, 191, 36, 0.22);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-deep);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 56px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(251, 191, 36, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow-blue {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.about-shell h2,
.cta-shell h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero-subtitle,
.section-intro,
.about-shell p,
.feature-copy p,
.process-step p,
.service-card p,
.testimonial-card p {
  color: inherit;
  opacity: 0.8;
}

.hero-subtitle {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: 1.12rem;
}

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

.hero-proof {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image-frame {
  overflow: hidden;
  height: 100%;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.76);
}

.image-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.88);
}

.stat-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.stat-card span {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(15, 23, 42, 0.72);
}

.stat-card-top {
  top: 28px;
  right: -28px;
}

.stat-card-middle {
  top: 202px;
  left: -36px;
}

.stat-card-bottom {
  right: 18px;
  bottom: 28px;
}

.trust-strip {
  padding: 18px 0;
  background: #0b1223;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  font-weight: 600;
}

section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-shell h2,
.cta-shell h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

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

.service-card,
.testimonial-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.service-card:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.16);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.service-card h3,
.process-step h3,
.feature-copy h3,
.method-copy h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.service-card p,
.process-step p,
.feature-copy p,
.section-intro,
.testimonial-card p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.section-process {
  position: relative;
  overflow: hidden;
}

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

.process-step {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-light);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -24px;
  width: 24px;
  height: 1px;
  background: rgba(251, 191, 36, 0.5);
}

.process-step:last-child::after {
  display: none;
}

.step-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.methodology-diagram {
  display: grid;
  gap: 16px;
}

.method-node {
  position: relative;
  padding: 22px 28px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafe;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.method-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  background: rgba(30, 58, 138, 0.3);
}

.method-node:last-child::after {
  display: none;
}

.method-node span {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.method-node.is-active,
.method-node:hover,
.method-node:focus-visible {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateX(6px);
}

.methodology-panel {
  position: relative;
  min-height: 290px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.method-copy {
  display: none;
}

.method-copy.is-active {
  display: block;
}

.about-shell,
.cta-shell {
  max-width: 860px;
}

.about-shell p:last-child,
.cta-shell p:last-child {
  margin-top: 18px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
}

.feature-stack {
  display: grid;
  gap: 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fbfcfe;
}

.feature-row-reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-row-reverse .feature-visual {
  order: 1;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  background: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.03) brightness(0.7);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.68) 100%);
}

.image-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.final-cta {
  padding-bottom: 112px;
}

.cta-shell {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.site-footer {
  padding: 28px 0 46px;
  background: #0b1223;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  flex-wrap: wrap;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0) 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .methodology-grid,
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-image-frame {
    min-height: 440px;
  }

  .feature-row-reverse .feature-copy,
  .feature-row-reverse .feature-visual {
    order: initial;
  }

  .services-grid,
  .testimonial-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav-shell,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav-links,
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .stat-card {
    position: static;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
  }

  .trust-items,
  .services-grid,
  .testimonial-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step::after,
  .method-node::after {
    display: none;
  }

  section {
    padding: 82px 0;
  }

  .methodology-panel,
  .image-panel {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
