:root {
  --navy: #0A1628;
  --navy-mid: #122040;
  --blue: #1A6BFF;
  --blue-light: #3D86FF;
  --blue-pale: #EEF4FF;
  --teal: #00C9A7;
  --teal-light: #00E5C0;
  --green: #00A86B;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

/* ── NAV ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all .3s;
}

nav.scrolled {
  box-shadow: var(--shadow-md);
  height: 72px;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 180px;
}

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

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  padding: 9px 22px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  background: #26E2CE;
  background: linear-gradient(276deg, rgba(38, 226, 206, 0.57) 41%, rgba(2, 173, 245, 1) 100%);
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 107, 255, 0.35);
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 107, 255, 0.45);
}

/* MOBILE MENU STYLES */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav-mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: white;
  z-index: 2000;
  padding: 80px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
  transition: 0.3s;
}

.mobile-menu-close:hover {
  color: var(--blue);
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu-links a {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--blue);
  padding-left: 10px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 45, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

/* ── HERO ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #F0F5FF 0%, #E8F5F0 40%, #F8FAFC 100%);
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

#hero .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 107, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 107, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual .video-container {
  width: 100%;
  /* max-width: 500px; */
  height: 410px;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(26, 107, 255, 0.15);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.who-text {
  flex: 1;
  text-align: left;
}

.hero-visual {
  flex: 1;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #11b5f2;
  background: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  border: 2px solid #11b5f2;
  transition: 0.3s;
}

.btn-hero-ghost:hover {
  background: var(--gray-50);
  border-color: var(--blue-light);
  color: var(--blue);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  border-top: 1px solid rgba(26, 107, 255, 0.1);
  padding-top: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.hero-stat .lbl {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero-primary {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(276deg, rgba(38, 226, 206, 0.57) 41%, rgba(2, 173, 245, 1) 100%);
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(26, 107, 255, 0.4);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 107, 255, 0.5);
}

/* ── ZIG-ZAG HOME PAGE SECTIONS ─────────────────── */
.zigzag-section {
  padding: 100px 5%;
  overflow: hidden;
}

.zigzag-section:nth-of-type(even) {
  background: #F8FAFC;
}

.zigzag-section:nth-of-type(even) .container {
  flex-direction: row-reverse;
}

.zigzag-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.zz-content {
  flex: 1;
  text-align: left;
}

.zz-video {
  flex: 1.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid white;
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
}

.zigzag-section .section-title {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.zigzag-section .section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ── REBATE PAGE COMPONENTS ──────────────────────── */
.rebate-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(180deg, #F0F5FF 0%, #FFFFFF 100%);
  text-align: center;
}

.video-container {
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid white;
  background: var(--navy);
  position: relative;
  height: 510px;
}

/* User requested rebate table styling */
.rebate-table-container {
  max-width: 1200px;
  margin: 50px auto 0;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(26, 107, 255, 0.08);
  border: 1px solid var(--gray-100);
  overflow-x: auto;
}

.rebate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 900px;
}

.rebate-table th {
  background: #02adf5;
  padding: 24px 15px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--gray-100);
}

.rebate-table td {
  padding: 20px 15px;
  font-size: 0.95rem;
  color: #000;
  border-bottom: 1px solid var(--gray-50);
  font-weight: 500;
}

.rebate-table tr:nth-child(even) td {
  background: #02adf5;
  color: #fff;
}

.rebate-table tr:hover td {
  /* background: var(--blue-pale); */
  /* color: var(--navy); */
}

.stage-badge {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-block;
}

.totals-section {
  padding: 120px 5% 100px;
  background: #F8FAFC;
  text-align: center;
}

.totals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.total-card {
  background: white;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.04);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.total-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 107, 255, 0.1);
  border-color: var(--blue-light);
}

