/* ============================================================
   Seli Platform — Global Stylesheet
   Fonts: Outfit (headings) · Inter (body)
   ============================================================ */

/* -- Fonts (self-hosted variable woff2) -------------------*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Inter-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Outfit-Variable.woff2') format('woff2');
}

:root {
  --seli-red: #F9295F;
  --seli-turquoise: #1B9AAA;
  --seli-teal: #06D6A0;
  --seli-orange: #FFCA4F;
  --seli-lime: #D0FF62;
  --seli-purple: #D100D1;
  --seli-bg: #F7F8FA;
  --seli-dark: #0A0E1A;
  --seli-nav: #FFFFFF;
  --seli-red-bg: rgba(249,41,95,0.08);
  --seli-black: #171717;
  --seli-deep-green: #16A34A;
  --seli-light-green: #00FF00;
  --seli-green-bg: rgba(249,41,95,0.08);
  --text-primary: #0A0E1A;
  --text-secondary: #4B5563;
  --text-muted: #6b7079;
  --footer-muted: #b6b6b6;
  --border: rgba(0,0,0,0.07);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ── BASE ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--seli-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: var(--seli-red);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

.section-pad {
  padding: 120px 0;
}

.bg-alt {
  background: #fff;
}

.text-teal {
  color: var(--seli-turquoise) !important;
}
.text-seli-red {
  color: var(--seli-red) !important;
}
.text-lime {
  color: var(--seli-lime) !important;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.18s ease;
  padding: 10px 22px;
  font-size: 0.9rem;
  border: none;
}

.btn-seli-primary {
  background: var(--seli-red);
  color: #fff;
  border: 1.5px solid var(--seli-red);
}
.btn-seli-primary:hover,
.btn-seli-primary:active,
.btn-seli-primary.active {
  background: var(--seli-red) !important;
  border: 1.5px solid var(--seli-red) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,41,95,0.3);
}

.btn-seli-secondary {
  background: var(--seli-turquoise);
  color: #fff;
  border: 1.5px solid var(--seli-turquoise);
}
.btn-seli-secondary:hover,
.btn-seli-secondary:active,
.btn-seli-secondary.active {
  background: var(--seli-turquoise) !important;
  border: 1.5px solid var(--seli-turquoise) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--seli-black);
  border: 1.5px solid var(--seli-black);
}
.btn-outline:hover,
.btn-outline:active,
.btn-outline.active {
  background: var(--seli-black) !important;
  border: 1.5px solid var(--seli-black) !important;
  color: #FFF!important;
  transform: translateY(-1px);
}

.btn-cta-white {
  background: #fff;
  color: var(--seli-red);
  border: 1.5px solid #fff;
  font-weight: 600;
}
.btn-cta-white:hover,
.btn-cta-white:active,
.btn-cta-white.active {
  background: rgba(255,255,255,0.92) !important;
  color: var(--seli-red) !important;
  border: 1.5px solid #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-cta-outline:hover,
.btn-cta-outline:active,
.btn-cta-outline.active {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
}

.btn-purple {
  background: var(--seli-purple);
  color: #fff;
  border: 1.5px solid var(--seli-purple);
}
.btn-purple:hover,
.btn-purple:active,
.btn-purple.active {
  background: var(--seli-purple) !important;
  border: 1.5px solid var(--seli-purple) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,41,95,0.3);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.seli-nav {
  background: var(--seli-nav);
  padding: 20px 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(1, 1, 1, 0.05);
}

.seli-nav .navbar-brand img {
  width: 90px;
}

.seli-nav.scrolled {
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.seli-nav .nav-link {
  color: #333333;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 14px 8px 0;
  transition: all 0.15s;
  border-bottom: 3px transparent;
}
.seli-nav .nav-link:hover,
.seli-nav .nav-link.active {
  color: #333333;
  border-bottom: 3px solid #f9295f73;
}

.seli-nav .nav-link.active {
  font-weight: 700;
}

.seli-nav .navbar-toggler:focus {
  box-shadow: none;
}

.seli-nav .navbar-toggler[aria-expanded="false"] .bi-list::before {
  content: "\f479";
}

.seli-nav .navbar-toggler[aria-expanded="true"] .bi-list::before {
  content: "\f62a";
}

.seli-nav .dropdown-toggle::after {
  opacity: 0.5;
  margin-left: 0.4em;
  color: #666;
}
.seli-nav .navbar-collapse.collapsing .navbar-nav,
.seli-nav .navbar-collapse.show .navbar-nav {
  padding-top: 20px;
}

.seli-nav .navbar-collapse.collapsing .nav-link,
.seli-nav .navbar-collapse.show .nav-link {
  padding: 12px 14px 12px 12px;
}

.seli-nav .navbar-collapse.show {
  padding-bottom: 20px;
}

/* White theme dropdown — used by the Platform menu on both the home
   and category pages. */
