/* ═══════════════════════════════════════════════════════════════════════
   SOROSOKEGPL.COM — MAIN WEBSITE
   Brand: Navy #002B5C · Gold #D4AC0D · Green #1E8449
   Typography: Syne (headings) + DM Sans (body)
   Aesthetic: Confident, civic, premium — not corporate-bland
═══════════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #002B5C;
  --navy-deep: #001838;
  --navy-light: #0F3460;
  --navy-soft: #1A3550;
  --gold: #D4AC0D;
  --gold-light: #F0C929;
  --gold-dark: #A88A00;
  --green: #1E8449;
  --green-light: #27AE60;
  --red: #C0392B;
  --purple: #6D28D9;
  --teal: #0891B2;
  --white: #FFFFFF;
  --offwhite: #FAF8F3;
  --paper: #FFFFFF;
  --charcoal: #1A1A1A;
  --grey-700: #374151;
  --grey-500: #6B7280;
  --grey-300: #D1D5DB;
  --grey-100: #F3F4F6;
  --ink: #2C3E50;
  --off: #F4F6FA;
  --gray: #64748B;
  --lgray: #94A3B8;
  --border: rgba(255, 255, 255, 0.1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 32px rgba(212, 172, 13, 0.25);
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06);
  --shadow-md: 0 4px 16px rgba(10, 37, 64, .08);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, .12);
  --max: 1180px;
  --reading: 720px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: #1E293B;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITY ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reading {
  max-width: var(--reading);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--off);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 172, 13, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(212, 172, 13, 0);
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blob {

  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── NAV ──────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .3s ease;
}

nav.scrolled {
  background: rgba(0, 27, 56, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 172, 13, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

body.inner .nav-links a.active {
  color: var(--gold);
  position: relative;
}

body.inner .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all .2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-sjob-link {
  border: 1.5px solid rgba(212, 172, 13, 0.4);
  color: var(--gold) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all .2s !important;
}

.nav-sjob-link:hover {
  background: rgba(212, 172, 13, 0.1);
  border-color: var(--gold) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.mobile-menu a.gold {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 45%, #0F3460 100%);
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 172, 13, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30, 132, 73, 0.06) 0%, transparent 60%);
}

/* Decorative grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.breadcrumb {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .7);
}

.breadcrumb a:hover {
  color: var(--gold-warm);
}

.breadcrumb .sep {
  margin: 0 8px;
  opacity: .5;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: blob 8s ease-in-out infinite;
  opacity: 0.12;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--teal);
  top: 40%;
  right: 15%;
  animation-delay: 6s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content.full-width {
  grid-template-columns: 1fr;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 172, 13, 0.12);
  border: 1px solid rgba(212, 172, 13, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 24px;
  animation: fadeUp .8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}

.hero-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero h1 .line-break {
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp .8s .2s ease both;
}

.hero-content.full-width .hero-desc {
  width: 100%;
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-sjob {
  background: linear-gradient(135deg, #6D28D9, #4C1D95);
  color: var(--white);
}

.btn-sjob:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.4);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  animation: fadeUp .8s .4s ease both;
}

.hero-stat .n {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  animation: fadeUp .8s .2s ease both;
}

.phone-mockup {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.phone-frame {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: float 4s ease-in-out infinite;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/19;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* Floating UI chips */
.phone-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.chip-left {
  left: -50px;
  top: 25%;
}

.chip-right {
  right: -50px;
  top: 55%;
}

.chip-bottom {
  left: 10%;
  bottom: -20px;
  animation-delay: 1.5s;
}

.chip-icon {
  font-size: 20px;
}

.chip-text .big {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.chip-text .small {
  font-size: 10px;
  color: var(--gray);
}

/* Glow ring */
.phone-glow {
  position: absolute;
  inset: -30px;
  border-radius: 70px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(212, 172, 13, 0.15) 25%, transparent 50%, rgba(30, 132, 73, 0.1) 75%, transparent 100%);
  animation: spin-slow 10s linear infinite;
  z-index: -1;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-deep);
  padding: 20px 0;
  border-top: 1px solid rgba(212, 172, 13, 0.15);
  border-bottom: 1px solid rgba(212, 172, 13, 0.15);
}

