*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  /* background: #0a0c14; */
  /* color: #fff; */
  font-family: "Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: default;
}
.fw-100 { font-weight: 100 !important;}
.fw-200 { font-weight: 200 !important;}
.fw-300 { font-weight: 300 !important;}
.fw-400 { font-weight: 400 !important;}
.fw-500 { font-weight: 500 !important;}
.fw-600 { font-weight: 600 !important;}
.fw-700 { font-weight: 700 !important;}
.fw-800 { font-weight: 800 !important;}
.fw-900 { font-weight: 900 !important;}
/* ── LENIS ── */
html.lenis,
html.lenis body {
  height: auto;
  width: 100vw;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: #0a0c14;
}
::-webkit-scrollbar-thumb {
  background: #f97316;
  border-radius: 2px;
}

/* ── PAGE LOADER ── */
html.is-loading,
html.is-loading body {
  overflow: hidden !important;
  height: 100%;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0a0c14 0%, #0d1525 50%, #0a1018 100%);
  transition: opacity 0.65s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.65s;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
}
.page-loader-glow--1 {
  width: 360px;
  height: 360px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #00f0ff;
}
.page-loader-glow--2 {
  width: 280px;
  height: 280px;
  bottom: 18%;
  right: 15%;
  background: #ff882e;
  opacity: 0.25;
}
.page-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: min(320px, 80vw);
  text-align: center;
}
.page-loader-logo {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  animation: loader-logo-pulse 1.8s ease-in-out infinite;
}
.page-loader-ring {
  position: relative;
  width: 52px;
  height: 52px;
}
.page-loader-ring span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: #00f0ff;
  border-right-color: #ff882e;
  border-radius: 50%;
  animation: loader-spin 0.9s linear infinite;
}
.page-loader-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.page-loader-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff882e, #00f0ff);
  animation: loader-progress 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.page-loader-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}
@keyframes loader-logo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.98); }
}
@keyframes loader-progress {
  0% { width: 0; }
  70% { width: 88%; }
  100% { width: 100%; }
}

/* ── TOKENS ── */
:root {
  /* --orange: #f97316; */
  --orange: #FF882E;
  --hblue: #4EDEA3;
  --hblue2: #00F0FF;
  --hlight:#D2F000;
  --hgreen:#D2F000;
  --blue:#004AAD;
  --orange-light: #fb923c;
  --dark: #0a0c14;
  --dark2: #0E1629;
  --dark3: #141828;
  --card: #1a1f2e;
  --card2: #1e2438;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.5);
  --muted2: rgba(255, 255, 255, 0.35);
}
.bg-dark {
  background-color: #000 !important;
}
.bg-blue { background-color: var(--blue) !important;}
.btn-blue { background-color: var(--blue) !important; color: #fff !important;}
.btn-blue:hover { background-color: var(--blue) !important; color: #fff !important;}
.btn-outline-white:hover { background-color: var(--blue) !important; color: #fff !important;}
.fit-content {
  width: fit-content;
}
/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.5rem;
  transition:
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
  border-color: var(--hblue2);
  background: rgba(0, 240, 255, 0.06);
}
.lang-switcher-btn i {
  font-size: 0.85rem;
  opacity: 0.85;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 88px;
  padding: 0.35rem;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 220;
}
.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-option:hover,
.lang-option.active {
  background: rgba(0, 240, 255, 0.08);
  color: #fff;
}

/* ── RTL (Arabic) ── */
html[dir="rtl"] body,
body.is-rtl {
  font-family: "Cairo", "Inter", sans-serif;
}
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
html[dir="rtl"] .lang-option {
  text-align: right;
}
html[dir="rtl"] .trust-timeline {
  padding-left: 0 !important;
  padding-right: 2.5rem !important;
}
html[dir="rtl"] .trust-circle {
  left: auto !important;
  right: -2.4rem !important;
}
html[dir="rtl"] .trust-progress-line,
html[dir="rtl"] #trust .trust-timeline > div[style*="left: 0.5rem"] {
  left: auto !important;
  right: 0.5rem !important;
}
.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.nav-hamburger:hover {
  border-color: var(--hblue2);
  background: rgba(0, 240, 255, 0.06);
}
.nav-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}
.nav-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 20px;
}

