:root {
  --bg: #07162f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f2e7;
  --muted: #c8bb9b;
  --line: rgba(236, 199, 110, 0.16);
  --yellow: #d8ab4d;
  --yellow-soft: #f4ddb1;
  --dark: #09101f;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(1, 7, 18, 0.44);
}

body[data-theme="light"] {
  --bg: #f5efe2;
  --surface: rgba(12, 24, 51, 0.04);
  --surface-strong: rgba(12, 24, 51, 0.08);
  --text: #182036;
  --muted: #6f624d;
  --line: rgba(21, 33, 62, 0.12);
  --yellow: #c79b44;
  --yellow-soft: #7c5b1e;
  --dark: #111111;
  --shadow: 0 22px 64px rgba(36, 29, 4, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 171, 77, 0.18), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(46, 88, 153, 0.18), transparent 26%),
    linear-gradient(180deg, #0b1d3b 0%, #07162f 45%, #09152a 100%);
  transition: background 240ms ease, color 240ms ease;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(199, 155, 68, 0.16), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(37, 69, 123, 0.12), transparent 25%),
    linear-gradient(180deg, #fffaf2 0%, #f5efe2 45%, #efe5d5 100%);
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  background: rgba(5, 14, 34, 0.78);
  border-bottom: 1px solid rgba(216,171,77,0.14);
  box-shadow: 0 1px 40px rgba(0,0,0,0.28);
  transition: background 0.4s ease, border-color 0.4s ease;
}
body[data-theme="light"] .site-header {
  background: rgba(245, 239, 226, 0.82);
  border-bottom: 1px solid rgba(199,155,68,0.2);
  box-shadow: 0 1px 30px rgba(60,40,10,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 171, 77, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.brand-copy small,
.nav-links a,
.hero-subtext,
.section-copy p,
.benefit-card p,
.step-card p,
.bonus-note,
.contact-card p,
.form-note,
.hero-stats span,
.trust-grid span,
.footer-row p:last-child {
  color: var(--muted);
}

.nav-links,
.nav-actions,
.lang-switch,
.hero-actions,
.partners-row,
.hero-card-top,
.footer-row {
  display: flex;
  align-items: center;
}

.nav-links,
.nav-actions {
  gap: 16px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.theme-toggle-track {
  width: 48px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.theme-toggle-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 220ms ease;
}

body[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(20px);
}

.theme-toggle-label {
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  font-size: 0.95rem;
}

.lang-switch {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--yellow);
  color: #111;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover,
.lang-btn:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 16px 40px rgba(255, 212, 0, 0.28);
}

.btn-secondary,
.btn-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 72px 0 28px;
}

.hero-grid,
.split {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -32px auto auto -26px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 171, 77, 0.2), transparent 68%);
  z-index: -1;
}

.eyebrow,
.section-label,
.pill,
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
}

.eyebrow,
.section-label {
  margin-bottom: 18px;
  color: var(--yellow-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-badge,
.pill,
.section-chip {
  border: 1px solid rgba(255, 212, 0, 0.22);
  background: rgba(255, 212, 0, 0.08);
  color: var(--yellow);
  padding: 8px 12px;
  border-radius: 999px;
}

.pill-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--line);
}

h1,
h2,
h3,
.hero-message,
.earnings-preview strong,
.earnings-cards strong {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.hero-message {
  margin-top: 18px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--yellow-soft);
}

.hero-subtext {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.7;
}

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

.hero-stats,
.check-list,
.contact-list,
.trust-grid,
.earnings-cards {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-stats li,
.benefit-card,
.step-card,
.bonus-card,
.about-points article,
.contact-card,
.apply-form,
.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 20px;
}

.hero-stats strong,
.trust-grid strong,
.contact-list strong,
.benefit-card h3,
.step-card h3,
.about-points h3,
.contact-card h3,
.bonus-card h3 {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-card,
.apply-form,
.bonus-card,
.contact-card {
  padding: 24px;
}

.hero-logo-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 171, 77, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(12, 27, 55, 0.96), rgba(8, 18, 37, 0.98));
  border: 1px solid rgba(216, 171, 77, 0.16);
  min-height: 280px;
  display: grid;
  place-items: center;
}

.hero-media-card {
  gap: 18px;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(216, 171, 77, 0.18);
  background: linear-gradient(180deg, rgba(11, 24, 48, 0.92), rgba(7, 16, 31, 0.96));
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 21, 0.04), rgba(4, 10, 21, 0.68));
}

.hero-media-large {
  grid-row: span 2;
  min-height: 456px;
}

.hero-media-logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    radial-gradient(circle at 50% 24%, rgba(216, 171, 77, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(17, 35, 69, 0.98), rgba(9, 19, 38, 0.98));
}

.hero-media-logo::after {
  background: none;
}