.total-card h4 {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.total-card .amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.total-card.main-total {
  background: linear-gradient(135deg, #1A6BFF 0%, #00C9A7 100%);
  border: none;
}

.total-card.main-total h4 {
  color: rgba(255, 255, 255, 0.75);
}

.total-card.main-total .amount {
  color: white;
}

.dark-info-section {
  padding: 120px 5%;
  background: linear-gradient(276deg, rgb(31 48 74) 41%, rgb(125 232 222) 100%);
  color: white !important;
  position: relative;
  z-index: 5;
}

.dark-info-section h2,
.dark-info-section h3,
.dark-info-section h4,
.dark-info-section h5 {
  color: white !important;
}

.dark-info-section p {
  /* color: rgba(255,255,255,0.7) !important; */
  padding: 10px 0;
  max-width: 640px;
  margin: 0 auto;
}

#compliance {
  background: var(--navy) !important;
  color: white !important;
}

#compliance h2 {
  color: white !important;
}

#compliance .section-sub {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Premium Benefit Cards */
.benefits-section {
  padding: 120px 5%;
  background: white;
  text-align: center;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.benefit-card-premium {
  background: #F8FAFC;
  border: 1px solid var(--gray-100);
  border-radius: 32px;
  padding: 48px 32px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.benefit-card-premium:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 107, 255, 0.08);
  border-color: rgba(26, 107, 255, 0.2);
}

.benefit-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
}

.benefit-card-premium h4 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 800;
}

.benefit-card-premium p.main-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  min-height: 3.4em;
}

.benefit-info-block {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.benefit-info-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #EEF4FF;
  color: var(--blue);
  margin-bottom: 16px;
}

.benefit-info-tag.economy {
  background: #E6FBF7;
  color: var(--teal);
}

.benefit-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.benefit-card-list li {
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.benefit-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

.economy .benefit-card-list li::before {
  color: var(--teal);
}

/* ── HOME PAGE GLOBAL COMPONENTS ────────────────── */
section {
  padding: 100px 5%;
}

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

.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.centered {
  text-align: center;
}

.centered .section-sub {
  margin: 0 auto;
  max-width: 700px;
}

/* ── HOW IT WORKS ───────────────────────────────── */
#why {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.step-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(26, 107, 255, 0.08);
  border-color: rgba(26, 107, 255, 0.2);
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 4px solid #F0F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-emoji {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

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

.benefit-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: 0.3s;
}

/* ── FORM COMPONENTS ───────────────────────────── */
.contact-form-premium {
  background: white;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.05);
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: #F9FAFB;
  transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 107, 255, 0.1);
}

.form-textarea {
  height: 150px;
  resize: none;
}

/* ── VISION ─────────────────────────────────────── */
#vision {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.vision-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.vs-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: white;
}

.vs-num span {
  color: var(--teal);
}

/* ── CTA ────────────────────────────────────────── */
#cta {
  background: white;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2E4A 100%);
  border-radius: var(--radius-xl);
  padding: 72px 80px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 80px 5% 40px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 300px;
}

.footer-col h5 {
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #26E2CE;
  padding-left: 5px;
}

/* ── WHEEL PRECISION REPLICA ─────────────────── */
.wheel-section {
  background: #ffffff;
  /* Warm light beige from reference */
  padding: 120px 5%;
  color: #001f3f;
  font-family: 'Sora', sans-serif;
  position: relative;
  overflow: hidden;
}

.wheel-title-large {
  text-align: center;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #001f3f;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
}

.wheel-title-sub {
  color: #001f3f;
  font-size: 0.7em;
  font-weight: 800;
  display: block;
  margin-top: 5px;
}

.wheel-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.wheel-graphic-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto;
  animation: floatSubtle 8s ease-in-out infinite;
}

.wheel-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border: 10px solid #13b6f3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(61, 43, 31, 0.1);
}

.wheel-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42.5%;
  height: 2px;
  background: #3d2b1f;
  transform-origin: left center;
  z-index: 2;
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: #3d2b1f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Accuracy Stage Nodes */
.flow-row-precision {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  position: relative;
}