/* ── FULL-PAGE SLIDE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open,
.mobile-menu.is-closing {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a0c14 0%, #0d1525 45%, #0a1018 100%);
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.mobile-menu-glow--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: var(--hblue2);
}
.mobile-menu-glow--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -100px;
  background: var(--orange);
  opacity: 0.2;
}
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.mobile-menu-close:hover {
  border-color: var(--orange);
  background: rgba(255, 136, 46, 0.12);
  transform: rotate(90deg);
}
.mobile-menu-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 5rem 2.5rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.mobile-menu-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hblue2);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s 0.15s, transform 0.5s 0.15s;
}
.mobile-menu.is-open .mobile-menu-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-menu-link {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.85rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.45s,
    transform 0.45s,
    color 0.2s,
    padding-left 0.25s;
}
.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(6) { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(7) { transition-delay: 0.32s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(8) { transition-delay: 0.36s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(9) { transition-delay: 0.4s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(10) { transition-delay: 0.44s; }
@media screen and (min-width: 1200px) {
  .mobile-menu-nav {
    top: 50% !important;
    transform: translateY(-50%);
  }
}
.mobile-menu-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted2);
  min-width: 1.5rem;
  transition: color 0.25s;
}
.mobile-menu-label {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.mobile-menu-link:hover .mobile-menu-num,
.mobile-menu-link:hover .mobile-menu-label {
  color: var(--hblue2);
}
.mobile-menu-link:hover {
  padding-left: 0.5rem;
}
.mobile-menu-footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.45s, transform 0.5s 0.45s;
}
.mobile-menu.is-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-closing .mobile-menu-link,
.mobile-menu.is-closing .mobile-menu-eyebrow,
.mobile-menu.is-closing .mobile-menu-footer {
  opacity: 0;
  transform: translateX(24px);
  transition-delay: 0s !important;
  transition-duration: 0.3s;
}
body.menu-open {
  overflow: hidden;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--hlight);
}
.btn-hlight {
  background: var(--hblue2);
  color: #000;
}
.btn-hlight:hover {
  background: var(--hblue);
}
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}


.s-title {
  font-size: clamp(1.9rem, 3.5vw, 5rem) !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  /* background: linear-gradient(160deg, #0a0c14 0%, #0d1525 50%, #0a0c14 100%); */
  background-color: var(--dark2);
 
  
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-rtl .speed_text { font-size: 2rem !important; line-height: 3.3rem !important;}
.heroTop {
  background: url(../img/hero.jpg) top center no-repeat;
  background-size: cover;
  padding: 9rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroTop .heroCnt { position: relative; z-index: 2;}
.heroTop::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to top, #0E1629 20%, transparent 80%);
 }
