/* ========================================
   COMPLAICE — Styles
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0B1D3A;
  --navy-light: #112B52;
  --cerulean: #2E86DE;
  --cerulean-dark: #1a5fa8;
  --ice: #F7F9FC;
  --slate: #3D4F5F;
  --slate-light: #6B7D8D;
  --gold: #D4A843;
  --gold-dark: #b8912e;
  --orange: #E04E18;
  --orange-dark: #B83D12;
  --red: #E04B4B;
  --green: #4CAF89;
  --white: #ffffff;
  --black: #050A12;
  --border: rgba(11, 29, 58, 0.08);
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 29, 58, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 29, 58, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'General Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 15px;
}

/* ========================================
   ANIMATIONS — Base
   ======================================== */

.anim-fade,
.anim-word,
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade.visible,
.anim-word.visible,
.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade, .anim-word, .anim-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(11, 29, 58, 0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  transition: var(--transition);
}

.nav--scrolled .nav__logo {
  color: var(--navy);
}

.nav__logo-icon {
  color: var(--cerulean);
}

.nav__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cerulean);
  transition: var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white);
}

.nav--scrolled .nav__link {
  color: var(--slate-light);
}

.nav--scrolled .nav__link:hover {
  color: var(--navy);
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--cerulean-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46, 134, 222, 0.4);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav--scrolled .nav__hamburger span {
  background: var(--navy);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.7;
  transition: var(--transition);
}

.mobile-menu__link:hover {
  opacity: 1;
}

.mobile-menu__cta {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 14px 36px;
  border-radius: 100px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 78, 24, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cerulean);
  border: 2px solid var(--cerulean);
}

.btn--outline:hover {
  background: var(--cerulean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 134, 222, 0.3);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: max(100vh, 900px);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: visible;
}

.hero__bg {
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(46, 134, 222, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 25%, rgba(46, 134, 222, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 90% 70%, rgba(100, 181, 246, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
  animation: gradient-breathe 8s ease-in-out infinite;
}

@keyframes gradient-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Glowing orbs floating in hero */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(46, 134, 222, 0.12);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(100, 181, 246, 0.08);
  top: 60%;
  left: 30%;
  animation-delay: -4s;
  animation-duration: 16s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(46, 134, 222, 0.07);
  top: 20%;
  right: 10%;
  animation-delay: -8s;
  animation-duration: 14s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Horizontal scan line */
.hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 134, 222, 0.4), transparent);
  animation: scan-line 6s linear infinite;
  pointer-events: none;
}

@keyframes scan-line {
  0% { top: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 134, 222, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 134, 222, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes particle-twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: var(--max-opacity, 0.7); transform: translateY(-4px) scale(1); }
  50% { opacity: calc(var(--max-opacity, 0.7) * 0.4); transform: translateY(-8px) scale(0.8); }
  85% { opacity: var(--max-opacity, 0.7); transform: translateY(-4px) scale(1); }
}

.hero__particle--glow {
  box-shadow: 0 0 6px 2px rgba(46, 134, 222, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cerulean);
  background: rgba(46, 134, 222, 0.1);
  border: 1px solid rgba(46, 134, 222, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224, 78, 24, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(224, 78, 24, 0); }
}

.hero__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--orange), #f7943a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.hero__proof strong {
  color: var(--white);
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  border: 2px solid var(--navy);
  margin-left: -8px;
}

.hero__proof-avatar:first-child {
  margin-left: 0;
}

/* Hero Shield Visual */
.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
}

.hero__shield {
  position: relative;
  width: 480px;
  height: 520px;
  overflow: visible;
}

.hero__shield-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.shield-body {
  animation: shield-pulse 4s ease-in-out infinite;
}

@keyframes shield-pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.25; }
}

.shield-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: shield-check-draw 1.5s ease-out 1s forwards;
}

@keyframes shield-check-draw {
  to { stroke-dashoffset: 0; }
}

.shield-ring {
  animation: shield-ring-rotate 20s linear infinite;
  transform-origin: 140px 160px;
}

.shield-ring--2 {
  animation-direction: reverse;
  animation-duration: 30s;
}

.shield-ring--3 {
  animation-duration: 40s;
}

@keyframes shield-ring-rotate {
  to { transform: rotate(360deg); }
}

.hero__shield-labels {
  position: absolute;
  inset: 0;
}

.shield-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: var(--cerulean);
  background: rgba(46, 134, 222, 0.08);
  border: 1px solid rgba(46, 134, 222, 0.15);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  animation: label-pop 0.5s ease-out forwards;
}

