/* =====================================================
   JotJive Global Learning — Clean Single CSS File
   Replace your current style.css with this file.
===================================================== */

:root {
  /* Brand colors */
  --navy: #172642;
  --deep-navy: #0d1830;
  --orange: #f5a623;
  --blue: #1f57d6;
  --green: #14864a;
  --purple: #6842cf;
  --cream: #fff7e8;
  --light: #f4f6fb;
  --white: #ffffff;
  --text: #45485a;
  --border: #d8deef;

  /* Compatibility variables for privacy/refunds pages */
  --ink: var(--navy);
  --ink-soft: var(--text);
  --ink-muted: #6b7280;
  --teal: var(--blue);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Arial, Helvetica, sans-serif;

  /* Website size controls */
  --universal-container-width: 1120px;
  --universal-container-percent: 88%;
  --section-space: 42px;
  --hero-space: 54px;
  --normal-text-size: 15.5px;

  /* Heading size controls */
  --h1-size: clamp(40px, 4.8vw, 62px);
  --h2-size: clamp(30px, 3.5vw, 44px);
  --h3-size: clamp(20px, 2vw, 26px);

  /* Product showcase controls */
  --product-container-width: 900px;
  --product-image-height: 360px;
  --product-image-width: 100%;
}

/* =====================================================
   Reset / Base
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container,
.hero .container,
.section .container {
  width: min(var(--universal-container-width), var(--universal-container-percent));
  max-width: var(--universal-container-width);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-space) 0;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: var(--h1-size);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

h2 {
  font-size: var(--h2-size);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--h3-size);
  line-height: 1.22;
  margin-bottom: 10px;
}

p,
.section-lead,
.section-intro,
.hero-text p,
.hero-panel p,
.serve-card p,
.feature-content p,
.process-step p,
.member-bio,
.contact-intro p,
.pilot-text p {
  font-size: var(--normal-text-size);
  line-height: 1.55;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 14px;
}

.section-header.center,
.section-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 28px;
}

.section-lead,
.section-intro {
  color: var(--text);
  max-width: 820px;
  margin: 0 auto;
}

/* =====================================================
   Header / Navigation
===================================================== */

.site-header {
  background: #ffffff;
  color: var(--navy);
  border-bottom: 4px solid var(--orange);
  box-shadow: 0 10px 28px rgba(23, 38, 66, 0.08);
  position: relative;
  z-index: 100;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 10px 18px;
}

.brand img {
  width: clamp(200px, 22vw, 280px);
  max-width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
}

.main-nav,
nav {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-weight: 800;
}

.main-nav a,
nav a {
  position: relative;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1.5px solid rgba(15, 29, 57, 0.10);
  background: #ffffff;
  transition: all 0.25s ease;
}

.main-nav a:hover,
nav a:hover {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.28);
}

.main-nav .nav-cta,
.nav-cta {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  font-weight: 800;
}

/* =====================================================
   Buttons
===================================================== */

.button,
.btn,
.nav-cta {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
}

.button,
.btn-primary,
.btn-primary-gold {
  background: var(--orange);
  color: var(--navy);
}

.button.secondary,
.btn-outline,
.btn-outline-light,
.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.hero .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-full {
  width: 100%;
}

/* =====================================================
   Hero
===================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.20), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--deep-navy));
  color: #ffffff;
  padding: var(--hero-space) 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.hero-text p {
  color: #d7deef;
  max-width: 760px;
}

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

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-panel p {
  color: #d7deef;
}

#typingHeadline::after {
  content: "|";
  color: var(--orange);
  margin-left: 4px;
  animation: caretBlink 0.85s infinite;
}

@keyframes caretBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

/* =====================================================
   How JotJive Works
===================================================== */

.how-section {
  background: #ffffff;
  border-top: 1px solid rgba(23, 38, 66, 0.08);
  border-bottom: 1px solid rgba(23, 38, 66, 0.08);
}

.process-flow {
  width: 100%;
  max-width: var(--universal-container-width);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 38, 66, 0.08);
}

.process-step {
  padding: 22px;
  border-right: 1px solid var(--border);
  transition: all 0.25s ease;
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.process-step span {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.process-step h3 {
  color: var(--navy);
}

.process-step p {
  color: var(--text);
  margin: 0;
}

.process-step:hover {
  background: linear-gradient(180deg, #fff7e8 0%, #ffffff 100%);
}

.process-step:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--orange);
}

/* =====================================================
   Who We Serve
===================================================== */

.serve-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 166, 35, 0.16), transparent 24%),
    radial-gradient(circle at 90% 5%, rgba(31, 87, 214, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  position: relative;
  overflow: hidden;
}

.serve-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 38, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 38, 66, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}

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

.serve-grid {
  width: 100%;
  max-width: var(--universal-container-width);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px auto 0;
}

.serve-card {
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(216, 222, 239, 0.82);
  border-radius: 22px;
  padding: 20px;
  min-height: auto;
  box-shadow: 0 14px 38px rgba(23, 38, 66, 0.065);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.serve-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(23, 38, 66, 0.12);
  border-color: rgba(245, 166, 35, 0.42);
}

.serve-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.72), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.serve-card:hover::before {
  opacity: 1;
}

.serve-card > * {
  position: relative;
  z-index: 1;
}

.serve-icon {
  width: 78px;
  min-width: 78px;
  height: 78px;
  flex: 0 0 78px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf7e9, #ffffff);
  border: 1px solid rgba(120, 170, 120, 0.18);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.42), 0 10px 24px rgba(23, 38, 66, 0.06);
  color: var(--navy);
}

.serve-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.serve-content h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.08;
  color: var(--navy);
  font-weight: 800;
}

.serve-card p {
  color: #4f5363;
  margin: 0;
}

/* =====================================================
   Sponsorship
===================================================== */

.sponsorship-section {
  background: linear-gradient(135deg, #0f1d39 0%, #172642 42%, #fff7e8 42%, #ffffff 100%);
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
}

.sponsorship-section .section-header h2 {
  color: #ffffff;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.sponsorship-section .section-lead {
  color: #dbe5ff;
}

.sponsorship-ladder {
  width: 100%;
  max-width: var(--universal-container-width);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 24px 70px rgba(10, 20, 40, 0.20);
  margin: 28px auto 26px;
}

.ladder-title {
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}

.ladder-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ladder-item {
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
}

.ladder-item.featured {
  background: #fff7e8;
  border-color: rgba(245, 166, 35, 0.55);
}

.ladder-amount {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}

.ladder-label {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-top: 6px;
}

.sponsorship-split {
  width: 100%;
  max-width: var(--universal-container-width);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 auto 34px;
}

.split-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(23, 38, 66, 0.08);
  height: 100%;
}