.hero-bg-cube {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.35;
  background: radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.15), transparent 60%);
  /* cube illusion via border */
  border: 1px solid rgba(56, 189, 248, 0.08);
  border-radius: 12px;
  transform: translateY(-50%) rotate(12deg) skewX(-6deg);
}
.hero-eyebrow {
  --hero-eyebrow-lh: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  line-height: var(--hero-eyebrow-lh);
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
  align-self: center;
}
.hero-eyebrow-prefix,
.hero-eyebrow-suffix {
  display: inline-flex;
  align-items: center;
  height: calc(1em * var(--hero-eyebrow-lh));
  line-height: var(--hero-eyebrow-lh);
  flex-shrink: 0;
}
.hero-region-ticker {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: calc(1em * var(--hero-eyebrow-lh));
  min-width: 5.75rem;
  flex-shrink: 0;
  line-height: var(--hero-eyebrow-lh);
}
.hero-region-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  line-height: var(--hero-eyebrow-lh);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-region-word.is-active {
  opacity: 1;
  pointer-events: auto;
}
html[dir="rtl"] .hero-region-ticker {
  min-width: 4.5rem;
}
html[dir="rtl"] .hero-region-word {
  justify-content: flex-end;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h1 .gradient {
  /* color: var(--orange); */


background: linear-gradient(90deg, #60A5FA 0%, #34D399 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;



}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 2rem;
}
.hero-btns-wrap {
  margin-bottom: 3.5rem;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  will-change: transform;
  transition:
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    border-radius 0.45s ease,
    padding 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.hero-btns.is-flipping {
  transition:
    transform 0.48s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    border-radius 0.45s ease,
    padding 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
.hero-btns-wrap.fixed-bottom .hero-btns {
  position: fixed;
  bottom: 14px;
  z-index: 1030;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  border-radius: 100vw;
  padding: 0.5rem 0.75rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  justify-content: center;
  background: #ffffff30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.hero-btns-wrap.fixed-bottom .btn-outline-white {
  background: #fff;
  color: #00000080;
  border-color: #00000050;
}
.hero-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: fit-content;
  margin-bottom: 3rem;
  margin-top: 6rem;
}
.hero-tag-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.htag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
}
.htag-flag {
  font-size: 1.1rem;
  padding: 0.15rem 0.35rem;
}
.htag.sep {
  color: var(--border2);
  font-weight: 400;
  padding: 0 0.15rem;
}
.htag.eu {
  color: #60a5fa;
}
.htag.sa {
  color: #34d399;
}
.htag.us {
  color: var(--orange);
}

.htag-ticker {
  --htag-slide-h: 2rem;
  height: var(--htag-slide-h);
  overflow: hidden;
  position: relative;
  min-width: 9.5rem;
}
.htag-ticker[data-ticker="eu"] {
  min-width: 7.5rem;
}
.htag-ticker[data-ticker="sa"] {
  min-width: 14rem;
}
.htag-ticker[data-ticker="us"] {
  min-width: 12rem;
}
.htag-ticker-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.htag-ticker-slide {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: var(--htag-slide-h);
  flex-shrink: 0;
}
.htag-ticker.is-animating .htag-ticker-track {
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.hcheck {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.hcheck svg {
  flex-shrink: 0;
  color: var(--orange);
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  overflow: hidden;
  max-width: 700px;
}
.hstat {
  padding: 1.5rem 2rem;
}
.hstat-div {
  background: var(--border);
}
.hstat-label {
  font-size: 0.7rem;
  color: var(--muted2);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.hstat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.hstat-sub {
  font-size: 0.68rem;
  color: var(--muted2);
  margin-top: 0.15rem;
}

/* ── MARQUEE ── */
@keyframes marquee-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.marquee-vertical {
  animation: marquee-vertical 12s linear infinite;
}
.marquee-vertical:hover {
  animation-play-state: paused;
}

/* ── SECTION SHARED ── */
section {
  position: relative;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.75rem;
  display: block;
}
.bg-dark .eyebrow{
  color: #fff;
}
.s-title {
  font-size: clamp(2.5rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hlight { color: var(--hlight);}
.hblue { color: var(--hblue);}
.hgreen { color: var(--hgreen);}
.s-title .orange {
  color: var(--orange);
}
.s-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}

/* ── TRUST SECTION ── */
#trust {
  padding: 6rem 0;
  background: var(--dark2);
  box-shadow: 0 -25px var(--dark2);
  width: 100%;
  max-width: 100%;
}
#trust-container {
  width: 100%;
  will-change: transform;
}
.trust-timeline {
  min-height: 22rem;
}
.trust-item .trust-content {
  height: auto !important;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.trust-list li {
  
  font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.5rem">
  
}
.trust-list li span { color: var(--orange)}
.trust-list li::before {
  content: "○";
  color: var(--orange);
  font-size: 0.7rem;
}
.trust-visual {
  background: linear-gradient(135deg, #1a2a4a, #0f1a30);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 16px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.trust-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(96, 165, 250, 0.12), transparent 60%);
}
.trust-chart-icon {
  font-size: 4rem;
  opacity: 0.6;
}

/* ── COMPLIANCE FAILS SECTION ── */
#fails-intro {
 /* background: url(../img/simiround.svg) top center no-repeat; */
  background-size: 100%;
  /* background: linear-gradient(180deg, var(--dark2) 0%, #fff 40%, #fff 100%); */
  text-align: center;
}
.fails-intro-box {
  position: relative;
  /* background: linear-gradient(160deg, #0a1628, #162040); */
  border-radius: 0 0 80px 80px;
  padding: 5rem 2rem 4rem;
  margin-bottom: 0;
  overflow: hidden;
  isolation: isolate;
  
}
.curve {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}
/* .fails-intro-box::after {
  --bxWidth: 100vw;
  content: '';
  height: calc(var(--bxWidth) / 2);
  width: var(--bxWidth);
  top: -50%;
  transform: translateY(-100%);
  left: 0;
  border-radius: 100vw;
  background: #0E1629;
  position: absolute;
  z-index: -1;
} */
.fails-intro-box .s-title {
  color: #fff;
  /* max-width: 500px; */
  margin: 0 auto 0.75rem;
}
.fails-intro-box .s-body {
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto;
}

/* 3 problem cards */
#problems {
  padding: 0 0 6rem;
}
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -1px;
}
.prob-card-inner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.prob-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #ccc;
  display: block;
}
.prob-img-placeholder {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}
.prob-body {
  padding: 1.5rem;
}
.prob-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.prob-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.prob-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #6b7280;
}
.prob-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
}
.prob-num span {
  font-size: 0.72rem;
  font-weight: 400;
  color: #9ca3af;
  display: block;
  margin-top: 0.1rem;
}