.trust-scroll {
  display: flex;
  gap: 60px;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 60px;
  animation: scroll-x 30s linear infinite;
  white-space: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-item span {
  font-size: 18px;
}

/* ── STATS SECTION ────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.stat-card {
  background: rgba(0, 27, 56, 0.7);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: .3s;
}

.stat-card:hover {
  background: rgba(212, 172, 13, 0.06);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

.stat-card:hover::after {
  width: 60px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* ── FEATURES SECTION ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-grid.reverse {
  direction: rtl;
}

.features-grid.reverse>* {
  direction: ltr;
}

.feature-screens {
  position: relative;
}

.screen-stack {
  position: relative;
  max-width: 480px;
}

.screen-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.screen-main img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.screen-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border: 3px solid var(--white);
}

.screen-secondary img {
  width: 100%;
  display: block;
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label-gold {
  background: rgba(212, 172, 13, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 172, 13, 0.25);
}

.label-green {
  background: rgba(30, 132, 73, 0.1);
  color: var(--green);
  border: 1px solid rgba(30, 132, 73, 0.2);
}

.label-blue {
  background: rgba(8, 145, 178, 0.1);
  color: var(--teal);
  border: 1px solid rgba(8, 145, 178, 0.2);
}

.label-purple {
  background: rgba(109, 40, 217, 0.1);
  color: var(--purple);
  border: 1px solid rgba(109, 40, 217, 0.2);
}

.label-navy {
  background: rgba(0, 43, 92, 0.08);
  color: var(--navy);
  border: 1px solid rgba(0, 43, 92, 0.15);
}

.feature-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.feature-item p {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.feature-item strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── S-COIN SECTION ───────────────────────────────────────────────────── */
.scoin-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0F3460 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.scoin-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 172, 13, 0.1) 0%, transparent 70%);
}

.scoin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.scoin-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: .3s;
}

.scoin-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.scoin-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.scoin-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.scoin-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.scoin-card .earn {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin-top: 10px;
}

.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.scoin-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.scoin-title .gold {
  color: var(--gold);
}

.scoin-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cashout-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 132, 73, 0.15);
  border: 1px solid rgba(30, 132, 73, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
}

.cashout-badge p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cashout-badge strong {
  color: var(--green-light);
}

/* ── USER TYPES ───────────────────────────────────────────────────────── */
.user-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.user-card {
  background: var(--white);
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.user-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: .3s;
  background: linear-gradient(180deg, transparent, rgba(0, 43, 92, 0.04));
}

.user-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 43, 92, 0.1);
}

.user-card:hover::before {
  height: 100%;
}

.user-card-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.user-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.user-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.user-card .badge-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SCREENSHOT CAROUSEL ──────────────────────────────────────────────── */
.carousel-section {
  background: var(--navy-deep);
  padding: 80px 0;
  overflow: hidden;
}

.carousel-title {
  text-align: center;
  margin-bottom: 48px;
}

.carousel-title h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.carousel-title p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.carousel-track-wrap {
  overflow: hidden;
  position: relative;
}

.carousel-track-wrap::before,
.carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}

.carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-deep), transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll-x 40s linear infinite;
}

.carousel-item {
  flex-shrink: 0;
  width: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-item img {
  width: 100%;
  display: block;
}

.carousel-item-label {
  background: rgba(0, 27, 56, 0.8);
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-item-label p {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* ── SJOB SECTION ─────────────────────────────────────────────────────── */
.sjob-section {
  background: linear-gradient(135deg, #1a0a3a 0%, #2D1B69 50%, #4C1D95 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sjob-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 172, 13, 0.06) 0%, transparent 60%);
}

.sjob-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.sjob-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 172, 13, 0.15);
  border: 1px solid rgba(212, 172, 13, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.sjob-badge span {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sjob-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.sjob-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.sjob-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.sjob-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.sjob-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
}

.kpi-card .kpi-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.kpi-card .kpi-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--off);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #E2E8F0;
  position: relative;
  transition: .3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 43, 92, 0.08);
  border-color: rgba(212, 172, 13, 0.3);
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.quote {
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.author-role {
  font-size: 12px;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 12px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.how-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 43, 92, 0.07);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-h {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 0;
}

.step-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 43, 92, 0.2);
  font-size: 32px;
}

.step-box h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-box p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── CTA SECTION ──────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 172, 13, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.cta-section h2 em {
  color: var(--gold);
  font-style: normal;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.app-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 22px;
  color: var(--white);
  text-decoration: none;
  transition: .25s;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.app-badge .store-icon {
  font-size: 26px;
}

.app-badge .store-text .small {
  font-size: 10px;
  opacity: .7;
  display: block;
}

.app-badge .store-text .big {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-head);
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
}

.social-link:hover {
  background: rgba(212, 172, 13, 0.15);
  border-color: rgba(212, 172, 13, 0.3);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: .2s;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: .2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 172, 13, 0.1);
  border: 1px solid rgba(212, 172, 13, 0.2);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(212, 172, 13, 0.8);
}

/* ── MAIN CONTENT ────────────────────────────────────────────────── */
main.page {
  padding: 64px 0 96px;
  background: var(--paper);
}

main.page>.container {
  position: relative;
}

.lastupdated {
  color: var(--grey-500);
  font-size: .92rem;
  margin-bottom: 36px;
  font-style: italic;
}


main.page h1,
main.page h2,
main.page h3,
main.page h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

main.page h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: .4em;
}

main.page h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: .5em;
  margin-top: 1.4em;
}

main.page h3 {
  font-size: 1.35rem;
  margin-bottom: .5em;
  margin-top: 1.2em;
}

main.page h4 {
  font-size: 1.1rem;
  margin-bottom: .4em;
  margin-top: 1em;
}

main.page p {
  margin-bottom: 1.1em;
}

main.page ul,
ol {
  margin: 0 0 1.2em 1.4em;
}

