@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --navy: #0D1B2A;
  --navy2: #132B50;
  --blue: #1B4B8A;
  --blueA: #3B82F6;
  --blueG: #60A5FA;
  --cyan: #06B6D4;
  --cyanG: rgba(6, 182, 212, .12);
  --green: #10B981;
  --greenG: #34D399;
  --orange: #F59E0B;
  --red: #EF4444;
  --purple: #8B5CF6;
  --glass: rgba(255, 255, 255, .04);
  --gb: rgba(255, 255, 255, .07);
  --text: #E2E8F0;
  --tm: #94A3B8;
  --td: #64748B;
  --white: #fff;
  --dark: #060D16;
  --darkAlt: #0A1628;
  --darkLight: #0D1F3C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(27, 75, 138, .2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(6, 182, 212, .1) 0%, transparent 50%);
}

/* Grid texture REMOVED from body — applied only to .has-grid sections */
.has-grid {
  position: relative;
}

.has-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(59, 130, 246, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, .015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.has-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 30%, rgba(27, 75, 138, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(6, 182, 212, .08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(59, 130, 246, .04) 0%, transparent 70%);
}

.rel {
  position: relative;
  z-index: 1;
}

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

/* SECTION ALTERNATING BACKGROUNDS */
.bg-dark {
  background: var(--dark);
}

.bg-alt {
  background: var(--darkAlt);
}

.orbit-section.bg-alt {
  background: #060E1E;
}

.track-section.bg-alt {
  background: #040A14;
}

.bg-light {
  background: var(--darkLight);
}

.bg-alt,
.bg-light {
  position: relative;
}

/* UTILITY */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .hl {
  background: linear-gradient(135deg, var(--blueA), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 16px;
  color: var(--tm);
  line-height: 1.7;
  max-width: 640px;
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--gb);
  margin: 0 auto;
  max-width: 1140px;
}

/* GLASS CARD */
.gc {
  background: rgba(13, 27, 42, .5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gb);
  border-radius: 16px;
  transition: all .3s;
}

.gc:hover {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(13, 27, 42, .65);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  border: none;
  text-decoration: none;
}

.btn-blue {
  background: linear-gradient(135deg, var(--blueA), #2563EB);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, .3);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, .45);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gb);
  color: var(--tm);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-ghost:hover {
  border-color: var(--tm);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn svg {
  flex-shrink: 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 13, 22, .8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gb);
  padding: 12px 0;
  transition: all .4s cubic-bezier(.19, 1, .22, 1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height .4s cubic-bezier(.19, 1, .22, 1);
}

.nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--tm);
  transition: color .2s;
}

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

.nav-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .3s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, .3);
}

.nav.scrolled {
  padding: 8px 0;
  background: rgba(6, 13, 22, .95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

/* ========================= HAMBURGER TOGGLE ========================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

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

@media(max-width:768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 13, 22, .98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
    padding: 80px 24px 40px;
  }

  .nav-links.open { display: flex; }

  .nav-link { font-size: 18px; }

  .nav-cta { font-size: 16px; padding: 12px 28px; }

  .nav-inner { position: relative; z-index: 1001; }
}

/* WA SVG */
.wa-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* HERO */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero .orb1 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, .12);
  top: -120px;
  right: -80px;
}

.hero .orb2 {
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, .08);
  bottom: -60px;
  left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gb);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blueA), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  font-size: 17px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gb);
  display: flex;
  gap: 40px;
}

.hero-trust-item {
  text-align: left;
}

.hero-trust-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.hero-trust-item span {
  font-size: 11px;
  color: var(--td);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* HERO RIGHT — METRICS CARD */
.hero-card {
  padding: 32px;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .3), rgba(6, 182, 212, .2), rgba(59, 130, 246, .1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hc-title {
  font-size: 13px;
  color: var(--td);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hc-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
  justify-content: center;
}

.hc-metric strong {
  font-size: 54px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hc-metric-sub {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.1;
}

.hc-metric span {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

.hc-desc {
  font-size: 13px;
  color: var(--tm);
  margin-bottom: 24px;
}

.hc-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hc-bar-label span:first-child {
  color: var(--tm);
}

.hc-bar-label span:last-child {
  color: var(--white);
}

.hc-bar {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
}

.hc-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
}

.hc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(16, 185, 129, .1);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, .2);
}

/* PROBLEM SECTION */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.problem-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.problem-card .accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.problem-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.6;
}