/* ── WHY FAILS SECTION ── */
#why-fails {
  padding: 7rem 0;
  background: #fff;
}
.wf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.wf-sticky {
  position: sticky;
  top: 100px;
}
.wf-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wf-item {
  /* border-bottom: 1px solid #e5e7eb; */
  padding: 2rem 0 2rem 1.5rem;
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.wf-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #f3f4f6;
  border-radius: 2px;
  transition: background 0.3s;
}
.wf-item:hover::before {
  background: var(--orange);
}
.wf-item::after {
  content: "×";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  left: -8px;
  background-color: #fff;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 2px #f3f4f6;
  color: #f3f4f6;
  padding-bottom: 3px;
}
.wf-item:hover::after {
  border-color: var(--orange);
  background-color: var(--orange);
} 
.wf-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.wf-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.4rem;
}
.wf-item p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: #6b7280;
}
.wf-item .wf-num {
  position: absolute;
  right: 0;
  top: 2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #d1d5db;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
#how-works {
  padding: 7rem 0;
}
.hw-header {
  margin-bottom: 4rem;
}
.hw-steps {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.hw-phone {
  position: sticky;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.hw-phone-inner {
  text-align: center;
  position: relative;
  outline:solid 10px #ffffff60;
  outline-offset: -10px;

}
.vid_container {
  position: absolute;
  inset: 17px;
    top: 17px;
  border-radius: 30px;
  border: solid 1px #ffffff50;
  top: 13px;
  overflow: hidden;
  z-index: 9;
}
.hw-phone-icon {
  font-size: 4rem;
  opacity: 0.5;
  overflow: unset;
}
/* .phone-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.phone-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  transform: translateX(-50%);
  width: 110%;
  box-shadow:
  inset 0 0 40px #fff, inset 0 0 40px #fff, inset 0 0 400px #fff;
  z-index: -1;
  border-radius: 68px;
  border:solid 20px #ffffff75;
}
.phone-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  bottom: -18px;
  transform: translateX(-50%);
  width: 110%;
  background:radial-gradient(
  circle at center,
  #ff0080 0%,
  #7928ca 35%,
  #00d4ff 70%,
  #ff0080 100%
  ); 
  border-radius: 68px;
  background-size: 300% 100%;
  animation: glowMove 6s linear infinite;
z-index: -2;
  filter: blur(1px);


  mask-image: radial-gradient(
    ellipse at center,
    black 60%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 60%,
    transparent 100%
  );

  z-index: -1;
} 

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
  */
.phone-wrap {
  position: relative;
  display: inline-block;
  width: 298px;
  height: 598px;
  /* border: solid 1px #00000030; */
  /* background-color: #fff; */
  border-radius: 50px;
  }


  .phone-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 30px;

  background: linear-gradient(
      45deg,
      var(--dark),
      #cc0000,
      var(--orange),
      #00ff85,
      var(--dark)
  );
/* background: conic-gradient(
    var(--orange),
    #00ff85
  ); */
  background-size: 300% 300%;
  filter: blur(45px);
  opacity: 0.85;

  animation: gradientShift 5s ease infinite;
}

/* image stays on top */
.phone-wrap img {
  position: relative;
  z-index: 2;
  border-radius: 50px;
}
@keyframes gradientShift {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
.hw-step-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hw-step {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  max-width: 430px;
}
.hw-step:last-child {
  border-bottom: none;
}
.hw-step-num {
  font-size: 6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hw-step-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 0.25rem;
}
.hw-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hw-step p {
  font-size: 1rem;
  line-height: 1.75;

  margin-bottom: 1rem;
}
.hw-step ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hw-step ul li {
  

  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.hw-step ul li::before {
  content: "•";
  color: var(--orange);
  flex-shrink: 0;
}

/* ── PROTOCOL SHIFT ── */
#protocol {
  padding: 7rem 0;
  /* background: var(--dark2); */
}
.proto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 3rem;
box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.23);


}
.proto-col {
  padding: 2.5rem;
}
.proto-col.old {
  /* background: var(--card); */
}
.proto-col.new {
  background: #111825;
}
.proto-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proto-col.old .proto-head {
  /* color: var(--muted2); */
}
.proto-col.new .proto-head {
  color: var(--orange);
}
.dot-old {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}
.dot-new {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.badge-active {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.proto-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proto-item {
  padding: 1rem 0;
  border-bottom: 1px solid #cccccc50;
  line-height: 1.5;
  font-size: 1.2rem;
  min-height: 110px;
}
.proto-item:last-child {
  border-bottom: none;
}
.proto-col.old .proto-item {
  /* color: var(--muted2); */
}
.proto-col.new .proto-item {
  color: #e2e8f0;
}
.proto-col.new .proto-item strong {
  color: var(--orange-light);
}

/* ── WHO ── */
#who {
  padding: 4rem 0;
}
.who-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.who-nav {
  display: flex;
  gap: 0.5rem;
}
.who-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* border: 1px solid var(--border2); */
  background: transparent;
  /* color: #fff; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.who-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.who-card {
  /* background: var(--card); */
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.3s;
  height: 100%;
}
.who-card:hover {
  border-color: var(--border2);
}
.who-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
 .who-icon i,