.sponsor-side {
  background: linear-gradient(135deg, #ffffff, #f1f5ff);
}

.applicant-side {
  background: linear-gradient(135deg, #ffffff, #fff7e8);
}

.split-badge {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.split-card h3 {
  font-size: 25px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--navy);
}

.split-card p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.split-list {
  color: var(--text);
  padding-left: 20px;
  margin: 0 0 20px;
}

.split-list li {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 4px;
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.split-actions .btn {
  width: auto;
  padding: 10px 16px;
  font-size: 13.5px;
}

/* =====================================================
   Forms
===================================================== */

.form-section,
#sponsor-form,
#application-form {
  width: 100%;
  max-width: var(--universal-container-width);
  margin-left: auto;
  margin-right: auto;
}

.form-section {
  padding: 24px;
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(23, 38, 66, 0.08);
}

.form-section-gold {
  background: #fffaf0;
}

.form-header {
  max-width: 760px;
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 28px;
  color: var(--navy);
}

.form-header p,
.form-note {
  color: var(--text);
}

.jj-form {
  display: grid;
  gap: 15px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--navy);
  background: #ffffff;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.14);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-grid.small,
.checkbox-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.check-label {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--text) !important;
  font-weight: 600 !important;
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  margin: 0 !important;
  font-size: 14px !important;
}

.check-label input {
  width: auto;
  margin-top: 4px;
}

.certification-check {
  background: #fff7e8;
  border-color: rgba(245, 166, 35, 0.45);
}

/* =====================================================
   Pilot
===================================================== */

.pilot-section {
  background: #f5f8ff;
}

.pilot-inner {
  width: 100%;
  max-width: var(--universal-container-width);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 24px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(23, 38, 66, 0.08);
  margin-left: auto;
  margin-right: auto;
}

.pilot-text p {
  color: var(--text);
}

.pilot-benefits {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pilot-benefit {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px;
}

.benefit-icon {
  font-size: 24px;
}

.pilot-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}

.pilot-form h4 {
  font-size: 24px;
  margin: 0 0 18px;
}

/* =====================================================
   Products & Services
===================================================== */

.products-section {
  background: #ffffff;
}

.products-showcase {
  position: relative;
  max-width: var(--product-container-width);
  width: 88%;
  margin: 28px auto 0;
}

.product-display {
  position: relative;
  min-height: auto;
}

.product-feature {
  max-width: var(--product-container-width);
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(23, 38, 66, 0.14);
  display: none;
}

.product-feature.active {
  display: block;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.feature-image-wrap {
  width: 100%;
  height: var(--product-image-height);
  padding: 0;
  background: #ffffff;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-wrap img {
  width: var(--product-image-width);
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 26px 26px 0 0;
}

.feature-content {
  padding: 20px 24px 24px;
}

.feature-content h3 {
  font-size: 25px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-content p {
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.product-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 29, 57, 0.94);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(15, 29, 57, 0.28);
  transition: all 0.25s ease;
}

.product-nav:hover {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}

.product-nav.prev {
  left: -56px;
}

.product-nav.next {
  right: -56px;
}

/* =====================================================
   Team
===================================================== */

.team-section {
  background: linear-gradient(180deg, #0f1d39 0%, #172642 38%, #f5f8ff 38%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 166, 35, 0.24), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(64, 157, 255, 0.20), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

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

.team-section .section-heading h2,
.team-section .section-header h2 {
  color: #ffffff;
}

.team-section .section-intro,
.team-section .section-lead {
  color: #dbe5ff;
}

.team-grid {
  width: 100%;
  max-width: var(--universal-container-width);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.member-card {
  background: #ffffff;
  border: 1px solid rgba(216, 222, 239, 0.9);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(10, 20, 40, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.member-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 90px rgba(10, 20, 40, 0.24);
}

.member-photo-wrap {
  height: 210px;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 5px solid var(--orange);
  margin: 0;
  overflow: hidden;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #ffffff;
}

.member-info {
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.member-info h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--navy);
}

.member-role {
  color: #7a0f58;
  font-weight: 900;
  font-size: 15px;
  margin: 0 0 10px;
}

.member-bio {
  color: var(--text);
  font-size: 14.5px;
  margin: 0 0 18px;
  flex: 1;
}

.member-contact {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 800;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  word-break: break-word;
}

.member-contact a {
  color: var(--blue);
}

.icon {
  font-size: 18px;
  width: 22px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: #25D366;
  border-radius: 50%;
  flex: 0 0 22px;
}

.whatsapp-icon svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

/* =====================================================
   Globe Section
===================================================== */

.globe-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 87, 214, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f8ff);
}

.globe-wrap {
  width: 100%;
  max-width: var(--universal-container-width);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(23, 38, 66, 0.10);
  margin-left: auto;
  margin-right: auto;
}

.globe-copy p {
  color: var(--text);
}

.mini-globe {
  width: 230px;
  height: 230px;
  justify-self: center;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(31, 87, 214, 0.24) 35%, rgba(23, 38, 66, 0.92) 76%);
  box-shadow:
    inset -28px -30px 50px rgba(0, 0, 0, 0.25),
    0 30px 80px rgba(23, 38, 66, 0.25);
  animation: floatGlobe 5s ease-in-out infinite;
  overflow: hidden;
}

.mini-globe::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 0 56px rgba(255, 255, 255, 0.04);
}

.orbit {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(245, 166, 35, 0.55);
  border-radius: 50%;
}

.orbit-one { transform: rotate(24deg); }
.orbit-two { transform: rotate(78deg); }
.orbit-three { transform: rotate(-28deg); }

.globe-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.95);
}

.dot-one { top: 70px; left: 80px; }
.dot-two { right: 72px; top: 118px; }
.dot-three { bottom: 82px; left: 132px; }

@keyframes floatGlobe {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* =====================================================
   Contact
===================================================== */

.contact-section {
  background: linear-gradient(135deg, #fff7e8 0%, #ffffff 48%, #eef5ff 100%);
}

.contact-card {
  width: 100%;
  max-width: var(--universal-container-width);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 26px 80px rgba(23, 38, 66, 0.12);
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  background: rgba(245, 166, 35, 0.16);
  border-radius: 50%;
}

.contact-card::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  background: rgba(31, 87, 214, 0.08);
  border-radius: 50%;
}

.contact-intro,
.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-intro p {
  color: var(--text);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-item {
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 38, 66, 0.12);
  border-color: rgba(31, 87, 214, 0.35);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #ffffff;
  font-size: 22px;
  flex: 0 0 40px;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.whatsapp-contact {
  background: #25D366;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-item em {
  display: block;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
  word-break: break-word;
}

/* =====================================================
   Privacy / Refund pages
===================================================== */

.policy-page {
  padding: 48px 0 70px;
  background: #ffffff;
}

.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 34px;
}

.policy-back:hover {
  color: var(--orange);
}

.policy-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 12px;
}