.problem-cta {
  text-align: center;
  margin-top: 40px;
}

/* ABOUT / N7 */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar-card {
  padding: 20px;
  cursor: default;
}

.pillar-card .top-bar {
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.pillar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.5;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-text p {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlight {
  background: rgba(6, 182, 212, .08);
  border: 1px solid rgba(6, 182, 212, .15);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}

.about-highlight p {
  font-size: 14px;
  color: var(--cyan);
  margin: 0;
  font-weight: 500;
}

/* SOLUTIONS BLOCKS */
.sol-block {
  margin-bottom: 48px;
}

.sol-block-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}

.sol-block-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.sol-block-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.sol-block-sub {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.6;
}

.sol-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.19, 1, .22, 1), opacity .4s, margin .4s;
  opacity: 0;
  margin-top: 0;
}

.sol-block-grid.sol-open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 24px;
}

.sol-mini {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.sol-mini h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sol-mini p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.6;
}

@media(max-width:900px) {
  .sol-block-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sol-block-grid {
    grid-template-columns: 1fr;
  }
}

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.compare-col {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.compare-col .top-bar {
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.compare-col h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.compare-col ul {
  list-style: none;
  padding: 0;
}

.compare-col ul li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gb);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.compare-col ul li:last-child {
  border: none;
}

.compare-col ul li .ico {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

/* ========================= TRACK RECORD ========================= */
.tr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 40px 0 48px;
}

.tr-stat {
  padding: 28px 20px;
  text-align: center;
  overflow: hidden;
}

.tr-num {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -.5px;
}

.tr-desc {
  font-size: 12px;
  color: var(--tm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Counter animation */
.tr-stat .tr-num {
  transition: transform .4s cubic-bezier(.19, 1, .22, 1);
}

.tr-stat:hover .tr-num {
  transform: scale(1.1);
}

/* Mini bar graph for stats */
.tr-mini-bar {
  height: 4px;
  background: rgba(255, 255, 255, .06);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.tr-mini-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.8s cubic-bezier(.19, 1, .22, 1);
}

.tr-stat.counted .tr-mini-bar-fill {
  width: var(--bar-w, 100%);
}

.tr-founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tr-founder-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tr-founder-pillar {
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.tr-founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  border: 2px solid var(--gb);
}

.tr-founder-pillar-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tr-founder-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.tr-founder-role {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .5px;
}

.tr-founder-bio {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tr-founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tr-founder-tags span {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--gb);
  color: var(--td);
}

.tr-quote {
  padding: 28px 36px;
  text-align: center;
  margin-bottom: 40px;
  border-left: 3px solid var(--cyan);
}

.tr-quote p {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.8;
  font-style: italic;
}

@media(max-width:900px) {
  .tr-founders {
    grid-template-columns: 1fr;
  }

  .tr-stats {
    grid-template-columns: 1fr;
  }
}

/* ========================= ORBIT ANIMATED ========================= */
.orbit-anim-wrap {
  position: relative;
  width: 100%;
  max-width: 910px;
  aspect-ratio: 1;
  margin: 56px auto 48px;
  overflow: hidden;
}

.orbit-anim-system {
  width: 100%;
  height: 100%;
  position: relative;
  animation: orbit-spin 90s linear infinite;
}

.orbit-anim-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-anim-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #0c1a30, #080d17);
  border: 2px solid #38bdf8;
  box-shadow: 0 0 40px rgba(77, 208, 225, 0.3) inset, 0 0 40px rgba(77, 208, 225, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.orbit-anim-core-content {
  text-align: center;
  animation: orbit-counter-spin-center 90s linear infinite;
}

.orbit-anim-core-content h3 {
  color: #ffffff;
  margin: 0;
  font-size: clamp(14px, 3.2vw, 26px);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.orbit-anim-core-content p {
  color: #94a3b8;
  margin: 5px 0 0 0;
  font-size: clamp(7px, 1.2vw, 10px);
  letter-spacing: 2px;
}

.orbit-anim-node {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 5;
}

.orbit-anim-node-pivot {
  position: absolute;
  left: 0;
  top: 0;
  animation: orbit-counter-spin-node 90s linear infinite;
}

.orbit-anim-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
  position: absolute;
  transform: translate(-50%, -50%);
}

.orbit-anim-label {
  position: absolute;
  transform: translate(-50%, 20px);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 17, 30, 0.85);
  border-radius: 6px;
  color: white;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.orbit-anim-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-counter-spin-node {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes orbit-counter-spin-center {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media(max-width:900px) {
  .orbit-anim-wrap {
    max-width: 100%;
    margin: 20px auto 16px;
    overflow: visible;
  }

  .orbit-anim-dot {
    width: 14px;
    height: 14px;
  }

  .orbit-anim-label {
    font-size: 9px;
    padding: 4px 10px;
    letter-spacing: 1px;
  }
}

@media(max-width:480px) {
  .orbit-anim-wrap {
    max-width: 100%;
  }

  .orbit-anim-dot {
    width: 10px;
    height: 10px;
  }

  .orbit-anim-label {
    font-size: 8px;
    padding: 3px 8px;
    transform: translate(-50%, 12px);
  }
}

.orbit-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.orbit-pillar {
  padding: 28px 24px;
  text-align: center;
}

.orbit-pillar-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.orbit-pillar h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.orbit-pillar p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.orbit-bottom {
  padding: 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.orbit-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blueA), var(--cyan), var(--green));
}

.orbit-bottom-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.orbit-bottom h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.orbit-bottom p {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.7;
}

.orbit-bottom-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.orbit-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--gb);
  border-radius: 10px;
}

.orbit-highlight-item strong {
  font-size: 16px;
  font-weight: 800;
  min-width: 70px;
}

.orbit-highlight-item span {
  font-size: 12px;
  color: var(--tm);
}

@media(max-width:900px) {
  .orbit-pillars {
    grid-template-columns: 1fr;
  }

  .orbit-bottom-inner {
    grid-template-columns: 1fr;
  }

  .orbit-visual {
    max-width: 400px;
    height: 400px;
    margin: 20px auto 16px;
  }

  .ov-ring-inner {
    inset: 50px;
  }

  .ov-ring-mid {
    inset: 25px;
  }

  .ov-glow {
    width: 160px;
    height: 160px;
  }

  .ov-center {
    width: 130px;
    height: 130px;
  }

  .ov-center-label {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .ov-node-dot {
    width: 14px;
    height: 14px;
  }

  .ov-node span {
    font-size: 10px;
    padding: 4px 12px;
  }

  .ov-n1 {
    top: 24px;
  }

  .ov-n2 {
    top: 120px;
    right: 6px;
  }

  .ov-n3 {
    bottom: 50px;
    right: 38px;
  }

  .ov-n4 {
    bottom: 50px;
    left: 38px;
  }

  .ov-n5 {
    top: 120px;
    left: 6px;
  }
}

/* SOFTWARE HOUSE */
.sh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.sh-card {
  padding: 28px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}

.sh-card:hover {
  border-color: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.sh-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sh-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.sh-card p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.sh-bottom {
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gb);
  border-radius: 16px;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sh-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blueA), var(--cyan), var(--green), var(--orange));
}

.sh-bottom-text {
  flex: 1;
}

.sh-bottom h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.sh-bottom p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.sh-bottom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
  max-width: 320px;
}