.region_ops-icon i {
  font-size: 1.1rem;
  color: #00000080;
}
.rlaw-shield i,
.rstep-num i {
  font-size: 1rem;
}
.wf-icon i {
  font-size: 1.25rem;
}
.who-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.who-card p {
  font-size: 0.78rem;
  line-height: 1.7;
  /* color: var(--muted); */
}
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.5rem;
}
.who-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #ccc;
  /* color: var(--muted2); */
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

/* ── REGIONS ── */
#regions {
  padding: 7rem 0;
  background: var(--dark2);
  margin-top: 100px;
  top: 0;
}
.region_ops {
  background-color: #fff;
  padding-bottom: 4rem;
}
.region_ops-top > div {
  max-width: 100%;
}

.region_ops-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.region_ops-nav {
  display: flex;
  gap: 0.5rem;
  align-self: flex-end;
}
.region_ops-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.region_ops-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.region_ops-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.region_ops-tabs::-webkit-scrollbar {
  display: none;
}
.region_ops-tab {
  flex: 1 1 0;
  min-width: max-content;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
  position: relative;
}
.region_ops-tab-img {
  display: none;
}
.region_ops-tab.active .region_ops-tab-img {
  display: block;
}
.region_ops-tab.active {
  color: #fff;
background-color: var(--dark2);
border-radius: 0 0 24px 24px;

}
.region_ops-tab.active::after,
.region_ops-tab.active::before {
  content: '';
  position: absolute;
  top: 0;
  width: 14px;
  height: 14px;
  
}
.region_ops-tab.active::after {
  
  left: -14px;
  background: url('../img/lcorner.svg') no-repeat bottom left;
}
.region_ops-tab.active::before {
  
  right: -14px;
  background: url('../img/rcorner.svg') no-repeat bottom left;
}