.policy-date {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 38px;
}

.policy-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  margin: 34px 0 12px;
  color: var(--navy);
}

.policy-body p,
.policy-body li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}

.policy-body ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.policy-body li {
  list-style: disc;
  margin-bottom: 8px;
}

.policy-body strong {
  color: var(--navy);
}

.policy-body a {
  color: var(--blue);
  font-weight: 700;
}

/* =====================================================
   Footer
===================================================== */

.site-footer {
  background: var(--navy);
  color: #ffffff;
  text-align: center;
  padding: 24px 0;
  letter-spacing: 0.06em;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.legal-links {
  margin-top: 10px !important;
}

.legal-links a,
.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   Optional interaction effects
===================================================== */

body,
a,
button,
.product-card,
.member-card,
.contact-item,
.button {
  cursor: url("assets/golden_pen_cursor.png") 8 100, auto;
}

#cursorSparkles {
  position: fixed;
  inset: 0;
  width: 50vw;
  height: 50vh;
  pointer-events: none;
  z-index: 999999;
}

.premium-light-area {
  position: relative;
  overflow: hidden;
}

.premium-light-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 218, 110, 0.18),
    transparent 28%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.premium-light-area:hover::after {
  opacity: 1;
}

.premium-light-area > .container {
  position: relative;
  z-index: 1;
}

.reveal,
.reveal-up {
  opacity: 1;
  transform: none;
}

.magnetic-btn {
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.magnetic-btn:hover {
  box-shadow: 0 14px 34px rgba(245, 166, 35, 0.22);
}

.ripple {
  position: fixed;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(245, 166, 35, 0.75);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999998;
  animation: rippleOut 0.65s ease forwards;
}

@keyframes rippleOut {
  to {
    width: 64px;
    height: 64px;
    opacity: 0;
  }
}

/* =====================================================
   Large screens
===================================================== */

@media (min-width: 1500px) {
  :root {
    --universal-container-width: 1280px;
    --product-container-width: 980px;
  }

  .container,
  .hero .container,
  .section .container {
    width: min(var(--universal-container-width), 84%);
  }
}

@media (min-width: 1800px) {
  :root {
    --universal-container-width: 1360px;
    --product-container-width: 1050px;
  }

  .container,
  .hero .container,
  .section .container {
    width: min(var(--universal-container-width), 82%);
  }
}

/* =====================================================
   Laptop
===================================================== */

@media (max-width: 1440px) {
  :root {
    --universal-container-width: 1080px;
    --section-space: 38px;
    --hero-space: 44px;
    --normal-text-size: 15px;
    --h1-size: clamp(38px, 4.4vw, 56px);
    --h2-size: clamp(28px, 3.2vw, 40px);
    --h3-size: clamp(19px, 1.8vw, 24px);
    --product-container-width: 820px;
    --product-image-height: 330px;
  }

  .member-photo-wrap {
    height: 200px;
  }
}

/* =====================================================
   Tablet
===================================================== */

@media (max-width: 980px) {
  :root {
    --universal-container-width: 92%;
    --universal-container-percent: 92%;
    --section-space: 34px;
    --hero-space: 38px;
    --normal-text-size: 15px;
    --h1-size: clamp(34px, 7vw, 46px);
    --h2-size: clamp(26px, 5vw, 36px);
    --h3-size: clamp(20px, 3vw, 24px);
    --product-container-width: 92%;
    --product-image-height: 320px;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav,
  nav {
    justify-content: center;
  }

  .hero-grid,
  .contact-card,
  .pilot-inner,
  .globe-wrap,
  .sponsorship-split {
    grid-template-columns: 1fr;
  }

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

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

  .serve-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ladder-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

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

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-bottom: none;
  }

  .product-nav.prev {
    left: 12px;
  }

  .product-nav.next {
    right: 12px;
  }

  .product-nav {
    background: rgba(15, 29, 57, 0.85);
  }

  .mini-globe {
    width: 210px;
    height: 210px;
  }
}

/* =====================================================
   Mobile
===================================================== */

@media (max-width: 640px) {
  :root {
    --universal-container-width: 92%;
    --universal-container-percent: 92%;
    --section-space: 32px;
    --hero-space: 34px;
    --normal-text-size: 14.5px;
    --h1-size: 32px;
    --h2-size: 25px;
    --h3-size: 20px;
    --product-container-width: 92%;
    --product-image-height: 240px;
  }

  .brand img {
    width: 220px;
  }

  .main-nav,
  nav {
    gap: 8px;
  }

  .main-nav a,
  nav a {
    font-size: 12.5px;
    padding: 8px 10px;
  }

  .process-flow,
  .serve-grid,
  .team-grid,
  .ladder-row,
  .form-grid-2,
  .checkbox-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .serve-card {
    flex-direction: column;
    text-align: center;
  }

  .serve-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .serve-icon svg {
    width: 36px;
    height: 36px;
  }

  .feature-content {
    padding: 18px;
  }

  .feature-content h3,
  .split-card h3 {
    font-size: 22px;
  }

  .product-nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .member-photo-wrap {
    height: 220px;
  }

  .form-section,
  .contact-card,
  .pilot-inner {
    padding: 20px;
  }

  .button,
  .btn,
  .split-actions .btn {
    width: 100%;
  }

  .hero-actions,
  .split-actions {
    width: 100%;
  }

  .policy-page {
    padding: 34px 0 54px;
  }
}

/* =====================================================
   Very small phones
===================================================== */

@media (max-width: 420px) {
  :root {
    --h1-size: 29px;
    --h2-size: 23px;
    --h3-size: 19px;
    --normal-text-size: 14px;
    --product-image-height: 220px;
  }

  .main-nav a,
  nav a {
    font-size: 12px;
    padding: 8px 9px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-photo-wrap {
    height: 200px;
  }
}

/* =====================================================
   PRODUCT IMAGE NEVER CROPS
   Image height adjusts automatically
===================================================== */

.products-showcase {
  width: clamp(720px, 62vw, 1120px) !important;
  max-width: 92vw !important;
  margin: 32px auto 0 !important;
}

.product-feature {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

/* IMPORTANT: no fixed height here */
.feature-image-wrap {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  background: #ffffff !important;
  border-radius: 28px 28px 0 0 !important;
}

/* IMPORTANT: image decides its own height */
.feature-image-wrap img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 28px 28px 0 0 !important;
}

/* Text below image */
.feature-content {
  padding: clamp(18px, 2.2vw, 28px) !important;
  background: #ffffff !important;
  border-radius: 0 0 28px 28px !important;
}

/* Make hidden slides not affect height */
.product-feature:not(.active) {
  display: none !important;
}

.product-feature.active {
  display: block !important;
  position: relative !important;
}

/* =====================================================
   TEAM IMAGE HEIGHT CONTROL
===================================================== */

.member-photo-wrap {
  height: 280px !important; /* increase/decrease this */
}

.member-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
}

/* =====================================================
   TEAM PHOTO WIDTH + HEIGHT CONTROL
===================================================== */

:root {
  --team-photo-box-height: 300px;   /* controls photo area height */
  --team-photo-width: 90%;         /* controls image width */
  --team-photo-height: 100%;        /* controls image height */
  --team-photo-fit: cover;          /* cover = fills box, contain = shows full photo */
  --team-photo-position: top center;
}

/* The photo container/box */
.member-photo-wrap {
  height: var(--team-photo-box-height) !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* The actual image inside */
.member-photo {
  width: var(--team-photo-width) !important;
  height: var(--team-photo-height) !important;
  object-fit: var(--team-photo-fit) !important;
  object-position: var(--team-photo-position) !important;
  display: block !important;
}

/* =====================================================
   TEAM PHOTO RESIZE WITHOUT CROPPING
===================================================== */

:root {
  --team-photo-box-height: 280px;  /* controls the photo area height */
  --team-photo-width: 100%;         /* controls image width inside box */
  --team-photo-height: 100%;        /* controls image height inside box */
}

/* Photo box */
.member-photo-wrap {
  height: var(--team-photo-box-height) !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: 6px solid var(--orange) !important;
}

/* Actual photo - no crop */
.member-photo {
  width: var(--team-photo-width) !important;
  height: var(--team-photo-height) !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  background: #ffffff !important;
}

/* =====================================================
   PROFESSIONAL WEBSITE FONT SYSTEM
===================================================== */

:root {
--font-heading: "Poppins", Arial, sans-serif;
--font-body: "Inter", Arial, sans-serif;
}

/* Main body font */
body {
  font-family: var(--font-body) !important;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
.policy-title,
.form-header h3,
.feature-content h3,
.member-info h3,
.serve-content h3,
.contact-intro h2,
.pilot-form h4 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
}

/* Paragraphs and normal text */
p,
li,
a,
span,
label,
input,
select,
textarea,
button,
.btn,
.button,
.main-nav a,
.section-lead,
.section-intro,
.policy-body p,
.policy-body li {
  font-family: var(--font-body) !important;
}

/* Navigation should stay clean and modern */
.main-nav a {
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

/* Eyebrow labels */
.eyebrow,
.split-badge,
.step-number,
.ladder-title {
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em;
}

/* Better readable paragraphs */
p,
.section-lead,
.section-intro,
.feature-content p,
.serve-card p,
.process-step p,
.member-bio,
.policy-body p,
.policy-body li {
  font-weight: 400 !important;
}

/* Buttons */
.button,
.btn,
.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
}
/* =====================================================
   MESSAGE BY CEO VIDEO SECTION
===================================================== */

.ceo-video-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
  padding: clamp(44px, 6vw, 72px) 0 !important;
}

.ceo-video-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.ceo-video-text {
  max-width: 460px;
}

.ceo-video-text h2 {
  color: var(--navy);
  margin-bottom: 14px;
}

.ceo-video-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.ceo-video-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 24px 70px rgba(23, 38, 66, 0.12);
  overflow: hidden;
}