.sh-bottom-tags span {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--gb);
}

@media(max-width:900px) {
  .sh-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sh-bottom {
    flex-direction: column;
  }

  .sh-bottom-tags {
    max-width: 100%;
  }
}

@media(max-width:550px) {
  .sh-grid {
    grid-template-columns: 1fr;
  }
}

/* SMARTECH */
.smartech-word {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.sw-s {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(245, 158, 11, .3);
}

.sw-mar {
  color: var(--blueA);
  text-shadow: 0 0 40px rgba(59, 130, 246, .3);
}

.sw-tech {
  color: var(--green);
  text-shadow: 0 0 40px rgba(16, 185, 129, .3);
}

.smartech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 32px;
}

.smartech-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smartech-letter-wrap {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.smartech-letter {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.smartech-meaning {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.smartech-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--gb);
  background: rgba(255, 255, 255, .03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--td);
  overflow: hidden;
  transition: border-color .3s;
}

.smartech-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.smartech-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.smartech-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.smartech-bio {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 16px;
}

.smartech-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.smartech-pill {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid;
  background: rgba(255, 255, 255, .02);
}

.smartech-connector {
  padding: 28px 32px;
  margin-bottom: 32px;
}

.smartech-conn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.smartech-conn-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.smartech-conn-txt {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.4;
  text-align: left;
}

.smartech-conn-plus,
.smartech-conn-eq {
  font-size: 24px;
  font-weight: 800;
  color: var(--td);
}

.smartech-conn-result {
  padding: 8px 20px;
  border-radius: 10px;
  background: rgba(6, 182, 212, .08);
  border: 1px solid rgba(6, 182, 212, .2);
}

/* SMARTECH 4TH FOUNDER HIGHLIGHT */
.smartech-founder-highlight {
  padding: 28px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, .15);
  background: rgba(6, 182, 212, .03);
}