.region_ops-tab:hover:not(.active) {
  color: rgba(0, 0, 0, 0.7);
}
.region_ops-panel {
  display: none;
}
.region_ops-panel.active {
  display: block;
}
.region_ops-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.3s;
  width: 100%;
  height: 100%;
}
.region_ops-card:hover {
  border-color: var(--border2);
}
.region_ops-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.region_ops-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.region_ops-card p {
  font-size: 0.78rem;
  line-height: 1.7;
}
.region_ops-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.5rem;
}
.region_ops-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid #ccc;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

/* ── SWIPER CARDS (mobile-first) ── */
.mySwiper,
.region_ops-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 2.75rem;
}

.mySwiper .swiper-slide,
.region_ops-swiper .swiper-slide {
  height: auto;
  min-height: 0;
  display: flex;
}

.mySwiper .swiper-slide > *,
.region_ops-swiper .swiper-slide > * {
  width: 100%;
}

.mySwiper .swiper-pagination,
.region_ops-swiper .swiper-pagination {
  bottom: 0 !important;
}

@media (min-width: 768px) {
  #who {
    padding: 7rem 0;
  }
  .who-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .who-card,
  .region_ops-card {
    padding: 2rem;
  }
  .region_ops {
    padding-bottom: 100px;
  }
  .region_ops-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
  }
  .region_ops-top > div {
    max-width: min(1000px, 100%);
  }
  .region_ops-nav {
    position: relative;
    top: -36px;
  }
  .region_ops-tabs {
    margin-bottom: 2rem;
    overflow-x: visible;
  }
  .region_ops-tab {
    flex: 0 1 auto;
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
  }
  .who-nav-btn,
  .region_ops-nav-btn {
    width: 36px;
    height: 36px;
  }
  .mySwiper .swiper-slide,
  .region_ops-swiper .swiper-slide {
    min-height: 260px;
  }
}

.region-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-top: 3rem;
  margin-bottom: 0;
}
.rtab {
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.rtab.active {
  color: #fff;
  border-bottom-color: var(--orange);
}
.rtab:hover:not(.active) {
  color: rgba(255, 255, 255, 0.7);
}
.region-panel {
  display: none;
}
.region-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 3rem;
}
.region-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1a2a1a, #0f200f);
}
.region-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.region-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.region-img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(52, 211, 153, 0.2);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.region-laws {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.flags {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
}
.flags::after {
  content: '';
  left: 65px;
  height: 150px;
  bottom: 50px;
  width: 4px;
  background-color: #ccc;
  position: absolute;
  z-index: 3;
}
.flags::before {
  content: '';
  left: 56px;
  height: 5px;
  bottom: 46px;
  width: 20px;
  background-color: #000;
  position: absolute;
  z-index: 2;
  filter: blur(3px);
}
.flag {
  position: absolute;
  top: -100px;
  left: 65px;
  z-index: 4;
  
  
  
}
.rlaw::after {
  content: '';
  width: 4px;
  background-color: #4EDEA310;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
}
.rlaw {
 position: relative;
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 24px;
gap: 24px;

width: 795px;
height: 124px;

background: #131B2E;
opacity: 1 !important;


}
.rlaw:hover::after {
  background-color: #4EDEA3;
  z-index: 2;
}
.rlaw:hover {
  background-color: #171F33;
}
.rlaw-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.rlaw-shield {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
aspect-ratio: 1/1;
background: #2D3449;
border-radius: 2px;
color: #95D3BA;
font-size: 24px;

}
.rlaw:hover .rlaw-shield {
  background-color: #10B98110;
  color: #95D3BA;
}
.rlaw h5 {
  /* font-size: 0.88rem; */
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #fff;
}
.rlaw p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}
.rlaw-penalty {
 
  font-weight: 400;
  color: var(--orange-light);
  white-space: nowrap;
  text-align: right;
}
.region-steps-title {
  /* font-size: 0.72rem; */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1.25rem;
}
.rsteps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  isolation: isolate;

}
.rsteps::before {
  content: '';
  width: 2px;
  
  background-color: #3C4A42;
  position: absolute;
  z-index: -1;
  top: 36px;
  left: 19px;
  bottom: 36px;

}
.rstep {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  /* border-bottom: 1px solid var(--border); */
  opacity: 1 !important;
}
.rstep:last-child {
  border-bottom: none;
}
.rstep-num {

display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 0px;


height: 40px;
aspect-ratio: 1/1;
background: #2D3449;
border: 2px solid #3C4A42;
border-radius: 12px;

color: #fff;

}
.rstep:hover .rstep-num  {
  background-color: #4EDEA3;
  color: #0a0c14;
}
.rstepsbtn {

display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 24px 0px;

width: 100%;
height: 74px;

border: 1px solid #4EDEA3 !important;
color: #4EDEA3 !important;
border-radius: 0;

}
.rstep h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
}
.rstep p {
  /* font-size: 0.75rem;
  color: var(--muted); */
  color: #BBCABF;
  line-height: 1.6;
}