.ceo-video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  background: #000;
}

.ceo-sound-btn {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 5;
  background: var(--orange);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(23, 38, 66, 0.22);
}

.ceo-sound-btn:hover {
  transform: translateY(-2px);
}

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

  .ceo-video-text {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ceo-video-card {
    padding: 8px;
    border-radius: 20px;
  }

  .ceo-video-card video {
    border-radius: 14px;
  }

  .ceo-sound-btn {
    right: 18px;
    bottom: 18px;
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* Form submit success/error message */
.form-submit-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
}

.form-submit-message.success {
  background: #effaf3;
  color: #14864a;
  border: 1px solid rgba(20, 134, 74, 0.25);
}

.form-submit-message.error {
  background: #fff0f0;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.25);
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Professional pilot benefit icons */
.pilot-benefit {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.benefit-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(245, 166, 35, 0.12) !important;
  border: 1px solid rgba(245, 166, 35, 0.35) !important;
  color: var(--orange) !important;
}

.benefit-icon svg {
  width: 23px !important;
  height: 23px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Hero actual image background */
.hero {
  background:
    linear-gradient(rgba(7, 20, 43, 0.55), rgba(7, 20, 43, 0.65)),
    url("assets/premium-bg.png") center center / cover no-repeat !important;
}

/* =====================================================
   CEO MESSAGE BACKGROUND IMAGE
===================================================== */

.ceo-video-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.68)),
    url("assets/ceo-message-bg.png") center center / cover no-repeat !important;
}

/* Keep CEO content above the background */
.ceo-video-wrap {
  position: relative !important;
  z-index: 2 !important;
}

/* Make the video card still pop nicely */
.ceo-video-card {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 26px 80px rgba(23, 38, 66, 0.16) !important;
}
/* =====================================================
   HOW JOTJIVE WORKS BACKGROUND IMAGE
===================================================== */

.how-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(6, 17, 38, 0.35), rgba(6, 17, 38, 0.48)),
    url("assets/how-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

/* Keep content above the background */
.how-section .container {
  position: relative !important;
  z-index: 2 !important;
}

/* Make heading readable */
.how-section h2,
.how-section .section-lead,
.how-section .eyebrow {
  color: #ffffff !important;
}

/* Make process box match dark background */
.process-flow {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22) !important;
}