main.page li {
  margin-bottom: .5em;
}

main.page strong {
  color: var(--navy);
  font-weight: 700;
}

main.page hr {
  border: none;
  height: 1px;
  background: var(--grey-300);
  margin: 2.5em 0;
}


.toc {
  background: var(--grey-100);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.toc h4 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.toc ol {
  margin: 8px 0 0 0;
  padding-left: 20px;
  font-size: .95rem;
}

.toc li {
  margin-bottom: 4px;
}

.toc a {
  color: var(--grey-700);
}

.callout {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  border: 1px solid rgba(212, 172, 13, .3);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 6px;
  margin: 1.6em 0;
}

.callout-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.callout p:last-child {
  margin-bottom: 0;
}

.factbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 1.5em 0;
}

.factcard {
  background: var(--grey-100);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.factcard .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.factcard .label {
  font-size: .85rem;
  color: var(--grey-500);
  margin-top: 6px;
  display: block;
  letter-spacing: .02em;
}

/* ── CARDS GRID (for Team / Press / Investors) ──────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2em 0;
}

.card {
  background: var(--paper);
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card p {
  color: var(--grey-700);
  font-size: .95rem;
  margin-bottom: 0;
}

/* ── TEAM SLOTS ─────────────────────────────────────────────────── */
.team-slot {
  background: var(--paper);
  border: 1px solid var(--grey-300);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  transition: all .2s ease;
}

.team-slot:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.team-slot.placeholder .team-avatar {
  background: var(--grey-100);
  color: var(--grey-500);
  border: 2px dashed var(--grey-300);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: .92rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-bio {
  font-size: .93rem;
  color: var(--grey-700);
  line-height: 1.55;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
main.page .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .15s ease;
  cursor: pointer;
  border: none;
}

main.page .btn-primary {
  background: var(--navy);
  color: var(--paper);
}

main.page .btn-primary:hover {
  background: var(--navy-soft);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

main.page .btn-gold {
  background: var(--gold);
  color: var(--navy);
}

main.page .btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

main.page .btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

main.page .btn-outline:hover {
  background: var(--navy);
  color: var(--paper);
}

main.page .btn-soft-disabled {
  background: var(--grey-100);
  color: var(--grey-500);
  cursor: not-allowed;
  border: 1px solid var(--grey-300);
}

main.page .btn-soft-disabled:hover {
  background: var(--grey-100);
  color: var(--grey-500);
  transform: none;
  box-shadow: none;
}


/* ── CONTACT FORM ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

@media (max-width:840px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cform label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  display: block;
  margin-bottom: 6px;
}

.cform input,
.cform select,
.cform textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: .97rem;
  font-family: inherit;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 172, 13, .15);
}

.cform textarea {
  min-height: 130px;
  resize: vertical;
}

.cform-msg {
  background: var(--grey-100);
  padding: 16px;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--grey-700);
}

.contact-info {
  background: var(--grey-100);
  padding: 32px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-row .ii {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-info-row .ic {
  font-size: .92rem;
  color: var(--grey-700);
  line-height: 1.5;
}

.contact-info-row .ic strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 2px;
}

/* ── 404 / EMPTY STATES ─────────────────────────────────────────── */
.center-stage {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.bignum {
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 18vw, 14rem);
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(180deg, var(--navy) 0%, var(--gold) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

/* ── COOKIE/NDPR CONSENT ────────────────────────────────────────── */
.consent-bar {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: var(--navy);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  max-width: 840px;
  margin: 0 auto;
}

.consent-bar p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.45;
  flex: 1 1 280px;
  color: rgba(255, 255, 255, .92);
}

.consent-bar a {
  color: var(--gold-warm);
  text-decoration: underline;
}

.consent-bar .consent-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.consent-bar button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s ease;
}

.consent-bar button.accept {
  background: var(--gold);
  color: var(--navy);
}

.consent-bar button.accept:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.consent-bar button.decline {
  background: transparent;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .3);
}

.consent-bar button.decline:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.consent-hidden {
  display: none;
}

/* Print friendliness for legal pages */
@media print {

  .topnav,
  .sitefoot,
  .consent-bar {
    display: none;
  }

  .pagehead {
    background: var(--paper);
    color: var(--navy);
    padding: 20px 0;
  }

  .pagehead h1,
  .pagehead .lead,
  .eyebrow {
    color: var(--navy);
  }

  body {
    background: var(--paper);
    font-size: 11pt;
  }

  main.page {
    padding: 20px 0;
  }

  a {
    color: var(--navy);
    text-decoration: underline;
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phone-mockup {
    max-width: 320px;
  }

  .chip-left,
  .chip-right {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-grid.reverse {
    direction: ltr;
  }

  .scoin-content {
    grid-template-columns: 1fr;
  }

  .sjob-content {
    grid-template-columns: 1fr;
  }

  .user-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-flow::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .n {
    font-size: 24px;
  }

  .user-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-flow {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .user-types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sjob-kpi-grid {
    grid-template-columns: 1fr;
  }

  .earn-grid {
    grid-template-columns: 1fr;
  }
}