.hero-logo-image {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.42));
}

.page-hero {
  padding: 72px 0;
}

.page-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  margin: 0;
}

.page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  min-height: 100%;
}

.page-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 171, 77, 0.1);
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-card h3 {
  margin-bottom: 10px;
}

.page-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--yellow);
  font-weight: 800;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.photo-placeholder {
  height: 100%;
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(7, 22, 47, 0.06), rgba(7, 22, 47, 0.8)),
    radial-gradient(circle at top left, rgba(216, 171, 77, 0.16), transparent 34%),
    linear-gradient(180deg, #0c1422 0%, #0f1f37 100%);
}

.photo-placeholder strong {
  font-size: 1.25rem;
}

.photo-placeholder span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-media-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-media-overlay strong {
  font-size: 1.05rem;
}

.hero-media-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 171, 77, 0.16);
  border: 1px solid rgba(216, 171, 77, 0.24);
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.integration-note {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  border-radius: 18px;
  background: rgba(255, 212, 0, 0.08);
}

.hero-card-top {
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.earnings-preview {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.18), rgba(255, 255, 255, 0.03));
}

.earnings-preview p,
.earnings-preview span {
  margin: 0;
}

.earnings-preview strong {
  display: block;
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-grid article,
.earnings-cards article {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.partners {
  padding: 0 0 18px;
}

.partners-row {
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 72px 0;
}

.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-intro {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.05em;
}

.benefits-grid,
.steps-grid,
.about-points,
.fleet-grid {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.step-card,
.about-points article,
.fleet-card {
  padding: 24px;
}

.fleet-card {
  padding: 0;
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.fleet-card-copy {
  padding: 22px;
}

.fleet-card-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 171, 77, 0.1);
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fleet-card-copy h3 {
  margin-bottom: 10px;
}

.fleet-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.step-card span:first-child {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.12);
}

.apply-form {
  display: grid;
  gap: 14px;
}

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.apply-form input:focus {
  outline: 2px solid rgba(255, 212, 0, 0.4);
  border-color: rgba(255, 212, 0, 0.4);
}

.form-note,
.form-hint,
.form-feedback {
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-hint {
  margin: -4px 0 0;
  color: var(--muted);
}

.form-feedback {
  min-height: 22px;
  color: var(--yellow-soft);
}

.earnings-panel p,
.contact-list span {
  line-height: 1.7;
}

.earnings-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.earnings-cards strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

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

.about-photo-card {
  padding: 0;
  overflow: hidden;
  min-height: 260px;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-row {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.photo-credit {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #041b08;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
}

body[data-theme="light"] .site-header {
  background: rgba(255, 252, 244, 0.78);
}

body[data-theme="light"] .hero-stats li,
body[data-theme="light"] .benefit-card,
body[data-theme="light"] .step-card,
body[data-theme="light"] .bonus-card,
body[data-theme="light"] .about-points article,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .apply-form,
body[data-theme="light"] .hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 237, 0.9));
}

body[data-theme="light"] .hero-media,
body[data-theme="light"] .hero-media-logo {
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 171, 77, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(244, 237, 223, 0.98), rgba(233, 224, 206, 0.98));
}

body[data-theme="light"] .hero-media::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(24, 32, 54, 0.18));
}

body[data-theme="light"] .hero-logo-panel,
body[data-theme="light"] .page-card,
body[data-theme="light"] .photo-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 237, 0.9));
}