.smartech-founder-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blueA), var(--cyan));
}

.sfh-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sfh-photo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  flex-shrink: 0;
}

.sfh-content {
  flex: 1;
}

.sfh-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sfh-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.sfh-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.sfh-bio {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.sfh-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
  flex-shrink: 0;
}

.sfh-stat {
  text-align: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--gb);
  border-radius: 10px;
}

.sfh-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 2px;
}

.sfh-stat span {
  font-size: 10px;
  color: var(--td);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media(max-width:900px) {
  .sfh-inner {
    flex-direction: column;
    text-align: center;
  }

  .sfh-stats {
    flex-direction: row;
    justify-content: center;
  }

  .sfh-photo {
    margin: 0 auto;
  }
}

@media(max-width:900px) {
  .smartech-grid {
    grid-template-columns: 1fr;
  }

  .smartech-conn-inner {
    flex-direction: column;
    gap: 10px;
  }

  .smartech-word {
    font-size: 48px;
  }
}

/* METHOD */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

.method-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blueA), var(--cyan), var(--green), var(--orange));
  opacity: .3;
}

.method-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.method-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 16px;
  border: 2px solid var(--gb);
}

.method-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.method-step p {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.5;
}

/* DIAGNOSTIC (embedded) */
.diag-wrapper {
  margin-top: 48px;
}

.diag-card {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, .06);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blueA), var(--cyan));
  border-radius: 2px;
  transition: width .5s;
}

.step-label {
  text-align: center;
  font-size: 12px;
  color: var(--td);
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--tm);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tm);
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--gb);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  transition: all .2s;
}

.form-group input::placeholder {
  color: var(--td);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blueA);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 14px;
}

.question-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--gb);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}

.question-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--gb);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  background: rgba(255, 255, 255, .02);
}

.option:hover {
  border-color: var(--blueA);
  background: rgba(59, 130, 246, .05);
}

.option.selected {
  border-color: var(--blueA);
  background: rgba(59, 130, 246, .1);
  box-shadow: 0 0 0 1px var(--blueA);
}

.option input {
  display: none;
}

.option-radio {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 2px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all .2s;
}

.option.selected .option-radio {
  border-color: var(--blueA);
  background: var(--blueA);
}

.option.selected .option-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.option-text {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.4;
}

.option.selected .option-text {
  color: var(--white);
  font-weight: 500;
}

/* RESULTS */
.results-wrap {
  display: none;
}

.results-header {
  padding: 40px 0;
  text-align: center;
}

.results-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.results-header p {
  color: var(--td);
  font-size: 14px;
}