.flow-box-gold {
  background: linear-gradient(276deg, rgba(38, 226, 206, 0.57) 41%, rgba(2, 173, 245, 1) 100%);
  color: #000;
  padding: 12px 24px;
  border: 2.5px solid #000;
  border-radius: 8px;
  min-width: 140px;
  text-align: center;
  font-weight: 850;
}

.flow-box-teal {
  background: linear-gradient(276deg, rgba(38, 226, 206, 0.57) 41%, rgba(2, 173, 245, 1) 100%);
  color: #000;
  padding: 10px 20px;
  border: 2.5px solid #000;
  border-radius: 8px;
  min-width: 140px;
  text-align: center;
  font-weight: 850;
}

.flow-label-side {
  font-size: 1.1rem;
  color: #001f3f;
  font-weight: 850;
  line-height: 1.2;
}

.stage-node {
  position: absolute;
  background: linear-gradient(276deg, rgb(38 226 206) 41%, rgba(2, 173, 245, 1) 100%);
  color: #000;
  padding: 10px 15px;
  border: 2px solid #000;
  border-radius: 6px;
  text-align: center;
  min-width: 105px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 10;
}

.stage-node:hover {
  transform: scale(1.1);
  z-index: 20;
}

.stage-node.white-node {
  background: #fff !important;
}

.stage-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
}

.stage-amount {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}

/* Badges */
.badge-block {
  background: linear-gradient(276deg, rgba(38, 226, 206, 0.57) 41%, rgba(2, 173, 245, 1) 100%);
  color: #000;
  padding: 10px 25px;
  border: 4px solid #000;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
}

/* Compliance List Replica */
.compliance-sidebar h3 {
  font-size: 1.6rem;
  color: #001f3f;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.compliance-list li {
  box-shadow: var(--shadow-sm);
}

.flow-connector {
  color: #cbd5e1;
  font-size: 1.4rem;
}

.flow-final {
  font-weight: 850;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #02adf5;
}

/* Animations Updated for Light Theme */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes glowPulseLight {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(2, 173, 245, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(2, 173, 245, 0.4);
  }
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
  display: inline-block;
}

.footer-social a:hover {
  color: #26E2CE;
  transform: translateY(-3px);
}

.footer-social i {
  font-size: 24px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-mobile-toggle {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .who-grid {
    flex-direction: column;
    gap: 40px;
  }

  .zigzag-container {
    flex-direction: column;
    gap: 40px;
  }

  .zigzag-section:nth-of-type(even) .container {
    flex-direction: column;
  }

  .steps-grid,
  .benefits-grid,
  .benefits-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .steps-grid,
  .benefits-grid,
  .benefits-grid-new,
  .zigzag-section .container {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .rebate-table {
    font-size: 0.8rem;
  }

  .video-container,
  .zz-video {
    height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

.revenue-section-precision {
  padding: 120px 0 0 0;
}

@media (max-width: 458px) {
  .wheel-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .footer-grid {

    display: block;

  }

  .footer-brand {
    padding: 0 0 20px 0;
  }

  .who-grid {
    display: block;

  }
}

.dark-info-grid {
  text-align: center;
}

ul {}

.dark-info-item ul li {
  list-style: none;
}

.dark-info-item h5 {
  padding: 10px 0;
  font-size: 23px;
}

.dark-info-list {
  display: flex;
  gap: 10px;
}

.dark-info-list .dark-info-item {
  background: #1f304a;
  padding: 30px 20px;
  border-radius: 20px;
}

.dark-info-content {
  padding: 0 0 40px 0;
}

.benefit-card ul li {
  font-size: 16px;
}

.logo-class ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 0 0;
}

.logo-class ul li img {
  width: 320px;
}

.logo-class ul li {
  list-style: none;
}