*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #001a55;
  --navy2: #001038;
  --gold: #d4a020;
  --gold2: #f0c048;
  --dark: #020c1e;
  --card: #041228;
  --muted: rgba(255, 255, 255, 0.52);
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
}
.ticker-wrap {
  background: var(--gold);
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: tick 55s linear infinite;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}
@keyframes tick {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}
header {
  background: rgba(2, 12, 30, 0.97);
  border-bottom: 2px solid var(--gold);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 400;
  backdrop-filter: blur(10px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy2);
  border-radius: 8px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 28px;
  height: 28px;
}
.logo-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
}
.logo-sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 1px;
}
.hdr-right {
  display: flex;
  gap: 10px;
}
.hdr-badge {
  background: rgba(212, 160, 32, 0.08);
  border: 1px solid rgba(212, 160, 32, 0.22);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: #bbb;
}
.hdr-badge b {
  color: var(--gold);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--navy2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #001a55;
  background-image: url("/img/photo-1558618666-fcd25c85cd64.jpg");
  background-size: cover;
  background-position: center 40%;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(2, 12, 30, 0.93) 0%,
    rgba(0, 16, 56, 0.76) 50%,
    rgba(2, 12, 30, 0.5) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px 90px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 32, 0.14);
  border: 1px solid rgba(212, 160, 32, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 .gold {
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.68;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-gold {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 44px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.22s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 160, 32, 0.42);
}
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  transition: all 0.22s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.stats-bar {
  background: var(--card);
  border-top: 1px solid rgba(212, 160, 32, 0.18);
  border-bottom: 1px solid rgba(212, 160, 32, 0.18);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 22px 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:last-child {
  border-right: none;
}
.stat-val {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 0.4px;
}
.photo-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  height: 320px;
  overflow: hidden;
}
.photo-tile {
  position: relative;
  overflow: hidden;
  background: #041228;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo-tile:hover img {
  transform: scale(1.06);
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  padding: 32px 18px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.sec {
  padding: 84px 48px;
}
.sec-dark {
  background: var(--dark);
}
.sec-card {
  background: var(--card);
}
.sec-hd {
  text-align: center;
  margin-bottom: 52px;
}
.tag-pill {
  display: inline-block;
  background: rgba(212, 160, 32, 0.1);
  border: 1px solid rgba(212, 160, 32, 0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-hd h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}
.sec-hd p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.earn-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.earn-card {
  background: var(--card);
  border: 1px solid rgba(212, 160, 32, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.22s;
}
.earn-card:hover {
  border-color: rgba(212, 160, 32, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}
.earn-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.earn-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.earn-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.earn-range {
  background: rgba(212, 160, 32, 0.08);
  border: 1px solid rgba(212, 160, 32, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
}
.how-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: all 0.2s;
}
.how-card:hover {
  border-color: rgba(212, 160, 32, 0.25);
  background: rgba(212, 160, 32, 0.04);
}
.how-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 32, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.how-icon {
  font-size: 30px;
  margin-bottom: 12px;
}
.how-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.routes-sec {
  background: linear-gradient(160deg, #010a1c 0%, #020e24 100%);
  padding: 84px 48px;
}
.stocks-sec {
  background: var(--card);
  padding: 84px 48px;
}
.stocks-inner {
  max-width: 980px;
  margin: 0 auto;
}
.stock-ticker-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 160, 32, 0.18);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 44px;
}
.stock-ticker-inner {
  display: flex;
  align-items: center;
}
.stock-ticker-label {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 10px 16px;
  letter-spacing: 0.8px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.stock-ticker-scroll {
  overflow: hidden;
  flex: 1;
  padding: 0 10px;
}
.stock-ticker-track {
  display: inline-flex;
  gap: 0;
  animation: stockTick 38s linear infinite;
}
@keyframes stockTick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.stock-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.stock-sym {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.stock-px {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}
.stock-chg {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
}
.stock-up {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.stock-dn {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.stocks-chart-wrap {
  background: rgba(2, 10, 28, 0.7);
  border: 1px solid rgba(212, 160, 32, 0.14);
  border-radius: 16px;
  padding: 24px 24px 16px;
  margin-bottom: 44px;
  overflow: hidden;
}
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.chart-title {
  font-size: 15px;
  font-weight: 800;
}
.chart-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.chart-leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
}
.chart-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.stocks-chart {
  width: 100%;
  height: auto;
  display: block;
}
.divid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.divid-card {
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.22s;
}
.divid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.divid-card-inner {
  position: relative;
  z-index: 1;
}
.divid-co {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}
.divid-name {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.divid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.divid-lbl {
  font-size: 11px;
  color: var(--muted);
}
.divid-val {
  font-size: 13px;
  font-weight: 800;
}
.divid-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 10px 0;
}
.divid-yield {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
}
.divid-yield-num {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.divid-yield-lbl {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.routes-inner {
  max-width: 1000px;
  margin: 0 auto;
}
#routeMap {
  height: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 32, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}
.port-tooltip {
  background: rgba(4, 18, 40, 0.95) !important;
  border: 1px solid rgba(212, 160, 32, 0.4) !important;
  color: #d4a020 !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
}

.port-tooltip::before {
  display: none !important;
}

.leaflet-container {
  background: #010a1c;
}

.leaflet-control-attribution {
  display: none;
}
.map-legend {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.ml-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.selector-sec {
  background: linear-gradient(160deg, #020c1c 0%, #01091a 100%);
  padding: 84px 48px;
}
.selector-inner {
  max-width: 940px;
  margin: 0 auto;
}
.sel-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 52px;
}
.sp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.sp-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.3);
  background: var(--dark);
  transition: all 0.3s;
}
.sp-num.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 32, 0.1);
}
.sp-num.done {
  border-color: #22c55e;
  color: #000;
  background: #22c55e;
}
.sp-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.sp-label.active {
  color: var(--gold);
}
.sp-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  transition: background 0.3s;
}
.sp-line.done {
  background: rgba(34, 197, 94, 0.5);
}
.sel-sub-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  text-align: center;
}
.sel-sub-label.on {
  color: var(--gold);
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.region-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 22px 16px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
}
.region-card:hover {
  border-color: rgba(212, 160, 32, 0.4);
  background: rgba(212, 160, 32, 0.07);
  transform: translateY(-2px);
}
.region-card.sel {
  border-color: var(--gold);
  background: rgba(212, 160, 32, 0.1);
  box-shadow: 0 0 0 1px var(--gold);
}
.region-card.europe-card {
  border-color: rgba(212, 160, 32, 0.35);
  background: rgba(212, 160, 32, 0.055);
}
.region-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.region-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.region-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}
.region-income {
  font-size: 17px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 3px;
}
.region-period {
  font-size: 11px;
  color: var(--muted);
}
.company-section {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.4s;
}
.company-section.enabled {
  opacity: 1;
  pointer-events: auto;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.co-card {
  border-radius: 14px;
  padding: 20px 14px 16px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.co-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.co-card.sel {
  box-shadow:
    0 0 0 2px #fff,
    0 10px 32px rgba(0, 0, 0, 0.45);
}
.co-card .co-tick {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}
.co-card.sel .co-tick {
  opacity: 1;
}
.co-logo {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  display: inline-block;
  min-width: 70px;
}
.co-name {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.co-flag {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.co-rank {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
}
.sel-cta-wrap {
  text-align: center;
}
.sel-cta-hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 20px;
}
.btn-sel-go {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 56px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.22s;
  opacity: 0.3;
  pointer-events: none;
}
.btn-sel-go.on {
  opacity: 1;
  pointer-events: auto;
}
.btn-sel-go.on:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 160, 32, 0.45);
}
.income-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.income-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.2s;
}
.income-card.popular {
  border-color: rgba(212, 160, 32, 0.38);
  box-shadow: 0 8px 28px rgba(212, 160, 32, 0.12);
}
.income-card:hover {
  transform: translateY(-2px);
}
.income-invest {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.income-badge {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.income-badgesub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 10px;
}
.income-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.income-period {
  font-size: 11px;
  color: var(--muted);
}
.income-pop-label {
  font-size: 10px;
  color: #22c55e;
  font-weight: 800;
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.ship-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #001038;
}
.ship-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("/img/photo-1493946740644-2d8a1f1a6aff.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.ship-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 12, 30, 0.9) 0%,
    transparent 50%,
    rgba(2, 12, 30, 0.9) 100%
  );
}
.ship-banner-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
}
.ship-banner h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
}
.ship-banner h2 .gold {
  color: var(--gold);
}
.ship-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 26px;
  line-height: 1.65;
}
.testi-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.2s;
}
.testi-card:hover {
  border-color: rgba(212, 160, 32, 0.22);
  transform: translateY(-2px);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.68;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
}
.testi-loc {
  font-size: 12px;
  color: var(--muted);
}
.testi-earn {
  font-size: 12px;
  color: #22c55e;
  font-weight: 700;
  margin-top: 2px;
}
.testi-co {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 1px;
}
.cta-sec {
  background: linear-gradient(140deg, #001038 0%, #001a55 50%, #000c30 100%);
  padding: 84px 48px;
  text-align: center;
}
.cta-sec h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-sec h2 .gold {
  color: var(--gold);
}
.cta-sec p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
footer {
  background: #010810;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 48px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #081628;
  border: 1px solid rgba(212, 160, 32, 0.22);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
  animation: mIn 0.24s ease;
}
@keyframes mIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.m-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.m-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.mstep {
  display: none;
}
.mstep.active {
  display: block;
}
.m-load {
  text-align: center;
  padding: 16px 0;
}
.m-ship-anim {
  font-size: 62px;
  margin-bottom: 16px;
  display: block;
  animation: shipRock 2s ease-in-out infinite;
}
@keyframes shipRock {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
.m-load-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.m-load-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.m-bar {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.m-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 8px;
  width: 0%;
  transition: width 0.45s ease;
}
.m-ptext {
  font-size: 11px;
  color: var(--muted);
}
.m-selected-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.m-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid;
}
.m-badge-region {
  background: rgba(212, 160, 32, 0.1);
  border-color: rgba(212, 160, 32, 0.3);
  color: var(--gold);
}
.m-badge-co {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.m-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.m-head h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}
.m-head h3 .gold {
  color: var(--gold);
}
.m-head p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.55;
}
.m-disc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}
.m-ok {
  text-align: center;
  padding: 16px 0;
}
.m-ok-icon {
  font-size: 62px;
  margin-bottom: 16px;
}
.m-ok h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
}
.m-ok p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.m-ok-note {
  margin-top: 22px;
  background: rgba(212, 160, 32, 0.08);
  border: 1px solid rgba(212, 160, 32, 0.2);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.55;
}
@media (max-width: 820px) {
  header {
    padding: 0 20px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-inner {
    padding: 80px 20px 70px;
  }
  .earn-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .region-grid {
    grid-template-columns: 1fr 1fr;
  }
  .company-grid {
    grid-template-columns: 1fr 1fr;
  }
  .income-grid {
    grid-template-columns: 1fr 1fr;
  }
  .divid-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 18px 24px;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    height: 240px;
  }
  .photo-tile:last-child {
    display: none;
  }
  #routeMap {
    height: 320px;
  }
  .sec,
  .routes-sec,
  .selector-sec,
  .cta-sec {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 500px) {
  .earn-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hdr-right {
    display: none;
  }
  .region-grid {
    grid-template-columns: 1fr;
  }
  .company-grid {
    grid-template-columns: 1fr 1fr;
  }
  .divid-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .income-grid {
    grid-template-columns: 1fr;
  }
}
.reg-form-wrapp {
  width: 100%;
  padding: 15px 0;
}