.score-card {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.score-left {
  text-align: center;
}

.score-number {
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.score-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--td);
  margin-bottom: 14px;
}

.score-class {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid;
}

.score-msg {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.6;
  margin-top: 16px;
}

.chart-container {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}

.pillar-rcard {
  padding: 18px;
}

.pillar-rcard-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pillar-rcard-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--tm);
}

.pillar-rcard-score {
  font-size: 22px;
  font-weight: 800;
}

.pillar-bar {
  height: 5px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.pillar-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s;
}

.pillar-rcard-desc {
  font-size: 11px;
  color: var(--td);
}

.recs-wrap {
  margin-bottom: 48px;
}

.rec-card {
  padding: 24px;
  margin-bottom: 12px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.rec-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.rec-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.rec-content p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.5;
}

.rec-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 6px;
  border: 1px solid;
}

/* SERVICES SELECTOR */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.svc-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--gb);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  font-size: 13px;
  color: var(--tm);
  font-weight: 500;
}

.svc-chip:hover {
  border-color: rgba(59, 130, 246, .3);
  background: rgba(59, 130, 246, .05);
}

.svc-chip.selected {
  border-color: var(--blueA);
  background: rgba(59, 130, 246, .1);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--blueA);
}

.svc-check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 4px;
  border: 2px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all .2s;
}

.svc-chip.selected .svc-check {
  border-color: var(--blueA);
  background: var(--blueA);
  color: var(--white);
}

.svc-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(6, 182, 212, .08);
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 16px;
}

.svc-all-btn:hover {
  background: rgba(6, 182, 212, .15);
}

.svc-all-btn.active {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: rgba(13, 27, 42, .5);
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
}

.cta-section h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: var(--tm);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* INLINE CTA BANNER */
.cta-banner {
  background: rgba(59, 130, 246, .06);
  border: 1px solid rgba(59, 130, 246, .15);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.cta-banner-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner-text p {
  font-size: 13px;
  color: var(--tm);
}

/* FOOTER */
.footer {
  padding: 56px 0 0;
  border-top: 1px solid var(--gb);
  background: var(--darkAlt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  text-align: left;
}

.footer-col p {
  font-size: 13px;
  color: var(--td);
  line-height: 1.7;
  margin: 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-slogan {
  font-size: 13px;
  color: var(--td);
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  height: 70px;
  width: auto;
  opacity: .85;
  transition: opacity .3s;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-link {
  color: var(--td);
  text-decoration: none;
  transition: color .3s;
}

.footer-link:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--gb);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(148, 163, 184, .5);
  margin: 0;
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, .4);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hidden {
  display: none !important;
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-p {
    margin: 0 auto 32px;
  }

  .btn-row {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .method-steps {
    grid-template-columns: 1fr 1fr;
  }

  .method-steps::before {
    display: none;
  }

  .score-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================= SCROLL REVEAL ========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.19, 1, .22, 1), transform .8s cubic-bezier(.19, 1, .22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s cubic-bezier(.19, 1, .22, 1), transform .8s cubic-bezier(.19, 1, .22, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s cubic-bezier(.19, 1, .22, 1), transform .8s cubic-bezier(.19, 1, .22, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .8s cubic-bezier(.19, 1, .22, 1), transform .8s cubic-bezier(.19, 1, .22, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1), transform .6s cubic-bezier(.19, 1, .22, 1);
}

.stagger.active>* {
  opacity: 1;
  transform: translateY(0);
}

.stagger.active>*:nth-child(1) {
  transition-delay: .05s
}

.stagger.active>*:nth-child(2) {
  transition-delay: .1s
}

.stagger.active>*:nth-child(3) {
  transition-delay: .15s
}

.stagger.active>*:nth-child(4) {
  transition-delay: .2s
}

.stagger.active>*:nth-child(5) {
  transition-delay: .25s
}

.stagger.active>*:nth-child(6) {
  transition-delay: .3s
}

.stagger.active>*:nth-child(7) {
  transition-delay: .35s
}

/* ========================= GLOW DIVIDER ========================= */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blueA), var(--cyan), var(--green), transparent);
  opacity: .3;
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  overflow: hidden;
  contain: layout style;
}

.glow-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  height: 7px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(4px);
  will-change: transform;
  animation: glow-slide 4s linear infinite;
}

@keyframes glow-slide {
  0% {
    transform: translateX(-80px)
  }

  100% {
    transform: translateX(1140px)
  }
}

/* PARTICLE CANVAS */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .4;
  will-change: transform;
}