.seli-dropdown {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
}
.seli-dropdown .dropdown-item {
  color: var(--seli-black);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 9px 12px;
  transition: all 0.12s;
}
.seli-dropdown .dropdown-item:hover,
.seli-dropdown .dropdown-item.active {
  color: var(--seli-black);
  background-color: #f7f7f7;
  border-bottom: 0;
}
.seli-dropdown .dropdown-item i {
  opacity: 0.6;
}

/* Slide-down animation for nav dropdowns. Bootstrap toggles the
   menu with display:none/bock, which can't transition, so we animate
   on .show with a keyframe instead. */
.seli-nav .dropdown-menu.show {
  animation: seliDropdownDown 0.22s ease;
}
@keyframes seliDropdownDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240,
    240, 1) 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(249,41,95,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,41,95,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent
    100%); */
}

.min-vh-hero {
  min-height: calc(100vh - 100px);
  padding-bottom: 60px;
}

.hero-eyebrow {
  margin-bottom: 12px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #daf9f1;
  color: green;
  border: 1px solid var(--seli-teal);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--seli-black);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.headline-accent {
  color: var(--seli-red);
}
.headline-accent-teal {
  color: var(--seli-teal);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--seli-black);
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
}
.stat-n {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--seli-black);
}
.stat-l {
  font-size: 0.78rem;
  color: var(--seli-black);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--seli-black);
  margin-right: 28px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  display: block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup-wrap {
  position: relative;
}
.phone-mockup {
  width: 240px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,41,95,0.25) 0%, transparent 70%);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.float-card {
  position: absolute;
  background: rgba(20,24,36,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  z-index: 3;
}
.float-card i {
  font-size: 20px;
}
.fc-title {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.fc-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}
.float-card-1 {
  top: 40px;
  right: 0px;
  animation: float 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 80px;
  left: 20px;
  animation: float 4s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── SECTION TEXT ──────────────────────────────────────────── */
.section-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── PRODUCT CARDS (HOME) ─────────────────────────────────── */
.product-card-link {
  display: block;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: var(--radius);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-market::before {
  background: linear-gradient(135deg, rgba(249,41,95,0.04) 0%, transparent 60%);
}
.product-card-market:hover::before {
  opacity: 1;
}
.product-card-delivery::before {
  background: linear-gradient(135deg, rgba(27,154,170,0.06) 0%, transparent
    60%);
}
.product-card-delivery:hover::before {
  opacity: 1;
}
.product-card-shemi::before {
  background: linear-gradient(135deg, rgba(208,255,98,0.08) 0%, transparent
    60%);
}
.product-card-shemi:hover::before {
  opacity: 1;
}
.pc-logo {
  margin-top: 10px;
  margin-bottom: 30px;
}
.pc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--seli-black);
}
.pc-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pc-cta {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--seli-red);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-section {
  background: #fff;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  gap: 24px;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid transparent;
  margin-bottom: 20px;
  align-items: center;
}
/* .how-step.active {
  background: rgba(249,41,95,0.04);
  border-color: rgba(249,41,95,0.15);
} */

.step-icon {
  font-size: 2em;
}

.how-step.active .step-marker {
  background: var(--seli-red);
  color: #fff;
}

.how-step.step-video.active {
  background: rgba(249,41,95,0.09);
  border-color: rgba(249,41,95,0.15);
}

.how-step.step-video .step-icon {
  color: rgba(249,41,95,0.60);
}

.how-step.step-video.active .step-icon {
  color: var(--seli-red);
}

.how-step.step-escrow.active {
  background: rgba(6,214,160,0.09);
  border-color: rgba(6,214,160,0.15);
}

.how-step.step-escrow .step-icon {
  color: rgb(6,214,160,0.60);
}

.how-step.step-escrow.active .step-icon {
  color: var(--seli-teal);
}

.how-step.step-track.active {
  background: rgba(11,138,11,0.09);
  border-color: rgba(11,138,11,0.15);
}

.how-step.step-track .step-icon {
  color: rgb(11,138,11,0.60);
}

.how-step.step-track.active .step-icon {
  color: rgb(11,138,11);
}

.how-step.step-earn.active {
  background: rgba(27,154,170,0.09);
  border-color: rgba(27, 54,170,0.15);
}

.how-step.step-earn .step-icon {
  color: rgb(127,154,170,0.60);
}

.how-step.step-earn.active .step-icon {
  color: var(--seli-turquoise);
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0px;
}

.how-visuals {
  display: flex;
  justify-content: center;
  max-height: 600px;
}

.how-visual img {
  max-height: 600px;
}

/* Scroll-runway wrapper: tall spacer so .how-section can stick to the top
   and cycle through each data-step as the user scrolls. Height is set by
   JS (steps × 100vh) so adding a step needs no CSS change. */
.how-pin {
  height: 400vh;
}

/* The pinned element: sticks to the top of the viewport for the whole
   runway, then releases so the page keeps scrolling normally. */
.how-section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Reserve visual space so switching steps doesn't shift the layout. */
.how-visuals {
  position: relative;
  min-height: 520px;
}

/* Each visual layers over the others; only the active one is visible. This
   lets the incoming visual slide in while the previous one fades out. */
.how-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.how-visual.is-active {
  opacity: 1;
}

/* Direction-aware slide + fade. When moving to a later step the visual
   enters from below (bottom→top); when going back it enters from above.
   The direction class is applied inline by seli.js. */
@keyframes howInUp {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes howInDown {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Outgoing visual slides out in the same direction as the incoming slides in
   (both move upward on forward steps, both move downward on back-steps). */
@keyframes howOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20%);
  }
}
@keyframes howOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20%);
  }
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--seli-dark);
  padding: 56px 0;
}
.trust-item {
  padding: 8px;
}
.trust-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}
.trust-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.trust-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── MERCHANT SECTION ─────────────────────────────────────── */
.merchant-section {
  background: var(--seli-bg);
}
.merchant-badge {
  display: inline-block;
  background: rgba(249,41,95,0.08);
  color: var(--seli-red);
  border: 1px solid rgba(249,41,95,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.feature-item i {
  font-size: 1rem;
  flex-shrink: 0;
}
.merchant-visual {
  display: flex;
  justify-content: center;
}
.dashboard-mock {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.dm-store-name {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.dm-store-location {
  font-size: 0.8em;
  font-weight: 500;
  color: var(--text-muted);
}

.dm-performance-area {
  padding: 20px 16px 30px;
  margin-top: 10px;
}
.dm-title-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dm-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.dm-filter {
  display: flex;
  gap: 5px;
  font-size: 0.75em;
  color: var(--text-muted);
  margin-right: 10px;
}
.dm-kpis {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.dm-kpi {
  text-align: center;
}
.dk-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.dk-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.dk-trend {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.dk-trend.up {
  color: #16A34A;
}
.dm-chart-area {
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
}
.dm-chart-area svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Bestseller horizontal-bar chart rows ──────────────────────────────── */
.dm-bestsellers-area {
  padding: 20px 16px 30px;
}

.dm-bestseller-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.dmb-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.dmb-rank {
  width: 18px;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 44px;
  text-align: center;
}
.dmb-rank.is-top {
  color: var(--seli-teal);
}
.dmb-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #F6F7F9;
}
.dmb-body {
  flex: 1;
  min-width: 0;
}
.dmb-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.dmb-metric {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.dmb-track {
  height: 4px;
  background: #EEF0F4;
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}
.dmb-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--seli-deep-green);
}

/* ── SHEMI SECTION ─────────────────────────────────────────── */
.shemi-section {
  background: var(--seli-dark);
}
.shemi-section .section-headline {
  color: #fff;
}
.shemi-section .section-sub {
  color: rgba(255,255,255,0.6);
}

.shemi-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(208,255,98,0.1);
  color: var(--seli-lime);
  border: 1px solid rgba(208,255,98,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.shemi-capabilities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.shemi-logo img {
  width: 90px;
}

.shemi-visual {
  display: flex;
  justify-content: center;
}
.shemi-card {
  background: #141824;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 480px;
}
.shemi-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.shemi-avatar {
  width: 44px;
  height: 44px;
}
.shemi-name-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.shemi-sub-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.shemi-input,
.shemi-output {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
}
.shemi-input-label,
.shemi-output-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.shemi-input-photo img {
  border-radius: 10px;
}
.shemi-output-value {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
}
.shemi-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #FFF;
  border: 1px solid rgba(255,255,255,0.25);
}
.shemi-visual button.btn-purple,
.shemi-visual button.btn-purple:hover {
  background: #d100d16b !important;
  border: 1.5px solid #d100d16b !important;
  color: #FFF;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
}
.testimonial-card-featured {
  background: var(--seli-dark);
  border-color: rgba(249,41,95,0.2);
}
.testimonial-card-featured .t-text,
.testimonial-card-featured .t-role {
  color: rgba(255,255,255,0.85);
}
.testimonial-card-featured .t-name {
  color: #fff;
}
.t-stars {
  color: var(--seli-orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card-featured .t-stars {
  color: var(--seli-orange);
}
.t-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.t-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.t-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--seli-bg);
}
.cta-inner {
  background: var(--seli-red);
  border-radius: 24px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent
    70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.app-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 0.95em;
  font-weight: 500;
}

.store-icon img {
  width: 25px;
}

.sup-notes {
  font-size: 0.5em;
  font-weight: 400;
  top: -1.1em;
}

/* ── SHEMI PAGE ─────────────────────────────────────────────── */

.page-shemi .headline-accent {
  color: var(--seli-purple);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.seli-footer {
  background: #171717;
  padding-top: 80px;
  padding-bottom: 10px;
  border-top: 3px solid var(--seli-red);
}
.footer-logo img {
  width: 100px;
}
.footer-about {
  font-size: 0.875rem;
  color: var(--footer-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--footer-muted);
  transition: color 0.15s;
}
.footer-links a:hover,
.footer-links a.active {
  color: #FFF;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 8px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--footer-muted);
}
.flag-pill {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.15s;
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover {
  background: var(--seli-red);
  color: #fff;
  border-color: var(--seli-red);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .seli-nav {
    padding: 12px 0;
  }
  .seli-nav .navbar-collapse {
    max-width: 400px;
    margin: 0 auto;
  }
  .seli-dropdown {
    box-shadow: none;
    border: none;
    padding: 0;
  }
  .seli-nav .navbar-collapse .nav-item,
  .seli-nav .dropdown-menu li {
    text-align: center;
  }
  .seli-nav .navbar-collapse .navbar-buttons {
    justify-content: center;
  }
  .section-pad {
    padding: 56px 0;
  }
  .hero-section {
    padding-top: 20px;
  }
  .min-vh-hero {
    flex-direction: column-reverse;
  }
  .main-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-headline {
    text-align: center;
  }
  .hero-sub {
    text-align: center;
  }
  .hero-ctas {
    margin-top: 10px !important;
  }
  .hero-stats {
    justify-content: center;
    margin-top: 20px !important;
  }
  .main-hero-visual {
    display: block !important;
  }
  .hero-visual {
    margin-bottom: 40px;
  }
  .phone-mockup {
    width: 160px;
  }
  .float-card-1,
  .float-card-2 {
    display: none;
  }
  .dm-kpis {
    grid-template-columns: repeat(2,1fr);
  }
  .inner-toc {
    display: none;
  }

  /* Below lg the columns stack, so disable the pinned scroll sequence and
     fall back to a normal static section. */
  .how-pin {
    height: auto;
  }
  .how-section {
    position: static;
    min-height: auto;
    overflow: visible;
    padding: 56px 0;
  }
  .how-section .how-steps {
    max-height: none;
    overflow-y: visible;
  }
  .how-visuals {
    min-height: 0;
  }
  .how-visual {
    position: static;
  }

  .section-m-reverse .row {
    flex-direction: column-reverse;
  }

  .m-reverse-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .main-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-headline {
    text-align: center;
  }
  .hero-stats {
    margin-top: 30px !important;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    padding-right: 0;
    width: 45%;
  }
  .how-card-stack {
    height: 240px;
    width: 280px;
  }
  .rights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
  .cat-tabs .nav-link {
    padding: 12px 14px;
    font-size: 0.82rem;
  }
  .pricing-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
  }
  .seli-nav .navbar-brand img {
    width: 65px;
  }
  .d-flex.gap-3.mt-5 {
    flex-direction: column;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .d-flex.gap-3.mt-5 .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-ctas {
    margin-top: 10px !important;
  }
  .hero-stats {
    margin-top: 30px !important;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-visual {
    margin-bottom: 40px;
  }
  .phone-mockup {
    width: 160px;
  }
  .section-sub {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .product-card {
    padding: 24px 28px;
  }
  .shemi-logo img {
    width: 70px;
  }
  .cta-section {
    padding: 40px 0;
  }
  .section-testimonial .sec-headline {
    margin-bottom: 1.5rem !important;
  }
  .app-badges {
    flex-direction: column;
  }
  .footer-logo img {
    width: 90px;
  }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .float-card-1,
  .float-card-2 {
    animation: none;
  }

  /* No scroll-jacking for reduced-motion users: show the section statically
     with step 1 active and every visual visible. */
  .how-pin {
    height: auto;
  }
  .how-section {
    position: static;
    min-height: auto;
    overflow: visible;
  }
  .how-section .how-steps {
    max-height: none;
    overflow-y: visible;
  }
  .how-visual {
    position: static;
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ── FOCUS STYLES ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--seli-red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── COOKIE CONSENT BANNER ─────────────────────────────────── */
/* Fixed bottom bar shown until the visitor accepts or declines
   cookies. Hidden by default; js/cookies.js reveals it and stores
   the choice in sessionStorage so it is not shown again during the
   same browsing session. */
.seli-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 760px;
  margin: 0 auto;
  background: var(--seli-dark);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  font-size: 0.9rem;
  line-height: 1.65;
  animation: seliCookieIn 0.35s ease both;
}
@keyframes seliCookieIn {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.seli-cookie-banner.is-hidden {
  display: none; /* Hide without animation when a choice already exists */
}
.seli-cookie-text {
  flex: 1 1 320px;
}
.seli-cookie-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}
.seli-cookie-text a {
  color: #fff;
  text-decoration: underline;
}
.seli-cookie-text a:hover {
  color: var(--seli-lime);
}
.seli-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seli-cookie-actions .btn {
  border-radius: 10px;
  padding: 9px 20px;
  font-size: 0.9rem;
}
.seli-cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.seli-cookie-close:hover {
  color: #fff;
}
@media (max-width: 575.98px) {
  .seli-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px 18px;
  }
  .seli-cookie-actions .btn {
    flex: 1 1 100%;
  }
}