/* Process cards */
.process-step {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.process-step h3,
.process-step p {
  color: #ffffff !important;
}

/* =====================================================
   JOTJIVE DARK PREMIUM BACKGROUND IMAGE SYSTEM
   Save all background images inside /assets/
===================================================== */

/* General section content layering */
.hero .container,
.ceo-video-section .container,
.how-section .container,
.serve-section .container,
.products-section .container,
.pilot-section .container,
.sponsorship-section .container,
.team-section .container,
.contact-section .container,
.site-footer .container {
  position: relative !important;
  z-index: 2 !important;
}

/* =====================================================
   1. HERO SECTION
   File: assets/hero-bg.png
===================================================== */

.hero {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.35), rgba(3, 10, 26, 0.58)),
    url("assets/hero-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .eyebrow {
  color: #ffffff !important;
}

.hero .eyebrow {
  color: var(--orange) !important;
}

.hero-panel {
  background: rgba(9, 22, 48, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35) !important;
}

/* =====================================================
   2. CEO / LEADERSHIP MESSAGE SECTION
   File: assets/ceo-message-bg.png
===================================================== */

.ceo-video-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.58), rgba(3, 10, 26, 0.70)),
    url("assets/ceo-message-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.ceo-video-text h2,
.ceo-video-text h3,
.ceo-video-text p,
.ceo-video-text span,
.ceo-video-text strong,
.ceo-video-section .eyebrow {
  color: #ffffff !important;
}

.ceo-video-section .eyebrow {
  color: var(--orange) !important;
}



.ceo-message-points strong,
.ceo-message-points span {
  color: #ffffff !important;
}

.ceo-video-card {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35) !important;
}

/* =====================================================
   3. HOW JOTJIVE WORKS SECTION
   File: assets/how-bg.png
===================================================== */

.how-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.52), rgba(3, 10, 26, 0.72)),
    url("assets/how-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.how-section h2,
.how-section h3,
.how-section p,
.how-section .section-lead,
.how-section .eyebrow {
  color: #ffffff !important;
}

.how-section .eyebrow,
.process-step span {
  color: var(--orange) !important;
}

.process-flow {
  background: rgba(9, 22, 48, 0.66) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28) !important;
}

.process-step {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.process-step h3,
.process-step p {
  color: #ffffff !important;
}

/* =====================================================
   4. WHO WE SERVE SECTION
   File: assets/serve-bg.png
===================================================== */

.serve-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.56), rgba(3, 10, 26, 0.72)),
    url("assets/serve-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.serve-section h2,
.serve-section h3,
.serve-section p,
.serve-section .section-lead,
.serve-section .eyebrow {
  color: #ffffff !important;
}

.serve-section .eyebrow {
  color: var(--orange) !important;
}

.serve-card {
  background: rgba(9, 22, 48, 0.70) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26) !important;
}

.serve-card h3,
.serve-card p {
  color: #ffffff !important;
}

.serve-icon {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(245, 166, 35, 0.36) !important;
  color: var(--orange) !important;
}

/* =====================================================
   5. PRODUCTS & SERVICES SECTION
   File: assets/products-bg.png
===================================================== */

.products-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.54), rgba(3, 10, 26, 0.72)),
    url("assets/products-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.products-section h2,
.products-section h3,
.products-section p,
.products-section .section-lead,
.products-section .eyebrow {
  color: #ffffff !important;
}

.products-section .eyebrow {
  color: var(--orange) !important;
}

.product-feature {
  background: #ffffff !important;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35) !important;
}

.product-feature h3 {
  color: var(--navy) !important;
}

.product-feature p {
  color: var(--text) !important;
}

.product-nav {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--navy) !important;
}

/* =====================================================
   6. PILOT PARTNER PROGRAM SECTION
   File: assets/pilot-bg.png
===================================================== */

.pilot-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.52), rgba(3, 10, 26, 0.68)),
    url("assets/pilot-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.pilot-section h2,
.pilot-section h3,
.pilot-section p,
.pilot-section li,
.pilot-section .eyebrow {
  color: #ffffff !important;
}

.pilot-section .eyebrow {
  color: var(--orange) !important;
}

.pilot-inner {
  background: rgba(9, 22, 48, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.30) !important;
}

.pilot-benefit {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

/* =====================================================
   7. SPONSORSHIP SECTION
   File: assets/sponsorship-bg.png
===================================================== */

.sponsorship-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.46), rgba(3, 10, 26, 0.68)),
    url("assets/sponsorship-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.sponsorship-section h2,
.sponsorship-section h3,
.sponsorship-section p,
.sponsorship-section li,
.sponsorship-section .section-lead,
.sponsorship-section .eyebrow {
  color: #ffffff !important;
}

.sponsorship-section .eyebrow {
  color: var(--orange) !important;
}

.sponsorship-ladder,
.split-card {
  background: rgba(9, 22, 48, 0.74) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32) !important;
}

.ladder-title,
.ladder-label,
.split-card p,
.split-list li {
  color: #ffffff !important;
}

.ladder-item {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

/* Keep form readable */
.sponsorship-section .form-section {
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--navy) !important;
}

.sponsorship-section .form-section h3,
.sponsorship-section .form-section p,
.sponsorship-section .form-section label {
  color: var(--navy) !important;
}

/* =====================================================
   8. OUR TEAM SECTION
   File: assets/team-bg.png
===================================================== */

.team-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(
      rgba(3, 10, 26, 0.58) 0%,
      rgba(3, 10, 26, 0.72) 38%,
      rgba(245, 248, 255, 0.94) 38%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    url("assets/team-bg.png") center top / cover no-repeat !important;
}

.team-section h2,
.team-section .section-lead,
.team-section .section-intro,
.team-section .eyebrow {
  color: #ffffff !important;
}

.team-section .eyebrow {
  color: var(--orange) !important;
}

/* Team cards stay white for readability */
.member-card {
  background: #ffffff !important;
}

/* =====================================================
   9. CONTACT SECTION
   File: assets/contact-bg.png
===================================================== */

.contact-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.52), rgba(3, 10, 26, 0.68)),
    url("assets/contact-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section .eyebrow {
  color: #ffffff !important;
}

.contact-section .eyebrow {
  color: var(--orange) !important;
}

.contact-card {
  background: rgba(9, 22, 48, 0.74) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32) !important;
}