/* FORM VALIDATION */
.form-error {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

/* TOAST NOTIFICATIONS */
.toast {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1000;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(16px);
  border: 1px solid var(--gb);
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: rgba(16, 185, 129, .15);
  color: var(--green);
  border-color: rgba(16, 185, 129, .3);
}

.toast-error {
  background: rgba(239, 68, 68, .15);
  color: var(--red);
  border-color: rgba(239, 68, 68, .3);
}

/* LOADING SPINNER */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--gb);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin: 0 auto;
}

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

/* ========================= FLOATING ELEMENTS (modern touch) ========================= */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* ========================= GRADIENT TEXT SHIMMER ========================= */
@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--blueA), var(--cyan), var(--green), var(--cyan), var(--blueA));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ========================= PROGRESS BARS ANIMATED ========================= */
.animated-bar {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.animated-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 2s cubic-bezier(.19, 1, .22, 1);
}

.animated-bar.in-view .animated-bar-fill {
  width: var(--bar-width, 50%);
}

/* ========================= ESTRUTURA CAROUSEL ========================= */
.estrutura-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--gb);
  background: rgba(13, 27, 42, .4);
  margin-bottom: 32px;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(6, 13, 22, .85));
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(6, 13, 22, .7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gb);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, .3);
  border-color: var(--blueA);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.carousel-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(6, 182, 212, .5);
}

.estrutura-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.estrutura-hl {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estrutura-hl strong {
  font-size: 22px;
  font-weight: 900;
}

.estrutura-hl span {
  font-size: 12px;
  color: var(--tm);
}

@media(max-width:768px) {
  .estrutura-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px) {
  .estrutura-highlights {
    grid-template-columns: 1fr;
  }
}

/* ========================= ORBIT SAVING (80% custo) ========================= */
.orbit-saving {
  padding: 40px;
  margin: 48px 0 0;
  border: 1px solid rgba(6, 182, 212, .2);
  background: linear-gradient(135deg, rgba(6, 182, 212, .06), rgba(59, 130, 246, .04));
}

.orbit-saving-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.orbit-saving-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
}

.orbit-saving-big {
  font-size: clamp(72px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(6, 182, 212, .3));
}

.orbit-saving-big-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--td);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-top: 8px;
}

.orbit-saving-details {
  flex: 1;
  min-width: 0;
}

.orbit-saving-details h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.orbit-saving-details p {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 16px;
}

.orbit-saving-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.orbit-saving-point {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.orbit-saving-point span {
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.orbit-saving-cta {
  display: inline-flex;
}

@media(max-width:768px) {
  .orbit-saving {
    padding: 28px;
  }

  .orbit-saving-inner {
    flex-direction: column;
    text-align: center;
  }

  .orbit-saving-hero {
    min-width: auto;
  }

  .orbit-saving-points {
    align-items: center;
  }

  .orbit-saving-point {
    text-align: left;
  }

  .orbit-saving-cta {
    align-self: stretch;
    justify-content: center;
  }
}

/* ========================= SOL-BLOCK ACCORDION (all viewports) ========================= */
.sol-block-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  align-self: center;
  background: rgba(6, 182, 212, .08);
  border: 1px solid rgba(6, 182, 212, .2);
  transition: all .3s;
  letter-spacing: .5px;
}

.sol-block-toggle:hover {
  background: rgba(6, 182, 212, .15);
  border-color: rgba(6, 182, 212, .35);
}

.sol-block-toggle.open {
  background: rgba(6, 182, 212, .15);
  color: var(--white);
}

.sol-block-toggle svg {
  transition: transform .3s;
}

.sol-block-toggle.open svg {
  transform: rotate(180deg);
}

/* ========================= ORBIT MOBILE CENTER FIX ========================= */
@media(max-width:900px) {
  .ov-center {
    text-align: center;
  }

  .ov-center-label,
  .ov-center-sub {
    text-align: center;
    display: block;
    width: 100%;
  }
}

/* ========================= SPACING FIX: Soluções → Canais ========================= */
#solucoes .section-center {
  margin-bottom: 56px;
}