/* ── COMPARISON TABLE ── */
#compare {
  padding: 7rem 0;
  background: var(--dark);
}
.compare-badge {
  font-size: .87rem;
display: flex;
flex-direction: row;
align-items: center;
padding: 8px 16px;
gap: 8px;

width: fit-content;

background: rgba(78, 222, 163, 0.1);
border: 1px solid rgba(78, 222, 163, 0.2);
border-radius: 12px;
color: var(--hblue);
text-transform: uppercase;
margin: 50px auto 0;

}
.ctable-wrap {
  overflow-x: auto;
  margin-top: 3rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
thead tr {
  background: var(--card2);
}
th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #fff;
  text-align: center;
}
th:first-child {
text-align: left;
}
th.govra-h {
  background: rgba(249, 115, 22, 0.08);
  color: var(--hblue);
  font-size: 1.2rem;
}
th:first-child {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  /* font-size: 0.78rem; */
}
tbody tr {
  border-bottom: 1px solid var(--border);
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
td {
  padding: 0.9rem 1.25rem;
  /* font-size: 0.83rem; */
  color: var(--muted);
  border-right: 1px solid var(--border);
  vertical-align: middle;
  text-align: center;
}
td:first-child {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  /* font-size: 0.82rem; */
}
td.govra-c {
  background: rgba(249, 115, 22, 0.04);
  color: #fff;
}
.tc-full {
  color: var(--hblue);
  font-weight: 600;
  /* display: flex; */
  align-items: center;
  gap: 0.4rem;
}
.tc-partial {
  color: var(--orange);
  /* font-size: 0.78rem; */
}
.tc-no {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}
.tc-same {
  color: #22c55e;
  font-weight: 700;
}
.table-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  gap: 0.5rem;
}
.table-badge::before,
.table-badge::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
}

/* ── PRICING ── */
#pricing {
  padding: 7rem 0;
  background: #fff;
}
#pricing .s-title {
  color: #111;
}
#pricing .s-title .orange {
  color: var(--orange);
}
#pricing .eyebrow {
  color: var(--orange);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.price-card {
  background: #1a1f2e;
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.price-card.popular {
  background: var(--orange);
  border-color: transparent;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
}
.price-plan {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.price-card.popular .price-plan {
  color: rgba(255, 255, 255, 0.7);
}
.price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-val sub {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}
.price-billing {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.4rem 0 2rem;
}
.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-feats li {
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
}
.price-feats li.yes {
  color: #fff;
}
.price-feats li.yes::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
}
.price-feats li.no {
  opacity: 0.35;
  text-decoration: line-through;
}
.price-feats li.no::before {
  content: "×";
  font-weight: 700;
}
.price-card.popular .price-feats li.yes::before {
  color: #fff;
}
.price-card.popular .price-feats li {
  color: rgba(255, 255, 255, 0.85);
}
.price-card.popular .price-feats li.yes {
  color: #fff;
}
.price-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
}
.price-btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.price-btn-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}
.price-btn-white {
  background: #fff;
  color: var(--orange);
}
.price-btn-white:hover {
  background: #fff3ec;
}

