/* ============================================
   SELLSPHERE — STYLES.CSS
   Palette: Volcanic Glass (dark + orange fire)
   Fonts: Outfit + Playfair Display
   ============================================ */

:root {
  --bg:        #0f0f0f;
  --bg2:       #161616;
  --bg3:       #1e1e1e;
  --surface:   #242424;
  --border:    #2e2e2e;
  --orange:    #ff6b2b;
  --orange2:   #ffb088;
  --orange3:   #ff8c55;
  --text:      #f0ece6;
  --text2:     #a09890;
  --text3:     #6a6460;
  --white:     #ffffff;
  --blue:      #4a9eff;
  --pink:      #ff4fa3;
  --green:     #4ade80;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --glow-o:    0 0 40px rgba(255,107,43,0.25);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(15,15,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text { color: var(--white); }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--orange3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,43,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta {
  margin-top: 8px;
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 12px 20px !important;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #ff3cac;
  bottom: 100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--blue);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,43,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,43,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
  position: relative;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--orange3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,43,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 1rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ORBIT VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-orbit {
  position: relative;
  width: 380px;
  height: 380px;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,107,43,0.2);
  animation: spin 20s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbit-item {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateX(170px) rotate(calc(-1 * var(--angle)));
}
.p-chip {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  transition: transform 0.3s;
  cursor: default;
}
.p-chip:hover { transform: translate(-50%, -50%) scale(1.2); }
.p-chip.fb  { background: #1877f2; color: #fff; }
.p-chip.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.p-chip.amz { background: #ff9900; color: #000; }
.p-chip.fk  { background: #2874f0; color: #fff; }
.p-chip.mn  { background: #ff3f6c; color: #fff; }
.p-chip.eb  { background: #e53238; color: #fff; }
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.1em;
  box-shadow: 0 0 40px rgba(255,107,43,0.5);
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,107,43,0.5); }
  50% { box-shadow: 0 0 70px rgba(255,107,43,0.8); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 20px;
}
.ticker .sep { color: rgba(255,255,255,0.5); padding: 0 4px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.25);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PLATFORMS
   ============================================ */
.platforms {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  border: 1px solid var(--border);
  background: var(--bg2);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* PLATFORM CARDS */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.platform-card:hover {
  border-color: rgba(255,107,43,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.platform-card.hidden { display: none; }
.card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
}
.platform-card:hover .card-glow { opacity: 0.15; }
.glow-blue { background: var(--blue); }
.glow-pink { background: var(--pink); }
.glow-orange { background: var(--orange); }

.featured-card {
  border-color: rgba(255,107,43,0.4);
  background: linear-gradient(135deg, var(--bg2), rgba(255,107,43,0.05));
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.platform-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}
.fb-icon { background: #1877f2; }
.fb-icon svg { width: 24px; height: 24px; color: #fff; }
.ig-icon { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ig-icon svg { width: 22px; height: 22px; color: #fff; }
.amz-icon { background: #ff9900; }
.amz-icon svg { width: 24px; height: 24px; color: #000; }
.fk-icon, .mn-icon, .eb-icon { background: var(--surface); }
.platform-meta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.platform-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.social-tag { background: rgba(74,158,255,0.15); color: var(--blue); }
.market-tag { background: rgba(255,107,43,0.15); color: var(--orange); }
.fashion-tag { background: rgba(255,79,163,0.15); color: var(--pink); }
.global-tag { background: rgba(74,222,128,0.15); color: var(--green); }
.platform-rating {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  flex-shrink: 0;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.card-features span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
}
.card-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.cs {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cs:last-child { border-right: none; }
.cs strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cs small {
  font-size: 0.68rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-btn {
  display: block;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.card-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ============================================
   DROPSHIPPING
   ============================================ */
.dropship {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}
.dropship-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dropship-flow {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.dropship-flow h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,107,43,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  font-family: var(--font-display);
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.6;
}
.flow-arrow {
  text-align: center;
  color: var(--orange);
  font-size: 1.5rem;
  padding: 4px 0;
  display: none;
}
.dropship-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.ds-platform-list { display: flex; flex-direction: column; gap: 14px; }
.ds-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.ds-item:hover { border-color: rgba(255,107,43,0.3); }
.ds-icon { font-size: 1.4rem; flex-shrink: 0; }
.ds-item div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.ds-item div p {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.4;
}
.ds-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.ds-badge.hot { background: rgba(255,107,43,0.2); color: var(--orange); }
.ds-badge.best { background: rgba(74,222,128,0.2); color: var(--green); }
.ds-badge { background: rgba(255,255,255,0.08); color: var(--text2); }
.supplier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.supplier-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s;
}
.supplier-item:hover { border-color: rgba(255,107,43,0.3); }
.supplier-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.supplier-item span {
  font-size: 0.75rem;
  color: var(--text3);
}

/* ============================================
   USA MARKET
   ============================================ */
.usa-market {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.usa-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.usa-flag-stripe {
  position: absolute;
  height: 3px;
  left: 0; right: 0;
  opacity: 0.06;
}
.s1 { background: #bf0a30; top: 20%; }
.s2 { background: #bf0a30; top: 50%; }
.s3 { background: #bf0a30; top: 80%; }
.usa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usa-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.usa-card:hover {
  border-color: rgba(255,107,43,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.usa-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.usa-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.usa-card ul { display: flex; flex-direction: column; gap: 8px; }
.usa-card li {
  font-size: 0.875rem;
  color: var(--text2);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.usa-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

/* ============================================
   GUIDE / TIMELINE
   ============================================ */
.guide {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}
.tl-marker {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.tl-week {
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.tl-content {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.tl-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.tl-tasks { display: flex; flex-direction: column; gap: 10px; }
.tl-task {
  font-size: 0.875rem;
  color: var(--text2);
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  line-height: 1.5;
}
.tl-task.done {
  color: var(--green);
  border-color: rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.05);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -100px; right: -100px;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-tag {
  display: inline-block;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--orange);
}
.cta-content p {
  font-size: 1.1rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.cta-platforms span {
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 500;
}
.cta-platform-icons {
  display: flex;
  gap: 8px;
}
.cpi {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  transition: transform 0.2s;
}
.cpi:hover { transform: scale(1.15); }
.fb-bg  { background: #1877f2; }
.ig-bg  { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.amz-bg { background: #ff9900; color: #000; }
.fk-bg  { background: #2874f0; }
.mn-bg  { background: #ff3f6c; }
.eb-bg  { background: #e53238; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-flag {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 500;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text3);
}
.footer-flag-line { font-size: 0.85rem !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .dropship-layout { grid-template-columns: 1fr; }
  .usa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .platforms-grid { grid-template-columns: 1fr; }
  .usa-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 60px; }
  .tl-marker { width: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .supplier-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 50px; }
  .container { padding: 0 16px; }
  .platforms, .dropship, .usa-market, .guide, .cta-section { padding: 70px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .timeline-item { flex-direction: column; gap: 16px; }
  .timeline::before { display: none; }
  .tl-marker { width: auto; flex-direction: row; }
}