.contact-card p,
.contact-card strong {
  color: #ffffff !important;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* =====================================================
   10. FOOTER
   File: assets/footer-bg.png
===================================================== */

.site-footer {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.86), rgba(3, 10, 26, 0.96)),
    url("assets/footer-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer h3,
.site-footer h4,
.site-footer li {
  color: #ffffff !important;
}

/* =====================================================
   EASY TEXT COLOR HELPERS
===================================================== */

/* Use this class on any section if you want all text white */
.text-white-section,
.text-white-section h1,
.text-white-section h2,
.text-white-section h3,
.text-white-section p,
.text-white-section li,
.text-white-section span,
.text-white-section strong {
  color: #ffffff !important;
}

/* Use this class on any section if you want normal dark text */
.text-dark-section,
.text-dark-section h1,
.text-dark-section h2,
.text-dark-section h3,
.text-dark-section p,
.text-dark-section li,
.text-dark-section span,
.text-dark-section strong {
  color: var(--navy) !important;
}
/* =====================================================
   TEAM SECTION - FULL BACKGROUND IMAGE
===================================================== */

.team-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.52), rgba(3, 10, 26, 0.68)),
    url("assets/team-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.team-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.team-section h2,
.team-section .section-lead,
.team-section .section-intro,
.team-section .eyebrow {
  color: #ffffff !important;
}

.team-section .eyebrow {
  color: var(--orange) !important;
}

/* Keep team cards white so they still stand out */
.member-card {
  background: #ffffff !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25) !important;
}

.member-info h3,
.member-role,
.member-bio {
  color: var(--navy) !important;
}

/* =====================================================
   GLOBAL VISION SECTION
   File: assets/global-vision-bg.png
===================================================== */

.globe-section,
.vision-section,
.globe-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.50), rgba(3, 10, 26, 0.68)),
    url("assets/global-vision-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.globe-section .container,
.vision-section .container,
.globe-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.globe-section h2,
.globe-section h3,
.globe-section p,
.globe-section .eyebrow,
.vision-section h2,
.vision-section h3,
.vision-section p,
.vision-section .eyebrow,
.globe-section h2,
.globe-section h3,
.globe-section p,
.globe-section .eyebrow {
  color: #ffffff !important;
}

.globe-section .eyebrow,
.vision-section .eyebrow,
.global-section .eyebrow {
  color: var(--orange) !important;
}

/* =====================================================
   GLOBAL VISION SECTION BACKGROUND
   File: assets/global-vision-bg.png
===================================================== */

.globe-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(rgba(3, 10, 26, 0.50), rgba(3, 10, 26, 0.68)),
    url("assets/global-vision-bg.png") center center / cover no-repeat !important;
  color: #ffffff !important;
}

.globe-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.globe-section h2,
.globe-section h3,
.globe-section p,
.globe-section span {
  color: #ffffff !important;
}

.globe-section .eyebrow {
  color: var(--orange) !important;
}

/* Make the inside card/globe area match the dark background */
.globe-wrap {
  background: rgba(9, 22, 48, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.30) !important;
}