/* ========================= CERTIFICATIONS / SELOS ========================= */
.cert-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.19, 1, .22, 1);
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.cert-card-highlight {
  border-color: rgba(59, 130, 246, .25);
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(6, 182, 212, .04));
}

.cert-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blueA), var(--cyan), var(--green));
}

.cert-badge-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.cert-badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.cert-badge-link:hover {
  transform: scale(1.08);
}

.cert-badge-img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, .15));
}

.cert-info {
  flex: 1;
  min-width: 0;
}

.cert-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cert-info p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
  margin-bottom: 12px;
}

.cert-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .12), rgba(6, 182, 212, .08));
  border: 1px solid rgba(59, 130, 246, .25);
  color: var(--cyan);
  animation: cert-glow 3s ease-in-out infinite;
}

@keyframes cert-glow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(6, 182, 212, .1)
  }

  50% {
    box-shadow: 0 0 20px rgba(6, 182, 212, .25);
    border-color: rgba(6, 182, 212, .4);
  }
}

@media(max-width:900px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cert-card:first-child {
    grid-column: 1 / -1;
  }

  .cert-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .cert-badge-wrap {
    width: 120px;
    height: 120px;
  }

  .cert-highlight-tag {
    justify-content: center;
  }
}

/* ========================= COMPREHENSIVE MOBILE FIXES ========================= */
@media(max-width:768px) {
  /* General spacing */
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  .section-center h2, .section-header h2 { font-size: 24px; line-height: 1.2; }
  .section-center p, .section-header p { font-size: 14px; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .hero-p { font-size: 14px; }
  .hero-badge { font-size: 11px; }
  .btn-row { flex-direction: column; gap: 12px; }
  .btn-row .btn { width: 100%; justify-content: center; font-size: 14px; }

  /* Hero Card */
  .hero-card { padding: 20px; }
  .hc-title { font-size: 12px; }
  .hc-metric strong { font-size: 36px; }
  .hc-desc { font-size: 12px; }

  /* Track Record */
  .tr-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tr-stat { padding: 16px; }
  .tr-quote { padding: 16px 20px; }
  .tr-quote p { font-size: 13px; }
  .tr-founders { gap: 16px; }

  /* About / Quem somos */
  .about-grid { gap: 24px; }

  /* Compare */
  .compare-col { padding: 20px; }
  .compare-col h3 { font-size: 16px; }

  /* Method */
  .method-steps { grid-template-columns: 1fr; gap: 16px; }

  /* Diagnostic Form */
  .form-title { font-size: 20px; }
  .form-sub { font-size: 13px; }
  .question-card { padding: 16px; }
  .option { padding: 10px 12px; }
  .option-text { font-size: 13px; }
  .form-actions { flex-direction: column; gap: 10px; }
  .form-actions .btn, .form-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .score-number { font-size: 48px; }

  /* Carousel */
  .carousel-slide { padding: 20px; }

  /* CTA Banner */
  .cta-banner { padding: 28px 20px; gap: 16px; }
  .cta-banner h3 { font-size: 20px; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-seals img { height: 28px; }

  /* Sol Blocks */
  .sol-block-header { padding: 16px; gap: 12px; }
  .sol-block-header h3 { font-size: 16px; }
  .sol-mini { padding: 12px; }

  /* Fix mobile form zoom */
  .form-group input,
  .form-group select {
    font-size: 16px;
  }
}

@media(max-width:480px) {
  .hero h1 { font-size: 24px; }
  .tr-stats { grid-template-columns: 1fr; }
  .hc-metric strong { font-size: 32px; }
  .nav-logo img { height: 26px; }
}