/* ═══════════════════════════════════════════════════════
   seller-premium.css  — DistribuLink Premium Seller Profile
   ✔  All selectors prefixed sp2- (zero conflicts)
   ✔  Does NOT modify style.css
   ✔  Max container 1280px, no horizontal overflow
   ✔  No body/html overflow manipulation
   Design: Luxury editorial — dark hero, gold accents,
           editorial typography, cinematic spacing
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   CONTAINER SYSTEM
   Strict 1280px max, always safe padding
─────────────────────────────────────────── */
.sp2-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────
   PAGE BASE
─────────────────────────────────────────── */
.sp2-body {
  background: #f6f8fb;
}

/* ─────────────────────────────────────────
   BREADCRUMB
─────────────────────────────────────────── */
.sp2-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 10px 0;
}
.sp2-breadcrumb .sp2-container {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  flex-wrap: wrap;
}
.sp2-breadcrumb a {
  color: var(--navy-500);
  font-weight: 500;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.sp2-breadcrumb a:hover { color: var(--gold-600); }
.sp2-breadcrumb .fa-chevron-right { color: var(--gray-300); font-size: .52rem; }
.sp2-breadcrumb span { color: var(--gray-500); font-weight: 500; }
.sp2-bc-premium {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold-600);
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.22);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ─────────────────────────────────────────
   MODAL / POPUP SYSTEM
   Fixed overlay, no scroll locking
─────────────────────────────────────────── */
.sp2-modal {
  position: fixed;
  inset: 0;
  background: rgba(5,12,26,.65);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}
.sp2-modal.sp2-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.sp2-modal-box {
  background: var(--white);
  border-radius: 22px;
  padding: 30px 28px 26px;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  transform: translateY(14px) scale(.97);
  transition: transform .26s ease;
}
.sp2-modal.sp2-modal--open .sp2-modal-box {
  transform: none;
}
.sp2-modal-box--sm { max-width: 380px; }
.sp2-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: var(--gray-100);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gray-500);
  font-size: .82rem;
  transition: all var(--transition);
}
.sp2-modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.sp2-modal-lock {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.3rem;
  color: var(--gold-400);
  margin: 0 auto 14px;
}
.sp2-modal-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 6px;
}
.sp2-modal-desc {
  font-size: .84rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 18px;
}
.sp2-modal-btns { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.sp2-modal-note {
  font-size: .7rem;
  color: var(--gray-400);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.sp2-modal-note i { color: var(--emerald); }

/* ─────────────────────────────────────────
   BUTTON SYSTEM  (sp2-btn)
─────────────────────────────────────────── */
.sp2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 12px;
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.sp2-btn--primary {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.sp2-btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.sp2-btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.sp2-btn--gold:hover {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white);
  box-shadow: var(--shadow-navy);
  transform: translateY(-1px);
}
.sp2-btn--outline-light {
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
}
.sp2-btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}
.sp2-btn--outline-dark {
  border: 2px solid var(--gray-200);
  color: var(--navy-700);
  background: transparent;
}
.sp2-btn--outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.sp2-btn--ghost {
  background: var(--gray-100);
  color: var(--gray-600);
}
.sp2-btn--ghost:hover { background: var(--gray-200); color: var(--gray-800); }
.sp2-btn--full { width: 100%; }
.sp2-btn--lg { padding: 13px 28px; font-size: .95rem; border-radius: 13px; }
.sp2-btn--icon {
  width: 46px; height: 46px;
  padding: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.sp2-btn--icon:hover { background: rgba(255,255,255,.22); color: var(--white); }
.sp2-mt6 { margin-top: 6px; }

/* ─────────────────────────────────────────
   FORM SYSTEM  (sp2-form)
─────────────────────────────────────────── */
.sp2-form { display: flex; flex-direction: column; gap: 13px; }
.sp2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.sp2-field { display: flex; flex-direction: column; gap: 4px; }
.sp2-field label {
  font-size: .77rem;
  font-weight: 600;
  color: var(--gray-600);
}
.sp2-field label span { color: var(--red); }
.sp2-field input,
.sp2-field select,
.sp2-field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: .875rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sp2-field input:focus,
.sp2-field select:focus,
.sp2-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.sp2-field textarea { resize: vertical; min-height: 80px; line-height: 1.55; }
.sp2-field input.sp2-error { border-color: var(--red); }

/* ─────────────────────────────────────────
   SECTION 1: PREMIUM HERO
─────────────────────────────────────────── */
.sp2-hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 55%, #162040 100%);
  overflow: hidden;
  padding: 56px 0 64px;
  isolation: isolate;
}

/* Geometric background elements */
.sp2-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sp2-hero-geo {
  position: absolute;
  border: 1px solid rgba(245,158,11,.12);
  border-radius: 50%;
}
.sp2-geo-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  animation: sp2GeoSpin 35s linear infinite;
}
.sp2-geo-2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -80px;
  border-color: rgba(255,255,255,.04);
  animation: sp2GeoSpin 50s linear infinite reverse;
}
.sp2-geo-3 {
  width: 200px; height: 200px;
  top: 40px; right: 340px;
  border-color: rgba(245,158,11,.06);
  animation: sp2GeoSpin 25s linear infinite;
}
@keyframes sp2GeoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sp2-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.sp2-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 65%);
  top: -80px; right: 50px;
}
.sp2-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,58,110,.60) 0%, transparent 70%);
  bottom: -60px; left: 100px;
}
.sp2-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero layout */
.sp2-hero .sp2-container { position: relative; z-index: 1; }
.sp2-hero-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: center;
}