/* Optional: make mini globe brighter on dark background */
.mini-globe {
  background:
    radial-gradient(circle at 35% 35%, rgba(245, 166, 35, 0.35), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(31, 87, 214, 0.35), rgba(9, 22, 48, 0.95) 70%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 20px 70px rgba(31, 87, 214, 0.35) !important;
}

/* =====================================================
   HERO POWERED BY BOX INLINE ABOVE BUTTONS
===================================================== */

.hero-grid {
  grid-template-columns: 1fr !important;
}

.hero-text {
  max-width: 760px !important;
}

.hero-panel-inline {
  max-width: 620px !important;
  margin: 24px 0 22px !important;
  padding: 22px 24px !important;
  justify-self: start !important;
}

.hero-panel-inline h3 {
  font-size: 24px !important;
  line-height: 1.18 !important;
  margin-bottom: 10px !important;
}

.hero-panel-inline p {
  font-size: 15.5px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.hero-actions {
  margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 640px) {
  .hero-text {
    max-width: 100% !important;
  }

  .hero-panel-inline {
    max-width: 100% !important;
    margin: 20px 0 !important;
    padding: 20px !important;
  }

  .hero-panel-inline h3 {
    font-size: 21px !important;
  }
}

/* Make outlined sponsor buttons white */
.split-actions .btn.secondary,
.split-actions .button.secondary,
.split-card .btn.secondary,
.split-card .button.secondary {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  background: #ffffff !important;
}

/* Hover effect */
.split-actions .btn.secondary:hover,
.split-actions .button.secondary:hover,
.split-card .btn.secondary:hover,
.split-card .button.secondary:hover {
  color: var(--navy) !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.split-actions .btn,
.split-actions .button {
  opacity: 1 !important;
}

/* =====================================================
   ONLY FIX THESE TWO SPONSORSHIP OUTLINE BUTTONS
===================================================== */

/* Contact Partnerships */
.sponsorship-section a[href="#contact"].btn,
.sponsorship-section a[href="#contact"].button {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
}

/* Request Information */
.sponsorship-section a[href="#application-form"].btn,
.sponsorship-section a[href="#application-form"].button,
.sponsorship-section a[href="#contact-form"].btn,
.sponsorship-section a[href="#contact-form"].button,
.sponsorship-section a[href="#info"].btn,
.sponsorship-section a[href="#info"].button {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  background: transparent !important;
}

/* Hover only for those two */
.sponsorship-section a[href="#contact"].btn:hover,
.sponsorship-section a[href="#contact"].button:hover,
.sponsorship-section a[href="#application-form"].btn:hover,
.sponsorship-section a[href="#application-form"].button:hover,
.sponsorship-section a[href="#contact-form"].btn:hover,
.sponsorship-section a[href="#contact-form"].button:hover,
.sponsorship-section a[href="#info"].btn:hover,
.sponsorship-section a[href="#info"].button:hover {
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

/* =====================================================
   SPONSORSHIP BUTTONS - YELLOW FILL
===================================================== */

.sponsorship-section .split-actions a,
.sponsorship-section .split-actions .btn,
.sponsorship-section .split-actions .button,
.sponsorship-section .split-actions button {
  background: var(--orange) !important;
  background-color: var(--orange) !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  border: 2px solid var(--orange) !important;
  opacity: 1 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

/* Remove outline/secondary style */
.sponsorship-section .split-actions a.secondary,
.sponsorship-section .split-actions .btn.secondary,
.sponsorship-section .split-actions .button.secondary,
.sponsorship-section .split-actions a.outline,
.sponsorship-section .split-actions .btn.outline,
.sponsorship-section .split-actions .button.outline {
  background: var(--orange) !important;
  background-color: var(--orange) !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  border: 2px solid var(--orange) !important;
  box-shadow: none !important;
}

/* Hover */
.sponsorship-section .split-actions a:hover,
.sponsorship-section .split-actions .btn:hover,
.sponsorship-section .split-actions .button:hover,
.sponsorship-section .split-actions button:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}

/* =====================================================
   FOOTER SOLID BLACK BACKGROUND
===================================================== */

.site-footer {
  background: #000000 !important;
  background-image: none !important;
  color: #ffffff !important;
}

.site-footer *,
.site-footer p,
.site-footer a,
.site-footer h3,
.site-footer h4,
.site-footer li,
.site-footer span {
  color: #ffffff !important;
}
/* =====================================================
   MERGED WEBSITE BACKGROUND SYSTEM
   Makes all sections feel connected
===================================================== */

/* One continuous background for the full website */
body {
  background:
    linear-gradient(rgba(3, 10, 26, 0.72), rgba(3, 10, 26, 0.82)),
    url("assets/hero-bg.png") center top / cover fixed no-repeat !important;
  background-color: #030a1a !important;
}

/* Make sections blend into the same background */
.hero,
.ceo-video-section,
.how-section,
.serve-section,
.products-section,
.pilot-section,
.sponsorship-section,
.team-section,
.globe-section,
.contact-section {
  background: transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Add soft section overlays instead of totally different backgrounds */
.hero::before,
.ceo-video-section::before,
.how-section::before,
.serve-section::before,
.products-section::before,
.pilot-section::before,
.sponsorship-section::before,
.team-section::before,
.globe-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Dark sections */
.hero::before,
.how-section::before,
.products-section::before,
.sponsorship-section::before,
.globe-section::before,
.contact-section::before {
  background: rgba(3, 10, 26, 0.36);
}

/* Slightly softer sections */
.ceo-video-section::before,
.serve-section::before,
.pilot-section::before,
.team-section::before {
  background: rgba(3, 10, 26, 0.18);
}

/* Keep content above overlays */
.hero .container,
.ceo-video-section .container,
.how-section .container,
.serve-section .container,
.products-section .container,
.pilot-section .container,
.sponsorship-section .container,
.team-section .container,
.globe-section .container,
.contact-section .container {
  position: relative !important;
  z-index: 2 !important;
}

/* Make text white on the merged dark background */
.hero h1,
.hero h2,
.hero h3,
.hero p,
.ceo-video-section h2,
.ceo-video-section h3,
.ceo-video-section p,
.how-section h2,
.how-section h3,
.how-section p,
.serve-section h2,
.serve-section h3,
.serve-section p,
.products-section h2,
.products-section h3,
.products-section p,
.pilot-section h2,
.pilot-section h3,
.pilot-section p,
.sponsorship-section h2,
.sponsorship-section h3,
.sponsorship-section p,
.globe-section h2,
.globe-section h3,
.globe-section p,
.contact-section h2,
.contact-section h3,
.contact-section p {
  color: #ffffff !important;
}

/* Keep cards readable */
.product-feature,
.member-card,
.form-section {
  background: #ffffff !important;
}

/* Keep text inside white cards dark */
.product-feature h3,
.product-feature p,
.member-card h3,
.member-card p,
.member-card span,
.form-section h3,
.form-section p,
.form-section label {
  color: var(--navy) !important;
}

/* Dark glass cards */
.hero-panel,
.process-flow,
.serve-card,
.pilot-inner,
.sponsorship-ladder,
.split-card,
.globe-wrap,
.contact-card {
  background: rgba(9, 22, 48, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
}

/* =====================================================
   SMALL COMET BACKGROUND ANIMATION - FULL WEBSITE
   Tail stays behind head, smaller size, no gap
===================================================== */

.site-shooting-stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Keep main website content above comets */
.site-header,
main,
footer,
.section,
.container {
  position: relative;
  z-index: 2;
}

/* Main comet container */
.site-shooting-stars span {
  position: absolute;
  width: 105px !important;
  height: 18px !important;
  opacity: 0;
  pointer-events: none;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Tail - smaller and touching the head */
.site-shooting-stars span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 96px !important;
  height: 11px !important;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(245, 166, 35, 0),
    rgba(245, 166, 35, 0.16),
    rgba(255, 214, 118, 0.40),
    rgba(255, 255, 255, 0.82)
  );
  filter: blur(2px);
}

/* Head - overlaps tail slightly so there is no space */
.site-shooting-stars span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0 !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0%, #ffe7a0 32%, #f5a623 58%, rgba(245,166,35,0) 76%);
  box-shadow:
    0 0 9px rgba(255, 231, 160, 0.90),
    0 0 20px rgba(245, 166, 35, 0.62),
    0 0 34px rgba(31, 87, 214, 0.32);
}

/* 
   Important:
   The comet is built with tail on left and head on right.
   Each comet is rotated once, then only translated.
   This keeps the tail behind the head.
*/

/* 1. Top-right to bottom-left */
.site-shooting-stars span:nth-child(1) {
  top: 10%;
  left: 96%;
  transform: rotate(152deg);
  animation: cometA 9s linear infinite 0s;
}

/* 2. Top-left to bottom-right */
.site-shooting-stars span:nth-child(2) {
  top: 18%;
  left: -12%;
  transform: rotate(28deg);
  animation: cometB 11s linear infinite 2s;
}

/* 3. Top center downward */
.site-shooting-stars span:nth-child(3) {
  top: -8%;
  left: 48%;
  transform: rotate(72deg);
  animation: cometC 12s linear infinite 4s;
}

/* 4. Bottom-right to upper-left */
.site-shooting-stars span:nth-child(4) {
  top: 88%;
  left: 92%;
  transform: rotate(208deg);
  animation: cometD 13s linear infinite 6s;
}

/* 5. Bottom-left to upper-right */
.site-shooting-stars span:nth-child(5) {
  top: 90%;
  left: -10%;
  transform: rotate(-28deg);
  animation: cometE 12s linear infinite 8s;
}

/* 6. Right to left, flatter */
.site-shooting-stars span:nth-child(6) {
  top: 44%;
  left: 100%;
  transform: rotate(168deg);
  animation: cometF 10s linear infinite 10s;
}

/* Animations only move the comet.
   Rotation stays fixed, so tail direction stays correct. */

@keyframes cometA {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: -640px 300px;
  }
  46% {
    opacity: 0;
    translate: -820px 390px;
  }
  100% {
    opacity: 0;
    translate: -820px 390px;
  }
}

@keyframes cometB {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: 640px 300px;
  }
  46% {
    opacity: 0;
    translate: 820px 390px;
  }
  100% {
    opacity: 0;
    translate: 820px 390px;
  }
}

@keyframes cometC {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: 260px 640px;
  }
  46% {
    opacity: 0;
    translate: 340px 820px;
  }
  100% {
    opacity: 0;
    translate: 340px 820px;
  }
}

@keyframes cometD {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: -620px -300px;
  }
  46% {
    opacity: 0;
    translate: -800px -390px;
  }
  100% {
    opacity: 0;
    translate: -800px -390px;
  }
}