.shield-label--1 { top: 15%; right: -30px; animation-delay: 1.5s; }
.shield-label--2 { top: 40%; left: -40px; animation-delay: 1.8s; }
.shield-label--3 { bottom: 30%; right: -20px; animation-delay: 2.1s; }
.shield-label--4 { bottom: 10%; left: -20px; animation-delay: 2.4s; }

@keyframes label-pop {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* ========================================
   HERO BEAMS
   ======================================== */

.hero__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero__beam {
  position: absolute;
  bottom: -200px;
  border-radius: 2px;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(46, 134, 222, 0.7) 30%,
    rgba(100, 181, 246, 0.5) 60%,
    transparent 100%
  );
  animation: beam-rise var(--dur, 7s) linear infinite;
  animation-delay: var(--delay, 0s);
  transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero__beam--highlight {
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(212, 168, 67, 0.9) 35%,
    rgba(255, 255, 255, 0.6) 65%,
    transparent 100%
  );
}

@keyframes beam-rise {
  0%   { transform: translateY(0);                         opacity: 0; }
  4%   { opacity: 1; }
  92%  { opacity: 0.6; }
  100% { transform: translateY(calc(-100vh - 300px));      opacity: 0; }
}

/* ========================================
   STATS
   ======================================== */

.stats {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.stats__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat__number {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}

.stat__suffix {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--cerulean);
}

.stat__number--text {
  font-size: 32px;
  color: var(--cerulean);
}

.stat__label {
  display: block;
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 6px;
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cerulean);
  margin-bottom: 16px;
}

.section-header__tag--light {
  color: rgba(255, 255, 255, 0.5);
}

.section-header__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header__sub {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   WHY LISTINGS GET SUPPRESSED
   ======================================== */

.suppressed {
  padding: 120px 0;
  background: var(--white);
}

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

.suppressed__card {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.suppressed__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 75, 75, 0.2);
}

.suppressed__icon {
  margin-bottom: 16px;
  line-height: 0;
}

.suppressed__icon svg {
  overflow: visible;
}

.suppressed__card h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}

.suppressed__card p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: 120px 0;
  background: var(--ice);
  position: relative;
}

.services__wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(212, 168, 67, 0.03) 100%);
}

.service-card--featured:hover {
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15);
}

.service-card__ribbon {
  position: absolute;
  top: -1px;
  right: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card__icon {
  color: var(--cerulean);
}

.service-card--featured .service-card__icon {
  color: var(--gold);
}

.service-card__tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cerulean);
  background: rgba(46, 134, 222, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
}

.service-card__tier--gold {
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.1);
}

.service-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-card__tagline {
  font-size: 15px;
  color: var(--slate-light);
  margin-bottom: 20px;
}

.service-card__price {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
}

.service-card__currency {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-top: 4px;
  margin-right: 2px;
}

.service-card__amount {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
}

.service-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11, 29, 58, 0.04);
  color: var(--slate);
}

.service-card__features li:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card__note {
  font-size: 13px;
  color: var(--slate-light);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.services__tagline {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--slate);
  margin-top: 48px;
}

/* ========================================
   PROCESS ORBIT
   ======================================== */

.process__orbit-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  perspective: 800px;
}

.process__orbit {
  position: relative;
  width: 420px;
  height: 420px;
  transform: perspective(800px) rotateX(20deg);
}

.orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(46, 134, 222, 0.2);
  background: transparent;
}

.orbit__ring--1 {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation: orbit-spin 20s linear infinite;
  border-color: rgba(46, 134, 222, 0.25);
}

.orbit__ring--2 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  animation: orbit-spin 35s linear infinite reverse;
  border-color: rgba(46, 134, 222, 0.18);
}

.orbit__ring--3 {
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  animation: orbit-spin 52s linear infinite;
  border-color: rgba(46, 134, 222, 0.12);
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

/* Icon cards on rings */
.orbit__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid rgba(46, 134, 222, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 134, 222, 0.1);
}

/* Counter-rotate icons so they stay upright */
.orbit__ring--1 .orbit__icon { animation: orbit-spin 20s linear infinite reverse; }
.orbit__ring--2 .orbit__icon { animation: orbit-spin 35s linear infinite; }
.orbit__ring--3 .orbit__icon { animation: orbit-spin 52s linear infinite reverse; }