/* Hero main */
.sp2-hero-main {}
.sp2-hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sp2-premium-badge, .sp2-verified-badge, .sp2-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sp2-premium-badge {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 2px 12px rgba(245,158,11,.35);
  animation: sp2BadgeGlow 3s ease-in-out infinite;
}
@keyframes sp2BadgeGlow {
  0%,100% { box-shadow: 0 2px 12px rgba(245,158,11,.35); }
  50%      { box-shadow: 0 2px 22px rgba(245,158,11,.55); }
}
.sp2-verified-badge {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.30);
  color: #6ee7b7;
}
.sp2-category-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
}

/* Logo + name */
.sp2-hero-logo-name {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.sp2-hero-logo {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #fee2e2, #fca5a5);
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 2.2rem;
  color: #991b1b;
  box-shadow: 0 8px 32px rgba(0,0,0,.30);
  border: 2px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.sp2-hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.sp2-hero-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  margin-top: 6px;
  letter-spacing: .01em;
}

/* Meta strip */
.sp2-hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  row-gap: 12px;
}
.sp2-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 110px;
}
.sp2-meta-item > .fa-solid, .sp2-meta-item > .fa-regular {
  font-size: 1.1rem;
  color: var(--gold-400);
  flex-shrink: 0;
}
.sp2-meta-label { font-size: .64rem; color: rgba(255,255,255,.40); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 2px; }
.sp2-meta-val { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--white); }
.sp2-meta-sep { width: 1px; height: 36px; background: rgba(255,255,255,.10); margin: 0 16px; flex-shrink: 0; }

/* Hero actions */
.sp2-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Stats panel (right side of hero) */
.sp2-hero-stats-panel {
  align-self: stretch;
}
.sp2-stats-panel-inner {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(12px);
}
.sp2-stats-panel-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.sp2-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.sp2-stat-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.sp2-stat-num {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: -.03em;
  line-height: 1;
}
.sp2-stat-suffix {
  display: inline;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: rgba(245,158,11,.65);
}
.sp2-stat-label {
  font-size: .67rem;
  color: rgba(255,255,255,.38);
  margin-top: 5px;
  font-weight: 500;
}
.sp2-panel-divider { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; }
.sp2-panel-agent { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sp2-panel-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-500));
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .9rem;
  color: var(--gold-400);
  flex-shrink: 0;
  border: 1.5px solid rgba(245,158,11,.20);
}
.sp2-panel-agent-name { font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.sp2-panel-agent-status { display: flex; align-items: center; gap: 5px; font-size: .7rem; color: rgba(255,255,255,.40); }
.sp2-live-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  display: inline-block;
  animation: sp2LivePulse 2s infinite;
}
@keyframes sp2LivePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .65; transform: scale(1.3); }
}
.sp2-panel-cta { margin-bottom: 8px; }
.sp2-panel-trust {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .68rem; color: rgba(255,255,255,.30);
  padding: 7px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
  margin-top: 6px;
}