body[data-theme="light"] .photo-placeholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(24, 32, 54, 0.18)),
    radial-gradient(circle at top left, rgba(216, 171, 77, 0.16), transparent 34%),
    linear-gradient(180deg, #f7f2e7 0%, #ebe0cc 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

/* ── Breadcrumb ── */
/* ── PHOTO GALLERY ─────────────────────────────── */
.photos-section { padding-block: 5rem; }

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.photo-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.photo-card {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.photo-card--large {
  grid-column: 1 / -1;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-card--large img {
  height: 420px;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.1rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .photo-grid,
  .photo-grid--3 {
    grid-template-columns: 1fr;
  }
  .photo-card--large { grid-column: 1; }
  .photo-card img { height: 220px; }
  .photo-card--large img { height: 260px; }
}

/* ══════════════════════════════════════════════
   GLOBAL ANIMATED BACKGROUND (all pages)
══════════════════════════════════════════════ */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(216,171,77,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(46,88,153,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(216,171,77,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #050e22 0%, #07162f 40%, #0a1d40 70%, #06111f 100%);
  animation: bgShift 12s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(8deg) brightness(1.06); }
  100% { filter: hue-rotate(-4deg) brightness(0.96); }
}

#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* Floating orbs — shared across pages */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat linear infinite;
  pointer-events: none;
  z-index: -1;
}
.orb-1 { width: 520px; height: 520px; background: #d8ab4d; top: -100px; left: -120px; animation-duration: 18s; }
.orb-2 { width: 380px; height: 380px; background: #2e5899; bottom: -80px; right: -80px; animation-duration: 22s; animation-direction: reverse; }
.orb-3 { width: 260px; height: 260px; background: #d8ab4d; top: 40%; left: 60%; animation-duration: 15s; animation-delay: -7s; }

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(30px, -40px) scale(1.05); }
  50%  { transform: translate(-20px, 20px) scale(0.95); }
  75%  { transform: translate(40px, 30px) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Light mode animated background */
body[data-theme="light"] .site-bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(216,171,77,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(46,88,153,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #fffaf2 0%, #f5efe2 45%, #ece0cc 100%);
  animation: bgShiftLight 12s ease-in-out infinite alternate;
}
@keyframes bgShiftLight {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.03); }
  100% { filter: brightness(0.97); }
}
body[data-theme="light"] .orb { opacity: 0.07; }
body[data-theme="light"] #particles { opacity: 0.35; }

/* ── PREMIUM CARD REDESIGN ───────────────────── */
.benefit-card, .step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(216,171,77,0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.benefit-card::before, .step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216,171,77,0.06) 0%, transparent 60%);
  pointer-events: none;
}
body[data-theme="light"] .benefit-card,
body[data-theme="light"] .step-card {
  background: rgba(255,255,255,0.65);
  border-color: rgba(199,155,68,0.22);
  box-shadow: 0 4px 24px rgba(100,80,20,0.08);
}

/* ── PREMIUM PHOTO CARDS ────────────────────── */
.photo-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(216,171,77,0.12);
}
body[data-theme="light"] .photo-card {
  box-shadow: 0 12px 40px rgba(80,60,10,0.18), 0 0 0 1px rgba(199,155,68,0.15);
}

/* ── PREMIUM HERO PHOTO SHOWCASE ────────────── */
.hero-photo-showcase {
  box-shadow: 0 50px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(216,171,77,0.2),
              inset 0 1px 0 rgba(255,255,255,0.1);
}
body[data-theme="light"] .hero-photo-showcase {
  box-shadow: 0 30px 80px rgba(80,60,10,0.25), 0 0 0 1px rgba(199,155,68,0.25);
}

/* ── PREMIUM SECTION HEAD ───────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 2px;
}

/* ── LUXURY STATS ───────────────────────────── */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.25rem;
  background: rgba(216,171,77,0.07);
  border: 1px solid rgba(216,171,77,0.18);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}
.hero-stats strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
body[data-theme="light"] .hero-stats li {
  background: rgba(199,155,68,0.08);
  border-color: rgba(199,155,68,0.25);
}

/* Gold shimmer headline */
.shimmer-title {
  background: linear-gradient(90deg, #d8ab4d 0%, #f4ddb1 40%, #d8ab4d 60%, #c79b44 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3.5s linear infinite;
}

@keyframes goldShimmer {
  to { background-position: 200% center; }
}

/* Ticker belt */
.ticker-belt {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: rgba(216,171,77,0.04);
}
.ticker-belt-inner {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker-belt-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-belt-item .dot { width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }
.ticker-belt-item .hl { color: var(--yellow); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero photo showcase */
.hero-photo-showcase {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(216,171,77,0.18);
}
.hero-photo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-photo-showcase:hover img { transform: scale(1.04); }
.hero-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(7,22,47,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(216,171,77,0.3);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

/* Card hover lift + glow */
.benefit-card, .step-card {
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.benefit-card:hover, .step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216,171,77,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(216,171,77,0.12);
}

/* ── BREADCRUMB ────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span + span { margin-left: 6px; }
.breadcrumb a + span { margin: 0 6px; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform 220ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item a { color: var(--yellow); }

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(216,171,77,0.04);
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--muted); margin-bottom: 0; }
.cta-banner .hero-actions { justify-content: center; }

/* ── Footer extras ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.footer-brand span { color: var(--muted); font-size: 0.88rem; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-contacts { display: flex; flex-direction: column; gap: 4px; font-size: 0.88rem; }
.footer-contacts a { color: var(--muted); }
.footer-contacts a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.84rem; color: var(--muted); width: 100%; text-align: center; margin: 0; padding-top: 16px; border-top: 1px solid var(--line); }

@media (max-width: 1040px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .benefits-grid,
  .steps-grid,
  .fleet-grid,
  .photo-wall {
    grid-template-columns: 1fr;
  }

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

  .hero-media-large {
    grid-column: span 2;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-stats,
  .trust-grid,
  .earnings-cards,
  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-large {
    grid-column: auto;
    min-height: 260px;
  }

  .section {
    padding: 56px 0;
  }

  .btn,
  .floating-whatsapp {
    min-height: 52px;
  }
}