/* Ring 1 positions (200×200, radius 100, icon 40×40) */
.orbit__icon--r1-top    { top: -20px;  left: 80px;  }
.orbit__icon--r1-right  { top:  80px;  left: 180px; }
.orbit__icon--r1-bottom { top: 180px;  left: 80px;  }
.orbit__icon--r1-left   { top:  80px;  left: -20px; }

/* Ring 2 positions (320×320, radius 160, icons at 45°/135°/225°/315°) */
/* 160 × sin45 ≈ 113 */
.orbit__icon--r2-ne { top:  27px;  left: 253px; }
.orbit__icon--r2-se { top: 253px;  left: 253px; }
.orbit__icon--r2-sw { top: 253px;  left:  27px; }
.orbit__icon--r2-nw { top:  27px;  left:  27px; }

/* Ring 3 positions (420×420, radius 210, icons at 0°/120°/240°) */
/* sin120 ≈ 0.866, cos120 = -0.5 → x = 210+182 = 392, y = 210+105 = 315 */
.orbit__icon--r3-top { top: -20px;  left: 190px; }
.orbit__icon--r3-br  { top: 295px;  left: 372px; }
.orbit__icon--r3-bl  { top: 295px;  left:   8px; }

/* Center shield */
.orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(46, 134, 222, 0.06);
  border: 2px solid rgba(46, 134, 222, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(46, 134, 222, 0.15), inset 0 0 20px rgba(46, 134, 222, 0.05);
}

/* ========================================
   PROCESS
   ======================================== */

.process {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--cerulean);
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process__line.active::after {
  height: 100%;
}

.process__step {
  display: flex;
  gap: 32px;
  padding-bottom: 56px;
  position: relative;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--slate-light);
  z-index: 2;
  transition: var(--transition-slow);
}

.process__step.visible .process__step-marker {
  border-color: var(--cerulean);
  color: var(--cerulean);
  box-shadow: 0 0 0 6px rgba(46, 134, 222, 0.1);
}

.process__step-content {
  flex: 1;
  padding-top: 8px;
}

.process__step-icon {
  margin-bottom: 16px;
}

.process__step-content h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.process__step-content p {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ========================================
   RISK
   ======================================== */

.risk {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.risk__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.risk__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(224, 75, 75, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(46, 134, 222, 0.1) 0%, transparent 60%);
}

.risk__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.risk__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.risk__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.risk__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.risk__stat-number {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--red);
  display: block;
}

.risk__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  display: block;
  margin-top: 4px;
}

.risk__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.risk__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  transform: translateX(20px);
  opacity: 0;
}

.risk__card.visible-card {
  transform: translateX(0);
  opacity: 1;
}

.risk__card--warning {
  background: rgba(224, 75, 75, 0.08);
  border: 1px solid rgba(224, 75, 75, 0.15);
  transition-delay: 0.2s;
}

.risk__card--danger {
  background: rgba(224, 75, 75, 0.12);
  border: 1px solid rgba(224, 75, 75, 0.2);
  transition-delay: 0.4s;
}

.risk__card--resolved {
  background: rgba(76, 175, 137, 0.08);
  border: 1px solid rgba(76, 175, 137, 0.15);
  transition-delay: 0.6s;
}

.risk__card-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.risk__card strong {
  display: block;
  color: var(--white);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.risk__card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: 120px 0;
  background: var(--ice);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.testimonial-card__author strong {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--slate-light);
}

/* ========================================
   FAQ
   ======================================== */

.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--cerulean);
}

.faq__chevron {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--slate-light);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--cerulean);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ========================================
   CTA
   ======================================== */

.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.cta__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(46, 134, 222, 0.2) 0%, transparent 60%);
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 134, 222, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 134, 222, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta__content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta__form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  text-align: left;
}

.cta__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cerulean);
  box-shadow: 0 0 0 3px rgba(46, 134, 222, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.cta__disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--black);
  padding: 60px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  max-width: 300px;
}

.footer__brand .nav__logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero__visual {
    display: none;
  }

  .hero__content {
    max-width: 640px;
  }

  .risk__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats__inner {
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }

  .stat__divider {
    width: 60px;
    height: 1px;
  }

  .suppressed__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cta__form-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 36px;
  }

  .footer__links {
    gap: 40px;
  }

  .process__step {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats__inner {
    margin: 0 16px;
  }

  .risk__stats {
    grid-template-columns: 1fr;
  }

  .cta__form {
    padding: 24px;
  }
}