@keyframes cometE {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: 660px -260px;
  }
  46% {
    opacity: 0;
    translate: 830px -340px;
  }
  100% {
    opacity: 0;
    translate: 830px -340px;
  }
}

@keyframes cometF {
  0% {
    opacity: 0;
    translate: 0 0;
  }
  8% {
    opacity: 1;
  }
  34% {
    opacity: 1;
    translate: -720px 120px;
  }
  46% {
    opacity: 0;
    translate: -900px 150px;
  }
  100% {
    opacity: 0;
    translate: -900px 150px;
  }
}

/* Keep cards above comets */
.hero-panel,
.ceo-video-card,
.process-flow,
.serve-card,
.product-feature,
.pilot-inner,
.sponsorship-ladder,
.split-card,
.member-card,
.globe-wrap,
.contact-card,
.form-section {
  position: relative;
  z-index: 3;
}

/* Mobile: fewer and smaller comets */
@media (max-width: 640px) {
  .site-shooting-stars span {
    width: 80px !important;
    height: 14px !important;
  }

  .site-shooting-stars span::before {
    width: 72px !important;
    height: 8px !important;
  }

  .site-shooting-stars span::after {
    width: 8px !important;
    height: 8px !important;
  }

  .site-shooting-stars span:nth-child(n+4) {
    display: none;
  }
}

/* Typewriter cursor */
#typingHeadline::after {
  content: "|";
  color: var(--orange);
  margin-left: 5px;
  animation: caretBlink 0.8s infinite;
}

@keyframes caretBlink {
  0%, 45% {
    opacity: 1;
  }

  46%, 100% {
    opacity: 0;
  }
}

/* =====================================================
   CONTACT ICON CIRCLES WHITE
===================================================== */

.contact-item .contact-icon,
.contact-card .contact-icon,
.contact-info .contact-icon {
  background: #ffffff !important;
  color: var(--navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
}

/* Make SVG/icon inside navy */
.contact-item .contact-icon svg,
.contact-card .contact-icon svg,
.contact-info .contact-icon svg {
  color: var(--navy) !important;
  stroke: var(--navy) !important;
}

/* If icons are Font Awesome / normal i tags */
.contact-item .contact-icon i,
.contact-card .contact-icon i,
.contact-info .contact-icon i {
  color: var(--navy) !important;
}

/* Keep WhatsApp icon green circle if you want */
.contact-item .contact-icon.whatsapp,
.contact-card .contact-icon.whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
}

/* =====================================================
   CONTACT ICON CIRCLES WHITE
===================================================== */

.contact-item .contact-icon,
.contact-card .contact-icon,
.contact-info .contact-icon {
  background: #ffffff !important;
  color: var(--navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
}

/* Make SVG/icon inside navy */
.contact-item .contact-icon svg,
.contact-card .contact-icon svg,
.contact-info .contact-icon svg {
  color: var(--navy) !important;
  stroke: var(--navy) !important;
}

/* If icons are Font Awesome / normal i tags */
.contact-item .contact-icon i,
.contact-card .contact-icon i,
.contact-info .contact-icon i {
  color: var(--navy) !important;
}

/* Keep WhatsApp icon green circle if you want */
.contact-item .contact-icon.whatsapp,
.contact-card .contact-icon.whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
}

/* =====================================================
   BACKGROUND FOR PRIVACY / REFUND / LEGAL PAGES
===================================================== */

body {
  background:
    linear-gradient(rgba(3, 10, 26, 0.72), rgba(3, 10, 26, 0.84)),
    url("assets/hero-bg.png") center top / cover fixed no-repeat !important;
  background-color: #030a1a !important;
}

/* Legal page wrapper */
.legal-page,
.privacy-page,
.refund-page,
.policy-page,
.page-content,
.legal-content {
  position: relative !important;
  background: transparent !important;
  color: #ffffff !important;
}

/* Legal page text */
.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page p,
.legal-page li,
.privacy-page h1,
.privacy-page h2,
.privacy-page h3,
.privacy-page p,
.privacy-page li,
.refund-page h1,
.refund-page h2,
.refund-page h3,
.refund-page p,
.refund-page li,
.policy-page h1,
.policy-page h2,
.policy-page h3,
.policy-page p,
.policy-page li,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content p,
.page-content li,
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content li {
  color: #ffffff !important;
}

/* If legal text is inside a white card, make it glass/dark */
.legal-card,
.policy-card,
.content-card,
.privacy-card,
.refund-card {
  background: rgba(9, 22, 48, 0.76) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
}

/* =====================================================
   FORCE PRIVACY / REFUND / LEGAL PAGE TEXT WHITE
===================================================== */

body,
.legal-page,
.privacy-page,
.refund-page,
.policy-page,
.page-content,
.legal-content,
.legal-wrapper,
.policy-wrapper {
  color: #ffffff !important;
}

/* All common text elements */
.legal-page *,
.privacy-page *,
.refund-page *,
.policy-page *,
.page-content *,
.legal-content *,
.legal-wrapper *,
.policy-wrapper * {
  color: #ffffff !important;
}

/* Links should be gold/blue so they are visible */
.legal-page a,
.privacy-page a,
.refund-page a,
.policy-page a,
.page-content a,
.legal-content a {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

/* Headings */
.legal-page h1,
.legal-page h2,
.legal-page h3,
.privacy-page h1,
.privacy-page h2,
.privacy-page h3,
.refund-page h1,
.refund-page h2,
.refund-page h3,
.policy-page h1,
.policy-page h2,
.policy-page h3,
.page-content h1,
.page-content h2,
.page-content h3,
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Paragraphs and lists */
.legal-page p,
.legal-page li,
.legal-page span,
.privacy-page p,
.privacy-page li,
.privacy-page span,
.refund-page p,
.refund-page li,
.refund-page span,
.policy-page p,
.policy-page li,
.policy-page span,
.page-content p,
.page-content li,
.page-content span,
.legal-content p,
.legal-content li,
.legal-content span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* If there is a white box/card on those pages, make it dark glass */
.legal-card,
.policy-card,
.content-card,
.privacy-card,
.refund-card,
.legal-content,
.page-content {
  background: rgba(9, 22, 48, 0.76) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28) !important;
}