/* ─────────────────────────────────────────
   PAGE BODY LAYOUT
─────────────────────────────────────────── */
.sp2-page-body {
  padding: 28px 0 60px;
}
.sp2-body-grid {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 22px;
  align-items: start;
}
.sp2-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

/* ─────────────────────────────────────────
   SECTION BASE
─────────────────────────────────────────── */
.sp2-section {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 30px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  min-width: 0;
  overflow: hidden;
}
.sp2-section-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-600);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.18);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.sp2-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.03em;
  line-height: 1.18;
  margin-bottom: 8px;
}
.sp2-section-sub {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SECTION 2: BRAND STORY
─────────────────────────────────────────── */
.sp2-section--story::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 260px; height: 260px;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,.06) 0%, transparent 65%);
  pointer-events: none;
}
.sp2-section--story { position: relative; }
.sp2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.sp2-story-text { display: flex; flex-direction: column; gap: 12px; }
.sp2-story-lead {
  font-size: .98rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.75;
}
.sp2-story-text p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.78;
}
.sp2-story-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}
.sp2-story-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 16px;
  transition: all var(--transition);
}
.sp2-story-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.sp2-story-card--wide { grid-column: span 2; }
.sp2-story-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: .9rem;
  margin-bottom: 8px;
}
.sp2-story-card-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 5px;
}
.sp2-story-card p { font-size: .79rem; color: var(--gray-500); line-height: 1.6; }

/* Achievements strip */
.sp2-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}
.sp2-achievement {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: all var(--transition);
}
.sp2-achievement:hover { border-color: var(--gold-400); background: rgba(245,158,11,.04); }
.sp2-achievement i { color: var(--gold-500); font-size: .78rem; }

/* ─────────────────────────────────────────
   SECTION 3: PRODUCT CAROUSEL
─────────────────────────────────────────── */
.sp2-section--products {
  background: linear-gradient(160deg, var(--navy-950) 0%, #1a2d52 100%);
  border-color: rgba(255,255,255,.06);
}
.sp2-section--products .sp2-section-eyebrow {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.25);
  color: var(--gold-400);
}
.sp2-section--products .sp2-section-title { color: var(--white); }
.sp2-section--products .sp2-section-sub { color: rgba(255,255,255,.45); }

.sp2-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0 16px;
}
.sp2-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  min-width: 0;
}
.sp2-carousel-track {
  display: flex;
  gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.sp2-car-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.75);
  display: grid; place-items: center;
  font-size: .82rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.sp2-car-prev { margin-right: 10px; }
.sp2-car-next { margin-left: 10px; }
.sp2-car-btn:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: scale(1.08); }
.sp2-car-btn:disabled { opacity: .3; cursor: not-allowed; transform: none; }