/* ── FAQ ── */
#faq {
  padding: 7rem 0;
  background: var(--orange);
}
#faq .s-title {
  color: #111;
}
#faq .eyebrow {
  color: #fff
}
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  text-align: left;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  &:hover{
    background-color: transparent;
    color: inherit;
  }
}
.faq-icon {
  font-size: 2.2rem;
  font-weight: 300;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-ans-inner {
  padding-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #000;
}

/* ── CTA ── */
#cta {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url(../img/cta_bg.jpg) center center no-repeat;
  background-size: cover;
  /* background: linear-gradient(160deg, #0d1a0d, #1a2d1a); */
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
#cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 1rem;
  position: relative;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #0a0c14;
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-size: 1.2rem;
  font-weight: 900;
}
.footer-brand p {
  font-size: 0.72rem;
  color: var(--muted2);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 220px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.72rem;
  color: var(--muted2);
}

/* ── ANIMATIONS ── */
[data-a] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-a].in {
  opacity: 1 !important;
  transform: translateY(0);
}
[data-a="left"] {
  transform: translateX(-24px);
}
[data-a="left"].in {
  transform: translateX(0);
}
[data-a="right"] {
  transform: translateX(24px);
}
[data-a="right"].in {
  transform: translateX(0);
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.2s;
}
[data-delay="3"] {
  transition-delay: 0.3s;
}
[data-delay="4"] {
  transition-delay: 0.4s;
}
[data-delay="5"] {
  transition-delay: 0.5s;
}
[data-delay="6"] {
  transition-delay: 0.6s;
}
.speedAi { 
  /* border: solid 1px #c00;  */
   position: relative; 
  }
.speedAi::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 67px;
  height: 145px;
  background: var(--card); 
  border: 1px solid var(--border);
  border-radius: 30px !important;
}
.speedAi > div {
 border-radius: 30px 0 0 30px !important;
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .trust-inner,
  .wf-inner,
  .hw-steps,
  .proto-grid,
  .region-panel.active,
  .who-grid,
  .price-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .prob-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hw-phone {
    position: relative;
    top: auto;
   
    overflow: unset !important;
  }
  .wf-sticky {
    position: relative;
    top: auto;
  }
  nav {
    padding: 0.9rem 1.5rem;
  }
  .nav-actions-desktop {
    display: none;
  }
  .mobile-menu-content {
    padding: 5rem 1.5rem 2.5rem;
  }
  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
  }
  .wrap {
    padding: 0 1.5rem;
  }
  .fails-intro-box {
    border-radius: 0 0 40px 40px;
  }
  table {
    font-size: 0.75rem;
  }
  th,
  td {
    padding: 0.7rem 0.8rem;
  }
  .fails-intro-box {
    padding-top: 50px !important;
  }
  .curve {
    border-radius: 0 0 600px 600px;
    background-color:var(--dark2);
    padding-bottom: 220px;
    
  }
  .hw-phone {
    transform: translateX(-50%) !important;
  }
  .hw-step-items,
  .s-title,
  .eyebrow  {
    /* padding-inline: 40px !important; */
  }
  #trust,
  #trust-container {
    width: 100% !important;
    max-width: 100%;
  }
  .rlaw {
    width: 90vw;
  }
  #why-fails,
  #how-works,
  #regions {
    width: 100vw;
    overflow: hidden;
    padding-inline: 24px;
  }
  #fails-intro .s-body {
    padding-inline: 80px;
  }
  .rlawTitle {
    flex-direction: column;
    align-items: start;
   
  }
  .region_ops-nav, .who-nav { margin: auto;}
}