/* Product cards — premium style */
.sp2-prod-card {
  flex: 0 0 175px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.sp2-prod-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(245,158,11,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.sp2-prod-visual {
  height: 135px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}
.sp2-prod-icon { font-size: 2.8rem; }
.sp2-prod-highlight {
  position: absolute;
  top: 10px; right: 10px;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(245,158,11,.90);
  color: var(--navy-900);
  backdrop-filter: blur(4px);
}
.sp2-prod-hl--red    { background: rgba(190,18,60,.85); color: var(--white); }
.sp2-prod-hl--blue   { background: rgba(29,78,216,.85); color: var(--white); }
.sp2-prod-hl--green  { background: rgba(21,128,61,.85); color: var(--white); }
.sp2-prod-hl--purple { background: rgba(91,33,182,.85); color: var(--white); }
.sp2-prod-body { padding: 12px 13px 13px; }
.sp2-prod-name { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 3px; }
.sp2-prod-range { font-size: .68rem; color: rgba(255,255,255,.40); font-weight: 500; }

/* Carousel dots */
.sp2-car-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.sp2-car-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  transition: all var(--transition);
  cursor: pointer;
}
.sp2-car-dot.sp2-dot-active {
  background: var(--gold-400);
  width: 18px;
  border-radius: 3px;
}

/* Category tags */
.sp2-cat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sp2-cat-tag {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .76rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.50);
  cursor: pointer;
  transition: all var(--transition);
}
.sp2-cat-tag:hover, .sp2-cat-tag--on {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* ─────────────────────────────────────────
   SECTION 4: BUSINESS DETAILS
─────────────────────────────────────────── */
.sp2-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 20px;
}
.sp2-detail-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.sp2-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  border-radius: 0 0 16px 16px;
  transition: background var(--transition);
}
.sp2-detail-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sp2-detail-card:hover::after { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }
.sp2-detail-card--featured {
  border-color: rgba(245,158,11,.25);
  background: linear-gradient(160deg, rgba(245,158,11,.05) 0%, var(--white) 100%);
}
.sp2-detail-card--featured::after { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }
.sp2-detail-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1rem;
  margin: 0 auto 10px;
}
.sp2-detail-label {
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 5px;
}
.sp2-detail-val {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.sp2-detail-note { font-size: .69rem; color: var(--gray-400); }

/* ─────────────────────────────────────────
   SECTION 5: DISTRIBUTOR BENEFITS
─────────────────────────────────────────── */
.sp2-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}
.sp2-benefit-item {
  display: grid;
  grid-template-columns: 44px 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.sp2-benefit-item:last-child { border-bottom: none; padding-bottom: 0; }
.sp2-benefit-item:hover { background: transparent; }
.sp2-benefit-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  padding-top: 4px;
  user-select: none;
  letter-spacing: -.04em;
}
.sp2-benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.sp2-benefit-body {}
.sp2-benefit-body h4 {
  font-family: var(--font-display);
  font-size: .96rem; font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.sp2-benefit-body p { font-size: .85rem; color: var(--gray-500); line-height: 1.68; }

/* ─────────────────────────────────────────
   SECTION 6: TERRITORY
─────────────────────────────────────────── */
.sp2-territory-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}
.sp2-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sp2-zone {
  border-radius: 16px;
  padding: 16px;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.sp2-zone:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.sp2-zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.sp2-zone--north::before { background: linear-gradient(90deg, var(--navy-500), var(--navy-400)); }
.sp2-zone--west::before  { background: linear-gradient(90deg, #f97316, #fb923c); }
.sp2-zone--south::before { background: linear-gradient(90deg, var(--emerald), #34d399); }
.sp2-zone--east::before  { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }

.sp2-zone-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.sp2-zone-badge-wrap { display: flex; flex-direction: column; gap: 4px; }
.sp2-zone-label {
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700;
  color: var(--navy-800);
}
.sp2-zone-status {
  display: inline-block;
  font-size: .61rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  width: fit-content;
}
.sp2-zone-status--open    { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.sp2-zone-status--partial { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.sp2-zone-status--new     { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.sp2-zone-direction {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  user-select: none;
}
.sp2-zone-list { display: flex; flex-direction: column; gap: 4px; }
.sp2-zone-list li {
  font-size: .78rem; color: var(--gray-600);
  padding-left: 12px;
  position: relative;
}
.sp2-zone-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* India visual */
.sp2-india-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.sp2-india-map {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-radius: 18px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sp2-map-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-400); }
.sp2-map-compass {
  position: relative;
  width: 120px; height: 120px;
}
.sp2-compass-cross-h, .sp2-compass-cross-v {
  position: absolute;
  background: rgba(255,255,255,.08);
}
.sp2-compass-cross-h { width: 100%; height: 1px; top: 50%; left: 0; }
.sp2-compass-cross-v { height: 100%; width: 1px; left: 50%; top: 0; }
.sp2-compass-ring {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.sp2-compass-n, .sp2-compass-s, .sp2-compass-e, .sp2-compass-w {
  position: absolute;
  font-size: .6rem; font-weight: 700;
  color: rgba(255,255,255,.30);
}
.sp2-compass-n { top: 0; left: 50%; transform: translateX(-50%); }
.sp2-compass-s { bottom: 0; left: 50%; transform: translateX(-50%); }
.sp2-compass-e { right: 0; top: 50%; transform: translateY(-50%); }
.sp2-compass-w { left: 0; top: 50%; transform: translateY(-50%); }
.sp2-map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 10px rgba(245,158,11,.5);
  animation: sp2DotPulse 2.5s ease-in-out infinite;
}
.sp2-map-dot span {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  font-size: .52rem; color: rgba(255,255,255,.35); white-space: nowrap;
}
.sp2-dot-north { top: 20px; left: 50%; transform: translateX(-50%); }
.sp2-dot-south { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: .6s; }
.sp2-dot-east  { right: 20px; top: 50%; transform: translateY(-50%); animation-delay: 1.2s; }
.sp2-dot-west  { left: 20px; top: 50%; transform: translateY(-50%); animation-delay: 1.8s; }
@keyframes sp2DotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(245,158,11,.4); }
  50%      { box-shadow: 0 0 16px rgba(245,158,11,.7); }
}
.sp2-map-coverage {
  font-size: .78rem; color: rgba(255,255,255,.45);
  text-align: center;
}
.sp2-map-coverage strong { color: var(--gold-400); font-weight: 700; }
.sp2-territory-legend {
  display: flex; flex-direction: column; gap: 6px; width: 100%;
}
.sp2-t-leg {
  display: flex; align-items: center; gap: 7px;
  font-size: .74rem; color: var(--gray-500);
}
.sp2-t-dot {
  width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
}
.sp2-t-dot--open    { background: var(--emerald); }
.sp2-t-dot--partial { background: var(--gold-500); }
.sp2-t-dot--new     { background: #60a5fa; }

/* ─────────────────────────────────────────
   SECTION 7: CONTACT FORM
─────────────────────────────────────────── */
.sp2-section--contact {
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border-color: rgba(255,255,255,.06);
  padding: 36px 30px;
}
.sp2-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
.sp2-eyebrow-light { background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.25); color: var(--gold-400); }
.sp2-contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.035em;
  line-height: 1.2;
  margin: 10px 0 12px;
}
.sp2-contact-intro {
  font-size: .88rem; color: rgba(255,255,255,.48);
  line-height: 1.72;
  margin-bottom: 18px;
}
.sp2-contact-intro strong { color: var(--gold-400); }
.sp2-contact-pledges { display: flex; flex-direction: column; gap: 9px; }
.sp2-contact-pledges li {
  display: flex; align-items: center; gap: 9px;
  font-size: .82rem; color: rgba(255,255,255,.42);
}
.sp2-contact-pledges li i { color: var(--gold-400); font-size: .75rem; width: 14px; }
/* Contact form (dark bg) */
.sp2-contact-form .sp2-field label { color: rgba(255,255,255,.50); }
.sp2-contact-form .sp2-field input,
.sp2-contact-form .sp2-field textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.sp2-contact-form .sp2-field input::placeholder,
.sp2-contact-form .sp2-field textarea::placeholder { color: rgba(255,255,255,.25); }
.sp2-contact-form .sp2-field input:focus,
.sp2-contact-form .sp2-field textarea:focus {
  border-color: var(--gold-400);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(245,158,11,.14);
}
.sp2-form-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: .69rem; color: rgba(255,255,255,.28);
  margin-top: 10px; text-align: center; justify-content: center;
}
.sp2-form-trust i { color: var(--gold-400); }

/* ─────────────────────────────────────────
   STICKY SIDEBAR
─────────────────────────────────────────── */
.sp2-sidebar {}
.sp2-sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 14px);
}
.sp2-sb-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.sp2-sb-card--dark {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 8px 28px rgba(5,12,26,.35);
}
.sp2-sb-logo {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #fee2e2, #fca5a5);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #991b1b;
  margin: 0 auto 12px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.20);
}
.sp2-sb-name {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 800;
  color: var(--white);
  text-align: center; line-height: 1.25;
  margin-bottom: 8px;
}
.sp2-sb-badges {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 14px;
}
.sp2-sb-badge-verified, .sp2-sb-badge-premium {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .61rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
}
.sp2-sb-badge-verified { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.25); color: #6ee7b7; }
.sp2-sb-badge-premium  { background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.28); color: var(--gold-400); }
.sp2-sb-kv-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}
.sp2-sb-kv {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .77rem;
}
.sp2-sb-kv:last-child { border-bottom: none; }
.sp2-sb-kv span { color: rgba(255,255,255,.35); font-weight: 500; }
.sp2-sb-kv strong { color: var(--gold-300); font-weight: 700; }
.sp2-sb-cta { margin-top: 0; }
.sp2-sb-trust {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .67rem; color: rgba(255,255,255,.25);
  margin-top: 8px; text-align: center;
}
.sp2-sb-sec-title {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.sp2-sb-activity { display: flex; flex-direction: column; gap: 8px; }
.sp2-sb-act-row {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--gray-500);
}
.sp2-sb-act-row i { font-size: .8rem; width: 14px; }
.sp2-sb-act-row strong { color: var(--navy-800); }
.sp2-sb-related-list { display: flex; flex-direction: column; gap: 6px; }
.sp2-sb-related {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition);
}
.sp2-sb-related:hover { background: var(--gray-50); }
.sp2-sb-rel-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: .85rem; flex-shrink: 0;
}
.sp2-sb-rel-name { font-size: .78rem; font-weight: 700; color: var(--navy-800); margin-bottom: 2px; }
.sp2-sb-rel-inv { font-size: .68rem; color: var(--gray-400); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
─────────────────────────────────────────── */
@keyframes sp2FadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sp2-section.sp2-revealed {
  animation: sp2FadeUp .45s ease both;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET ≤1100px
─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sp2-hero-layout { grid-template-columns: 1fr 300px; }
  .sp2-body-grid { grid-template-columns: 1fr 260px; }
  .sp2-details-grid { grid-template-columns: repeat(2, 1fr); }
  .sp2-story-grid { grid-template-columns: 1fr; }
  .sp2-story-cards { grid-template-columns: repeat(3, 1fr); }
  .sp2-story-card--wide { grid-column: span 3; }
  .sp2-territory-layout { grid-template-columns: 1fr; }
  .sp2-india-visual { flex-direction: row; justify-content: center; align-items: flex-start; }
  .sp2-contact-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET ≤900px
─────────────────────────────────────────── */
@media (max-width: 900px) {
  .sp2-hero-layout { grid-template-columns: 1fr; }
  .sp2-hero-stats-panel { display: none; }  /* hide stats panel on small screens */
  .sp2-body-grid { grid-template-columns: 1fr; }
  .sp2-sidebar { order: -1; }
  .sp2-sidebar-sticky { position: static; }
  .sp2-sb-card--dark { display: none; } /* hide duplicate dark card; hero handles CTA */
  .sp2-benefit-item { grid-template-columns: 38px 42px 1fr; gap: 12px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE ≤768px
─────────────────────────────────────────── */
@media (max-width: 768px) {
  .sp2-hero { padding: 36px 0 44px; }
  .sp2-hero-name { font-size: clamp(1.6rem, 6vw, 2rem); }
  .sp2-hero-logo-name { flex-direction: column; gap: 14px; }
  .sp2-hero-meta-strip { gap: 0; row-gap: 10px; }
  .sp2-meta-sep { display: none; }
  .sp2-meta-item { min-width: calc(50% - 20px); }
  .sp2-section { padding: 22px 18px; border-radius: 16px; }
  .sp2-story-cards { grid-template-columns: 1fr; }
  .sp2-story-card--wide { grid-column: span 1; }
  .sp2-zones { grid-template-columns: 1fr; }
  .sp2-details-grid { grid-template-columns: repeat(2, 1fr); }
  .sp2-sp2-form-row, .sp2-form-row { grid-template-columns: 1fr; }
  .sp2-benefit-item { grid-template-columns: 42px 1fr; gap: 10px; }
  .sp2-benefit-num { display: none; }
  .sp2-india-visual { display: none; }
  .sp2-territory-layout { grid-template-columns: 1fr; }
  .sp2-contact-inner { grid-template-columns: 1fr; }
  .sp2-hero-actions { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE ≤480px
─────────────────────────────────────────── */
@media (max-width: 480px) {
  .sp2-container { padding: 0 16px; }
  .sp2-hero { padding: 28px 0 36px; }
  .sp2-hero-badges { gap: 5px; }
  .sp2-details-grid { grid-template-columns: 1fr; }
  .sp2-hero-logo { width: 64px; height: 64px; font-size: 1.7rem; }
}
