/* ============================================================
   SKUBIQ eKart Billing — brand styles
   Matches https://www.skubiq.com/
   Fonts: Oswald (headings) · Poppins (body/UI) · Rubik (buttons)
   Colors: red #EB0B1F · charcoal #2A2424 · light #F7FAFC
   ============================================================ */

:root {
  --sk-red: #EB0B1F;
  --sk-red-dark: #C70A1A;
  --sk-red-deep: #D41324;
  --sk-red-100: #FBD9DE;
  --sk-red-50: #FDECEE;

  --sk-coral: #F63D2E;
  --sk-purple: #5D1A87;
  --sk-gradient: linear-gradient(90deg, #F63D2E, #5D1A87);

  --sk-ink: #2A2424;
  --sk-ink-soft: #3b3b3b;
  --sk-body: #363636;
  --sk-muted: #757575;
  --sk-border: #E8E8E8;

  --sk-bg: #FFFFFF;
  --sk-bg-soft: #F7FAFC;
  --sk-bg-gray: #F1F1F1;

  --sk-font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sk-font-heading: "Oswald", "Arial Narrow", sans-serif;
  --sk-font-btn: "Rubik", "Poppins", sans-serif;

  --sk-radius: 16px;
  --sk-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.05);
  --sk-shadow-lg: 0 15px 25px -7px rgba(0, 0, 0, 0.1);
}

/* ---------- Base typography ---------- */
html, body {
  overflow-x: hidden;
}
body {
  background: var(--sk-bg-soft);
  font-family: var(--sk-font-body);
  color: var(--sk-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--sk-font-heading);
  color: var(--sk-ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}
h1, .display-1, .display-2 { font-weight: 700; }
.display-5 { font-size: 3.2rem; line-height: 1.15; }
h3 { color: var(--sk-ink); }
h5 { font-weight: 600; }
h6 { color: var(--sk-ink-soft); }

.text-primary { color: var(--sk-red) !important; }
.text-danger { color: var(--sk-red-dark) !important; }
.text-success { color: #16813b !important; }
.text-warning { color: #b57d0a !important; }
.text-info { color: #0b6e9c !important; }
.text-muted { color: var(--sk-muted) !important; }
.text-dark { color: var(--sk-ink) !important; }

a { color: var(--sk-red); text-decoration: none; }
a:hover { color: var(--sk-red-dark); }

/* Brand helper classes */
.sk-gradient-text {
  background: var(--sk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sk-eyebrow {
  font-family: var(--sk-font-btn);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sk-red);
}
.sk-section-head .sk-eyebrow { display: block; margin-bottom: .25rem; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sk-font-btn);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all .18s ease;
}
.btn:focus, .btn:active:focus { box-shadow: 0 0 0 .25rem rgba(235, 11, 31, .25); }

.btn-lg {
  padding: .65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  --bs-btn-bg: var(--sk-red);
  --bs-btn-border-color: var(--sk-red);
  --bs-btn-hover-bg: var(--sk-red-dark);
  --bs-btn-hover-border-color: var(--sk-red-dark);
  --bs-btn-active-bg: var(--sk-red-dark);
  --bs-btn-active-border-color: var(--sk-red-dark);
  --bs-btn-disabled-bg: #f0a8ae;
  --bs-btn-disabled-border-color: #f0a8ae;
}
.btn-primary:not(.btn-sm) {
  border-radius: 999px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.btn-primary:hover { box-shadow: var(--sk-shadow-lg); }

.btn-outline-primary {
  --bs-btn-color: var(--sk-red);
  --bs-btn-border-color: var(--sk-red);
  --bs-btn-hover-bg: var(--sk-red);
  --bs-btn-hover-border-color: var(--sk-red);
  --bs-btn-active-bg: var(--sk-red-dark);
  --bs-btn-active-border-color: var(--sk-red-dark);
  border-width: 2px;
}
.btn-outline-primary:not(.btn-sm) { border-radius: 999px; }

.btn-outline-secondary {
  --bs-btn-color: var(--sk-ink);
  --bs-btn-border-color: #d0cfcf;
  --bs-btn-hover-bg: var(--sk-ink);
  --bs-btn-hover-border-color: var(--sk-ink);
  --bs-btn-active-bg: var(--sk-ink);
  --bs-btn-active-border-color: var(--sk-ink);
  border-width: 1.5px;
}

.btn-warning {
  --bs-btn-bg: #FFB020;
  --bs-btn-border-color: #FFB020;
  --bs-btn-color: #3d2c00;
}
.btn-outline-danger { border-width: 1.5px; }
.btn-outline-secondary, .btn-outline-danger { background: transparent; }

.btn:hover { transform: translateY(-1px); }

/* ---------- Navbar ---------- */
.sk-navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid #eee;
}
.sk-navbar .navbar-brand img { height: 40px; width: auto; display: block; }
.sk-navbar .navbar-brand { padding: 0; margin-right: 1.5rem; }
.sk-navbar .nav-link {
  font-family: var(--sk-font-body);
  font-size: .92rem;
  font-weight: 500;
  color: var(--sk-ink) !important;
  padding: .55rem .85rem !important;
  border-radius: 999px;
}
.sk-navbar .nav-link:hover { color: var(--sk-red) !important; background: var(--sk-red-50); }
.sk-navbar .nav-link.dropdown-toggle::after { border-top-color: currentColor; }
.sk-navbar .dropdown-menu {
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, .1);
  padding: .4rem;
  margin-top: .5rem;
}
.sk-navbar .dropdown-item { border-radius: 8px; padding: .5rem .75rem; font-size: .92rem; }
.sk-navbar .dropdown-item:hover, .sk-navbar .dropdown-item.active {
  background: var(--sk-ink); color: #fff;
}
.sk-navbar .navbar-toggler { border: 0; color: var(--sk-ink); box-shadow: none !important; }
.sk-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232a2424' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sk-navbar .btn-nav-login {
  border: 2px solid var(--sk-red);
  color: var(--sk-red) !important;
  background: transparent;
  border-radius: 999px;
  padding: .35rem 1.3rem;
  font-family: var(--sk-font-btn);
  font-weight: 600;
  font-size: .9rem;
}
.sk-navbar .btn-nav-login:hover {
  background: var(--sk-red);
  color: #fff !important;
  box-shadow: var(--sk-shadow-lg);
  transform: translateY(-1px);
}

/* ---------- Hero (homepage) ---------- */
.sk-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(235,11,31,.06), transparent 60%),
    radial-gradient(700px 380px at 95% 20%, rgba(93,26,135,.05), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
  border-radius: 0;
  padding: 4.5rem 0 4rem;
}
.sk-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.sk-hero .lead { color: #55505b !important; max-width: 560px; }
.sk-hero-pills .badge { padding: .45rem .8rem; font-size: .78rem; }

/* hero visual card cluster */
.sk-hero-visual { position: relative; min-height: 360px; }
.sk-hero-visual .float-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--sk-radius);
  box-shadow: 0 20px 40px -18px rgba(42, 36, 36, .18);
  padding: 1rem 1.15rem;
  position: absolute;
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 250px;
}
.sk-hero-visual .fc-1 { top: 0; right: 10%; }
.sk-hero-visual .fc-2 { top: 34%; right: -2%; }
.sk-hero-visual .fc-3 { bottom: 0; left: 2%; }
.sk-hero-visual .fc-ico {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: var(--sk-red-100); color: var(--sk-red);
}
.sk-hero-visual .fc-ico.purple { background: #EFE7F6; color: var(--sk-purple); }
.sk-hero-visual .fc-ico.green { background: #DCF0E4; color: #16813b; }
.sk-hero-visual .fc-txt small { color: var(--sk-muted); }
.sk-hero-visual .ring {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1.5px dashed rgba(93,26,135,.18);
}
.sk-hero-visual .ring.r2 { width: 420px; height: 420px; border-color: rgba(235,11,31,.12); }
.sk-hero-visual .center-chip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sk-red), var(--sk-red-deep));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--sk-font-heading);
  font-size: 2rem; line-height: 1;
  box-shadow: 0 20px 40px -12px rgba(235,11,31,.5);
}
.sk-hero-visual .center-chip small { font-family: var(--sk-font-body); font-size: .72rem; letter-spacing: .12em; }

/* ---------- Cards ---------- */
.card {
  border: 1px solid #eeeeee;
  border-radius: var(--sk-radius);
  background: #fff;
}
.card .card-header {
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  border-radius: var(--sk-radius) var(--sk-radius) 0 0 !important;
}

.sk-product-card { transition: all .22s ease; overflow: hidden; }
.sk-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sk-shadow-lg);
  border-color: #e0e0e0;
}
.sk-product-card:hover .view-details { color: var(--sk-red); }
.view-details { transition: color .18s ease; }

.sk-product-img { height: 190px; object-fit: cover; }
.sk-product-placeholder {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sk-bg-gray), var(--sk-bg-soft));
  color: var(--sk-ink-soft);
  opacity: .8;
  font-size: 4rem;
}
.card .badge { vertical-align: middle; }

.bg-primary { background-color: var(--sk-red) !important; }
.bg-primary-subtle {
  background-color: var(--sk-red-100) !important;
  color: #a60816 !important;
}

.badge {
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .02em;
  padding: .45em .75em;
  border-radius: 999px;
}
.badge.bg-secondary { background-color: #d3d4d8 !important; color: #4a4a50; }
.badge.bg-success { background-color: #16813b !important; }

/* ---------- Forms ---------- */
.form-label { font-weight: 500; color: var(--sk-ink); font-size: .92rem; }
.form-control, .form-select {
  border: 1.5px solid #dedede;
  border-radius: .6rem;
  padding: .55rem .85rem;
  font-family: var(--sk-font-body);
}
.form-control:focus, .form-select:focus {
  border-color: var(--sk-red);
  box-shadow: 0 0 0 .2rem rgba(235, 11, 31, .12);
}
.form-check-input:checked {
  background-color: var(--sk-red);
  border-color: var(--sk-red);
}
.form-check-input:focus { border-color: var(--sk-red); box-shadow: 0 0 0 .2rem rgba(235,11,31,.15); }
.input-group-text { background: var(--sk-bg-soft); border: 1.5px solid #dedede; }

/* ---------- Tables ---------- */
.table { color: var(--sk-body); --bs-table-hover-bg: #FAFAFB; }
.table > :not(caption) > * > * { padding: .8rem .9rem; }
.table thead th {
  font-family: var(--sk-font-body);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sk-ink);
  background: var(--sk-bg-soft);
  border-bottom: 2px solid var(--sk-border) !important;
  white-space: nowrap;
}
.table thead th a { color: inherit; }
.table-light { background-color: var(--sk-bg-soft) !important; }

/* ---------- Sidebar nav ---------- */
.sk-side, .sk-admin-side {
  position: sticky; top: 88px;
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow);
}
.sk-side-nav .nav-link {
  color: #4a4a50;
  padding: .55rem .8rem;
  border-radius: .6rem;
  margin-bottom: 2px;
  font-size: .9rem;
  display: flex; align-items: center; gap: .6rem;
}
.sk-side-nav .nav-link i { font-size: 1.05rem; width: 1.2rem; }
.sk-side-nav .nav-link:hover { background: var(--sk-red-50); color: var(--sk-red); }
.sk-side-nav .nav-link.active { background: var(--sk-ink); color: #fff; }
.sk-side-nav .nav-link.active i { color: #fff; }
.sk-side-nav hr { opacity: .08; }

/* user chip in sidebar */
.sk-user-chip .avatar {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sk-red), var(--sk-purple));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1.1rem;
}

/* ---------- Stats ---------- */
.sk-stat { border-left: 5px solid var(--sk-red); box-shadow: var(--sk-shadow); }
.sk-stat h3, .sk-stat h4 { font-size: 1.8rem; margin: .1rem 0 0; }
.sk-stat i { font-size: 1.4rem; }
.sk-stat small { font-weight: 500; }

/* ---------- Product / plan detail ---------- */
.sk-detail-card, .sk-form-card, .sk-checkout, .sk-summary, .sk-success, .sk-auth-card {
  border-radius: 20px;
  box-shadow: var(--sk-shadow);
  border-color: #efefef;
}
.sk-detail-img { height: 300px; object-fit: cover; border-radius: 20px 20px 0 0; }
.sk-detail-placeholder {
  height: 300px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sk-bg-gray), var(--sk-bg-soft));
  color: var(--sk-ink-soft); font-size: 6rem;
  border-radius: 20px 20px 0 0;
}
.sk-prose { color: #4a4a55; line-height: 1.8; }
.sk-prose b, .sk-prose strong { color: var(--sk-ink); }

.sk-plan-card {
  border: 2px solid #ececec;
  border-radius: 20px;
  transition: all .22s ease;
}
.sk-plan-card:hover {
  border-color: var(--sk-red);
  box-shadow: var(--sk-shadow-lg);
  transform: translateY(-4px);
}
.sk-plan-card .sk-plan-name {
  font-family: var(--sk-font-heading);
  font-size: 1.35rem;
  color: var(--sk-ink);
}
.sk-price-box { padding: 1rem 0; border-bottom: 1px dashed #e4e4e4; }
.sk-price {
  font-family: var(--sk-font-heading);
  font-size: 2.2rem; font-weight: 600;
  color: var(--sk-ink);
}
.sk-price .cur { font-size: 1.2rem; color: var(--sk-red); margin-right: 2px; }
.sk-strike { text-decoration: line-through; color: var(--sk-muted); margin-right: .4rem; font-size: .95rem; }
.sk-features { list-style: none; padding: 0; margin: 1rem 0; }
.sk-features li { padding: .32rem 0; font-size: .9rem; color: #4a4a55; }
.sk-features li i { margin-right: .35rem; }
.sk-product-row { border: 1px solid #eee !important; border-radius: 14px; background: #fff; }

/* ---------- List groups & alerts ---------- */
.list-group-item { border-color: #f0f0f0; padding: .85rem 1rem; }
.list-group-item.active { background: var(--sk-ink); border-color: var(--sk-ink); }

.alert { border: 0; border-radius: 14px; }
.alert-info { background: #E9F2FA; color: #0b5377; }
.alert-success { background: #E2F3E8; color: #11632f; }
.alert-warning { background: #FEF3DC; color: #8a5b05; }
.alert-danger { background: var(--sk-red-50); color: #a60816; }
.alert-light { background: var(--sk-bg-soft); }

/* ---------- Pagination ---------- */
.pagination .page-link { color: var(--sk-ink); border-radius: 999px; margin: 0 2px; border: 1px solid #eee; }
.pagination .page-item.active .page-link { background: var(--sk-red); border-color: var(--sk-red); color: #fff; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: transparent; padding: 0; font-size: .9rem; }
.breadcrumb a { color: var(--sk-muted); }
.breadcrumb a:hover { color: var(--sk-red); }
.breadcrumb-item.active { color: var(--sk-ink); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before { color: #c5c5c5; }

/* ---------- Payment / checkout ---------- */
.list-group-item label { cursor: pointer; }
.list-group-item:has(input:checked) {
  background: var(--sk-red-50);
  border-color: var(--sk-red);
}
.form-check-input { margin-top: 0; }
.form-check-input:checked { background-color: var(--sk-red); border-color: var(--sk-red); }

/* ---------- Footer ---------- */
.sk-footer {
  background: #FFFFFF;
  border-top: 1px solid #f0f0f0;
  color: #353535;
  font-size: .95rem;
}
.sk-footer a { color: var(--sk-ink); }
.sk-footer a:hover { color: var(--sk-red); }
.sk-footer .foot-head {
  font-family: var(--sk-font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--sk-red);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.sk-footer .foot-brand img { height: 42px; }
.sk-footer .foot-bottom {
  border-top: 1px solid #f0f0f0;
  font-size: .85rem;
  color: var(--sk-muted);
}
.sk-footer .foot-link { display: block; padding: .22rem 0; color: #000; font-size: .9rem; }
.sk-footer .foot-link:hover { color: var(--sk-red); }
.sk-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #D5D5D5;
  color: var(--sk-red) !important;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.sk-social:hover { background: var(--sk-red); color: #fff !important; }

/* ---------- Auth pages ---------- */
.sk-auth-card { border-radius: 22px; }
.sk-auth-card .auth-ico {
  width: 64px; height: 64px; margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sk-red), var(--sk-red-deep));
  color: #fff; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -10px rgba(235, 11, 31, .5);
}
.sk-auth-wrap { padding: 2.5rem 0 3rem; }

/* ---------- Misc ---------- */
.text-sm { font-size: .875rem; }
.code, code { color: #b3000f; }
.alert-dismissible .btn-close { filter: none; }

@media (max-width: 991.98px) {
  .sk-hero { padding: 2.5rem 0 2rem; }
  .sk-hero-visual { display: none; }
  .sk-side, .sk-admin-side { position: static; }
}

/* ============================================================
   Home page redesign (matches marketing screenshot)
   ============================================================ */

/* Hero */
.sk-home-hero { padding: 4.5rem 0 3.5rem; background: #fff; }
.sk-home-h1 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  color: var(--sk-ink);
}
.sk-home-h1 .sk-red { color: var(--sk-red); }
.sk-home-tagline {
  font-size: 1.05rem;
  color: #4a4a4a;
  max-width: 30rem;
}
.sk-home-labels { margin-top: .5rem; }
.sk-home-label {
  display: inline-flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 500;
  color: #2a2424;
  line-height: 1.15;
}
.sk-home-label .dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.sk-home-label .dot-red  { background: var(--sk-red); }
.sk-home-label .dot-blue { background: #2b6fe6; }

/* Buttons */
.sk-btn-red {
  background: var(--sk-red);
  color: #fff;
  border: 0;
  padding: .75rem 1.4rem;
  font-weight: 600;
  border-radius: 999px;
}
.sk-btn-red:hover { background: var(--sk-red-dark); color: #fff; }
.sk-btn-outline {
  background: #fff;
  color: var(--sk-ink);
  border: 1.5px solid #d6d6d6;
  padding: .75rem 1.4rem;
  font-weight: 600;
  border-radius: 999px;
}
.sk-btn-outline:hover { background: #f3f3f3; color: var(--sk-ink); }

/* Hero visual (red blob + chips) */
.sk-home-visual {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--sk-red);
  filter: blur(0);
}
.sk-blob-1 {
  width: 380px; height: 380px;
  top: 30px;  right: 110px;
  background: radial-gradient(circle at 30% 30%, #ff4040 0%, var(--sk-red) 70%);
  opacity: .98;
  border-top-left-radius: 60% 70%;
  border-top-right-radius: 50% 60%;
  border-bottom-right-radius: 65% 50%;
  border-bottom-left-radius: 55% 70%;
  transform: rotate(-8deg);
}
.sk-blob-2 {
  width: 260px; height: 260px;
  top: 70px; right: 0;
  background: radial-gradient(circle at 60% 40%, #ff5050 0%, var(--sk-red-dark) 80%);
  opacity: .8;
  border-radius: 48% 52% 50% 50% / 60% 50% 50% 40%;
  transform: rotate(15deg);
}
.sk-blob-3 {
  width: 220px; height: 220px;
  bottom: 30px; right: 60px;
  background: var(--sk-coral);
  opacity: .55;
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  transform: rotate(-20deg);
}

.sk-center-chip {
  position: absolute;
  z-index: 5;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--sk-red);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(235, 11, 31, .35);
  left: 18%; top: 38%;
}
.sk-center-chip .ekart {
  font-family: var(--sk-font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1;
}
.sk-center-chip small {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 3px;
  margin-top: 4px;
  opacity: .9;
}

.sk-float {
  position: absolute;
  z-index: 6;
  background: #fff;
  border-radius: 16px;
  padding: .85rem 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  display: flex; align-items: center; gap: .7rem;
  min-width: 200px;
}
.fc-1 { top: 12%;  right: 0;  }
.fc-2 { top: 41%;  right: -10px; }
.fc-3 { bottom: 12%; right: 18px; }
.fc-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sk-ico-red    { background: var(--sk-red); }
.sk-ico-purple { background: var(--sk-purple); }
.sk-ico-green  { background: #1aa97a; }
.fc-txt small { display: block; line-height: 1.2; margin-top: 2px; }

/* Explore section */
.sk-explore { padding: 3rem 0 5rem; background: #fff; }
.sk-explore-h2 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  letter-spacing: -.5px;
  color: var(--sk-ink);
}
.sk-explore-all {
  color: var(--sk-red);
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
.sk-explore-all:hover { color: var(--sk-red-dark); }

.sk-search .input-group-text,
.sk-search .form-control {
  background: #f7f7f7;
  border: 1px solid #ececec;
  padding: .8rem 1rem;
}
.sk-search .input-group-text { color: #999; border-right: 0; }
.sk-search .form-control { border-left: 0; }
.sk-search .form-control:focus { box-shadow: none; background: #fff; }
.sk-select {
  background: #f7f7f7;
  border: 1px solid #ececec;
  padding: .8rem 1rem;
}

/* Featured card (black) */
.sk-featured-card {
  background: #0e0e0e;
  color: #fff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
  min-height: 340px;
}
.sk-featured-card:hover { transform: translateY(-3px); }
.sk-featured-icon {
  width: 44px; height: 44px;
  background: #1f1f1f;
  color: var(--sk-red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.sk-featured-badge {
  display: inline-block;
  background: var(--sk-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: .3rem .65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.sk-featured-title {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.sk-featured-desc {
  color: #c5c5c5;
  font-size: .9rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}
.sk-featured-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: .7rem 1.3rem;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .5px;
  align-self: flex-start;
  transition: background .15s ease;
}
.sk-featured-cta:hover { background: #fff; color: #0e0e0e; }

/* Plain product card */
.sk-product-card-flat {
  border: 1px solid #ececec;
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sk-product-card-flat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  border-color: var(--sk-red);
}
.sk-product-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fbe9ec;
  color: var(--sk-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.sk-product-name {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.sk-product-tagline { font-size: .85rem; line-height: 1.45; min-height: 3.4em; }
.sk-product-link {
  color: var(--sk-red);
  font-weight: 600;
  font-size: .9rem;
  display: inline-block;
  margin-top: .5rem;
}

@media (max-width: 991.98px) {
  .sk-home-hero { padding: 2.5rem 0 1.5rem; }
  .sk-home-visual { display: none; }
}

/* ============================================================
   NEW HOME PAGE (2026 redesign)
   Three.js hero · stats strip · how-it-works · products · feature showcase · CTA
   Keeps SKUBIQ brand colors: red #EB0B1F · coral #F63D2E · purple #5D1A87
   ============================================================ */

/* ---------- shared page bits ---------- */
.sk-section-h2 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: -.5px;
  color: var(--sk-ink);
}
.sk-section-sub {
  color: #4a4a55;
  max-width: 38rem;
  font-size: 1.02rem;
}
.sk-explore-all {
  color: var(--sk-red);
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
.sk-explore-all:hover { color: var(--sk-red-dark); }

.sk-card-link { display: block; }

/* ---------- hero ---------- */
.sk-hero-new {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background: #fff;
}
.sk-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(680px 360px at 8% 0%,   rgba(235,11,31,.07),  transparent 60%),
    radial-gradient(720px 380px at 100% 30%, rgba(93,26,135,.06),  transparent 60%),
    radial-gradient(520px 320px at 50% 100%, rgba(246,61,46,.05),  transparent 60%);
  pointer-events: none;
}
.sk-hero-new .container { z-index: 2; }

.sk-hero-new-title {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  color: var(--sk-ink);
}
.sk-hero-new-title .sk-red { color: var(--sk-red); }
.sk-hero-new-tag {
  font-size: 1.08rem;
  color: #4a4a55;
  max-width: 32rem;
  line-height: 1.6;
}

.sk-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sk-red);
  box-shadow: 0 0 0 4px rgba(235,11,31,.15);
}

.sk-hero-trust .sk-trust {
  display: inline-flex; align-items: flex-start; gap: .55rem;
  font-size: .9rem; line-height: 1.2;
  color: var(--sk-ink);
}
.sk-hero-trust .sk-trust small { color: var(--sk-muted); font-weight: 500; }
.sk-trust-dot {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex: 0 0 auto;
}
.sk-trust-dot-red    { background: var(--sk-red); }
.sk-trust-dot-purple { background: var(--sk-purple); }
.sk-trust-dot-green  { background: #16813b; }
.sk-trust-dot-blue   { background: #2b6fe6; }

/* buttons */
.sk-btn-ghost {
  background: transparent;
  color: var(--sk-ink);
  border: 1.5px solid #d6d6d6;
  padding: .75rem 1.4rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all .18s ease;
}
.sk-btn-ghost:hover {
  background: var(--sk-ink);
  color: #fff;
  border-color: var(--sk-ink);
  transform: translateY(-1px);
}

/* hero 3D wrap */
.sk-hero-3d-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(235,11,31,.08), transparent 70%),
    linear-gradient(160deg, #fdf6f7 0%, #fbf5f9 60%, #f5f3ff 100%);
  border: 1px solid #f1eaee;
  box-shadow: 0 30px 60px -30px rgba(42,36,36,.18);
}
.sk-hero-3d-wrap canvas { width: 100% !important; height: 100% !important; }

/* floating chips over the 3D canvas */
.sk-hero-chip {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  border: 1px solid #f1ecec;
  border-radius: 16px;
  padding: .8rem 1rem;
  box-shadow: 0 18px 36px -18px rgba(42,36,36,.22);
  display: flex; align-items: center; gap: .75rem;
  min-width: 200px;
  backdrop-filter: blur(6px);
}
.sk-hero-chip-1 { top: 8%;   left: -4%; animation: skBob 6s ease-in-out infinite; }
.sk-hero-chip-2 { top: 44%;  right: -4%; animation: skBob 7s ease-in-out infinite reverse; }
.sk-hero-chip-3 { bottom: 8%; left: 18%;  animation: skBob 8s ease-in-out infinite; }
@keyframes skBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.sk-chip-ico {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
}
.sk-chip-ico-red    { background: var(--sk-red); }
.sk-chip-ico-purple { background: var(--sk-purple); }
.sk-chip-ico-green  { background: #16813b; }
.sk-chip-txt small { display: block; line-height: 1.2; margin-top: 1px; }

.sk-hero-badge {
  position: absolute;
  z-index: 4;
  bottom: 12%;
  right: 8%;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sk-red), var(--sk-red-dark));
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 18px 36px -10px rgba(235,11,31,.55);
  font-family: var(--sk-font-heading);
}
.sk-hero-badge .ekart { font-size: 1.45rem; font-weight: 700; line-height: 1; }
.sk-hero-badge small  { font-size: .68rem; letter-spacing: 2px; margin-top: 4px; opacity: .9; }

/* ---------- stats strip ---------- */
.sk-stats-strip {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--sk-bg-soft) 100%);
}
.sk-stat-tile {
  text-align: center;
  padding: 1.4rem 1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sk-stat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -16px rgba(42,36,36,.16);
}
.sk-stat-num {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--sk-red);
  line-height: 1;
}
.sk-stat-num-purple { color: var(--sk-purple); }
.sk-stat-num-green  { color: #16813b; }
.sk-stat-num-coral  { color: var(--sk-coral); }
.sk-stat-lbl {
  font-family: var(--sk-font-body);
  font-size: .82rem;
  color: var(--sk-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .4rem;
}

/* ---------- how it works ---------- */
.sk-how { padding: 4.5rem 0 3rem; background: var(--sk-bg-soft); }
.sk-how-steps { position: relative; }
.sk-how-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sk-how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -18px rgba(42,36,36,.16);
  border-color: var(--sk-red);
}
.sk-how-card-mid { border-top: 3px solid var(--sk-red); }
.sk-how-num {
  font-family: var(--sk-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sk-red);
  opacity: .12;
  line-height: 1;
  margin-bottom: .6rem;
}
.sk-how-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--sk-red-50);
  color: var(--sk-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.sk-how-card h5 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--sk-ink);
}

/* ---------- products section ---------- */
.sk-products-section { padding: 4.5rem 0 4rem; background: #fff; }

.sk-product-card-new {
  border: 1px solid #ececec;
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
}
.sk-product-card-new::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(235,11,31,.04), rgba(93,26,135,.04));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.sk-product-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(42,36,36,.18);
  border-color: var(--sk-red);
}
.sk-product-card-new:hover::before { opacity: 1; }
.sk-product-card-new .card-body { position: relative; z-index: 1; }

.sk-product-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sk-red-50), #fff);
  color: var(--sk-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--sk-red-100);
}
.sk-plans-pill {
  background: var(--sk-bg-soft);
  color: var(--sk-ink-soft);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.sk-product-name {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.sk-product-tagline { font-size: .88rem; line-height: 1.5; min-height: 3.6em; }
.sk-product-foot {
  display: flex; align-items: center;
  border-top: 1px dashed #eee;
  padding-top: .8rem; margin-top: .2rem;
}
.sk-product-link {
  color: var(--sk-red);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s ease;
}
.sk-product-card-new:hover .sk-product-link { gap: .55rem; }

/* ---------- featured card (kept style) ---------- */
.sk-featured-card {
  background: #0e0e0e;
  color: #fff;
  border-radius: 22px;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.sk-featured-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,11,31,.25), transparent 60%);
  pointer-events: none;
}
.sk-featured-card > * { position: relative; z-index: 1; }
.sk-featured-card:hover { transform: translateY(-4px); }
.sk-featured-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.sk-featured-icon {
  width: 46px; height: 46px;
  background: #1f1f1f;
  color: var(--sk-red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.sk-featured-badge {
  display: inline-block;
  background: var(--sk-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.sk-featured-title {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: .8rem;
}
.sk-featured-desc {
  color: #c5c5c5;
  font-size: .9rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}
.sk-featured-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: .7rem 1.3rem;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .6px;
  align-self: flex-start;
  transition: background .15s ease;
}
.sk-featured-cta:hover { background: #fff; color: #0e0e0e; }

/* ---------- feature showcase ---------- */
.sk-feature-showcase {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--sk-bg-soft) 0%, #fff 100%);
}
.sk-feature-3d-wrap {
  width: 100%;
  height: 460px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(93,26,135,.07), transparent 70%),
    linear-gradient(160deg, #f7f5ff 0%, #fff 60%, #fdf6f7 100%);
  border: 1px solid #ece6f1;
  box-shadow: 0 30px 60px -30px rgba(93,26,135,.18);
}
.sk-feature-3d-wrap canvas { width: 100% !important; height: 100% !important; }

.sk-feature-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 1.1rem;
}
.sk-feature-list li {
  display: flex; gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sk-feature-list li:hover {
  transform: translateX(3px);
  border-color: var(--sk-red);
  box-shadow: 0 12px 24px -14px rgba(42,36,36,.16);
}
.sk-feature-list li p { font-size: .9rem; }
.sk-feature-ico {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
}
.sk-feature-ico-red    { background: linear-gradient(135deg, var(--sk-red), var(--sk-coral)); }
.sk-feature-ico-purple { background: linear-gradient(135deg, var(--sk-purple), #8a2bb3); }
.sk-feature-ico-green  { background: linear-gradient(135deg, #16813b, #1aa97a); }
.sk-feature-ico-coral  { background: linear-gradient(135deg, var(--sk-coral), #ff7868); }

/* ---------- CTA band ---------- */
.sk-cta-band {
  padding: 3rem 0 5rem;
  background: #fff;
}
.sk-cta-card {
  background: linear-gradient(135deg, #0e0e0e 0%, #1f1f1f 50%, #2a0e10 100%);
  border-radius: 24px;
  padding: 2.4rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sk-cta-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,11,31,.45), transparent 60%);
  pointer-events: none;
}
.sk-cta-card > * { position: relative; z-index: 1; }
.sk-eyebrow-light {
  color: var(--sk-coral);
}
.sk-cta-h {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}
.sk-cta-sub { color: #c5c5c5; }
.sk-btn-light {
  background: #fff;
  color: var(--sk-ink);
  border: 0;
  padding: .75rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all .18s ease;
}
.sk-btn-light:hover {
  background: var(--sk-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(235,11,31,.5);
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .sk-hero-new { padding: 3rem 0 2rem; }
  .sk-hero-3d-wrap { height: 380px; }
  .sk-feature-3d-wrap { height: 320px; }
  .sk-hero-chip-1 { left: 0; }
  .sk-hero-chip-2 { right: 0; }
  .sk-hero-chip-3 { left: 8%; }
}
@media (max-width: 575.98px) {
  .sk-hero-3d-wrap { height: 320px; }
  .sk-hero-chip { min-width: 170px; padding: .65rem .8rem; font-size: .85rem; }
  .sk-hero-chip-1 { left: -2%; top: 4%; }
  .sk-hero-chip-2 { right: -2%; top: 42%; }
  .sk-hero-chip-3 { left: 4%; bottom: 6%; }
  .sk-hero-badge { width: 72px; height: 72px; bottom: 4%; right: 4%; }
  .sk-hero-badge .ekart { font-size: 1.1rem; }
  .sk-hero-badge small  { font-size: .58rem; letter-spacing: 1.4px; }
}

/* ============================================================
   HOME V3 (2026 redesign, seewhateyesee-inspired)
   Layered reveal · marquee · giant display type · SVG-morph CTA
   ============================================================ */

/* ---------- magnetic cursor ---------- */
.sk-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
}
.sk-cursor-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sk-red);
  transform: translate(-50%, -50%);
}
.sk-cursor-ring {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sk-red);
  transform: translate(-50%, -50%);
  transition: width .25s cubic-bezier(.19,1,.22,1), height .25s cubic-bezier(.19,1,.22,1), border-color .25s ease, background .25s ease;
}
.sk-cursor.is-hover .sk-cursor-ring {
  width: 64px; height: 64px;
  background: rgba(235,11,31,.12);
  border-color: var(--sk-coral);
}
.sk-cursor.is-down .sk-cursor-ring {
  width: 28px; height: 28px;
}
@media (hover: hover) and (pointer: fine) {
  .sk-cursor { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .sk-cursor { display: none !important; }
}
.sk-cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,11,31,.22), rgba(235,11,31,.06) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  will-change: transform;
}
@media (max-width: 768px) { .sk-cursor-blob { display: none; } }

/* ============================================================
   SCROLL-PINNED SUPPLY-CHAIN STORY (3D narrative)
   ============================================================ */
.sk-story {
  position: relative;
  background: #0a0a0a;
  /* section is 5x viewport tall — GSAP pins it and scrubs the timeline */
  height: 500vh;
}
.sk-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.25) 35%, rgba(10,10,10,.25) 65%, rgba(10,10,10,.65) 100%);
  z-index: 2;
  pointer-events: none;
}
.sk-story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sk-story-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 3;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: multiply;
}
.sk-story-scenes {
  position: absolute; inset: 0;
  z-index: 2;
  overflow: hidden;
  background: #0a0a0a;
}
.sk-story-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* resting state: heavy blur + scaled-up + shifted off-axis = unmistakably "in transit" */
  transform: translate3d(0, 0, 0) scale(1.4);
  filter: blur(28px) saturate(1.4) brightness(1.2) hue-rotate(-12deg);
  transition:
    opacity   2.2s cubic-bezier(.65,.05,.36,1),
    transform 2.6s cubic-bezier(.22,1,.36,1),
    filter    2.2s cubic-bezier(.65,.05,.36,1);
  will-change: opacity, transform, filter;
}
/* Per-stage entrance direction so each scene feels like a new cut */
.sk-story-scene-1 { transform-origin: 25% 50%; }
.sk-story-scene-2 { transform-origin: 75% 50%; }
.sk-story-scene-3 { transform-origin: 50% 30%; }
.sk-story-scene-4 { transform-origin: 25% 70%; }
.sk-story-scene-5 { transform-origin: 50% 50%; }
.sk-story-scene.sk-story-scene-2:not(.is-active) { transform: translate3d(18%,  0,   0) scale(1.4); }
.sk-story-scene.sk-story-scene-3:not(.is-active) { transform: translate3d(0,   -14%, 0) scale(1.4); }
.sk-story-scene.sk-story-scene-4:not(.is-active) { transform: translate3d(-18%, 0,   0) scale(1.4); }
.sk-story-scene.sk-story-scene-5:not(.is-active) { transform: translate3d(0,    14%, 0) scale(1.4); }
.sk-story-scene.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1.1) brightness(.95) hue-rotate(0deg);
}
/* Edge-flash overlay: a brand-coloured radial glow that pulses across the cut */
.sk-story-flash {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background: radial-gradient(closest-side at 50% 50%,
              rgba(235, 11, 31, .55) 0%,
              rgba(235, 11, 31, .25) 35%,
              rgba(93, 26, 135, .12) 60%,
              transparent 80%);
  opacity: 0;
  transition: opacity 1.0s ease-out;
  mix-blend-mode: screen;
}
.sk-story-flash.is-pulsing { opacity: 1; transition: opacity .15s ease-out; }
/* Drop the canvas over the new scene a moment after the crossfade starts */
.sk-story-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 3;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: multiply;
  transition: opacity 1.6s cubic-bezier(.65,.05,.36,1);
}
.sk-story-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(closest-side at 50% 50%, transparent 55%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 20%, transparent 80%, rgba(0,0,0,.55) 100%);
}

.sk-story-stage {
  position: absolute;
  z-index: 4;
  left: 6%;
  top: 50%;
  transform: translateY(-50%) translateX(-80px);
  max-width: 460px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity   1.6s cubic-bezier(.22,1,.36,1) .25s,
    transform 1.8s cubic-bezier(.22,1,.36,1) .25s;
  will-change: opacity, transform;
}
.sk-story-stage.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.sk-story-stage.is-left {
  transform: translateY(-50%) translateX(-50px);
}
.sk-story-step {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .25em;
  color: var(--sk-coral);
  display: inline-block;
  margin-bottom: .9rem;
  padding: .3rem .8rem;
  border: 1.5px solid rgba(246,61,46,.4);
  border-radius: 999px;
  background: rgba(246,61,46,.08);
}
.sk-story-eyebrow {
  display: block;
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .35em;
  color: rgba(255,255,255,.7);
  margin-bottom: .8rem;
}
.sk-story-h {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin: 0 0 1rem;
}
.sk-story-p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 38rem;
}

/* progress rail */
.sk-story-rail {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255,255,255,.08);
  z-index: 4;
}
.sk-story-rail-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sk-red), var(--sk-coral), var(--sk-purple));
  transition: width .15s linear;
}

/* dot indicators */
.sk-story-dots {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sk-story-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s ease, transform .3s ease;
}
.sk-story-dot.is-active {
  background: var(--sk-red);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(235,11,31,.25);
}

@media (max-width: 991.98px) {
  .sk-story-stage { left: 5%; max-width: 86%; }
  .sk-story-dots { right: 4%; }
}
@media (prefers-reduced-motion: reduce) {
  .sk-story-stage { opacity: 1 !important; transform: none !important; }
}

/* ---------- hero v3 ---------- */
.sk-hero-v3 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3rem;
  background: #fff;
  isolation: isolate;
}
.sk-hero-bg-v3 {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(720px 380px at 10% 0%,   rgba(235,11,31,.08),  transparent 60%),
    radial-gradient(620px 340px at 100% 20%, rgba(93,26,135,.06),  transparent 60%),
    radial-gradient(420px 280px at 60% 100%, rgba(246,61,46,.06),  transparent 60%);
  pointer-events: none;
}
.sk-hero-v3-container { position: relative; z-index: 2; }

.sk-display {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .96;
  letter-spacing: -.02em;
  color: var(--sk-ink);
  margin: 1rem 0 1.2rem;
  text-transform: uppercase;
}
.sk-display-line { display: block; }
.sk-display-em { font-style: normal; color: var(--sk-red); }
.sk-display .sk-display-line-2 { padding-left: .12em; }
.sk-display .sk-display-line-1 { padding-left: 0; }

/* --- text cycle stack --- */
.sk-hero-stack {
  position: relative;
  min-height: 4.4em;
  max-width: 38rem;
  margin-bottom: .5rem;
}
.sk-hero-stack-grid {
  position: relative;
  display: grid;
}
.sk-hero-stack-grid > * { grid-area: 1 / 1; }
.sk-stack-item {
  margin: 0;
  font-size: 1.08rem;
  color: #4a4a55;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s cubic-bezier(.19,1,.22,1), transform .8s cubic-bezier(.19,1,.22,1);
}
.sk-stack-item.is-active { opacity: 1; transform: none; }
.sk-stack-item em { color: var(--sk-ink); font-style: normal; font-weight: 600; }

/* ---------- SVG morph CTA ---------- */
.sk-cta-pill {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.sk-cta-pill-shape {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  height: 64px;
  padding: 0 1.6rem;
  color: #fff;
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}
.sk-cta-pill-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.sk-cta-path { transition: d .55s cubic-bezier(.19,1,.22,1), stroke-width .3s ease; }
.sk-cta-pill-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.19,1,.22,1), background .25s ease;
}
.sk-cta-pill:hover .sk-cta-pill-icon { transform: translateX(4px); background: rgba(255,255,255,.32); }

.sk-link-arrow {
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--sk-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s ease, transform .25s ease;
}
.sk-link-arrow:hover { color: var(--sk-red); transform: translateX(3px); }

/* ---------- trust bar ---------- */
.sk-trust-bar {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px dashed #e7e3e3;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.sk-trust-bar-item {
  display: inline-flex; align-items: flex-start; gap: .55rem;
  font-size: .9rem; line-height: 1.2;
  color: var(--sk-ink);
}
.sk-trust-bar-item small { color: var(--sk-muted); font-weight: 500; }
.sk-trust-bar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 auto;
}
.sk-trust-bar-dot-red    { background: var(--sk-red); }
.sk-trust-bar-dot-purple { background: var(--sk-purple); }
.sk-trust-bar-dot-green  { background: #16813b; }
.sk-trust-bar-dot-blue   { background: #2b6fe6; }

/* ---------- 3D wrap inside hero (smaller for v3 split) ---------- */
.sk-hero-3d-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(235,11,31,.10), transparent 70%),
    linear-gradient(160deg, #fdf6f7 0%, #fbf5f9 60%, #f5f3ff 100%);
  border: 1px solid #f1eaee;
  box-shadow: 0 30px 60px -30px rgba(42,36,36,.18);
}
.sk-hero-3d-wrap canvas { width: 100% !important; height: 100% !important; display: block; }

/* ---------- marquee strip ---------- */
.sk-marquee {
  position: absolute;
  top: 1.6rem;
  left: 0; right: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.sk-marquee-track {
  display: inline-flex; align-items: center; gap: 1rem;
  white-space: nowrap;
  animation: skMarquee 38s linear infinite;
  will-change: transform;
}
.sk-marquee-item {
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .15em;
  color: var(--sk-ink-soft);
  display: inline-flex; align-items: center; gap: 1rem;
  padding: .55rem 0;
}
.sk-marquee-dot { color: var(--sk-red); font-size: .8rem; }
@keyframes skMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sk-marquee-track { animation: none; }
}

/* ---------- stats v3 ---------- */
.sk-stats-v3 {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--sk-bg-soft) 100%);
}
.sk-stat-v3 {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 1.6rem 1.2rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.sk-stat-v3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--sk-red);
  transition: width .35s ease;
}
.sk-stat-v3:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -16px rgba(42,36,36,.16); border-color: var(--sk-red); }
.sk-stat-v3:hover::after { width: 100%; }
.sk-stat-v3-num {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  color: var(--sk-red);
  line-height: 1;
}
.sk-stat-v3-num-purple { color: var(--sk-purple); }
.sk-stat-v3-num-green  { color: #16813b; }
.sk-stat-v3-num-coral  { color: var(--sk-coral); }
.sk-stat-v3-lbl {
  font-family: var(--sk-font-body);
  font-size: .8rem;
  color: var(--sk-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .55rem;
}

/* ---------- pillars ---------- */
.sk-pillars {
  padding: 4.5rem 0 4rem;
  background: #fff;
}
.sk-text-3d {
  background: linear-gradient(180deg, var(--sk-ink) 0%, #4a4a55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sk-pillar {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sk-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sk-red), var(--sk-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.19,1,.22,1);
  z-index: 2;
}
.sk-pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -20px rgba(42,36,36,.20); border-color: var(--sk-red); }
.sk-pillar:hover::before { transform: scaleX(1); }
.sk-pillar-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #faf6f7 0%, #f5f1f5 100%);
  overflow: hidden;
}
.sk-pillar-media img,
.sk-pillar-anim {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.19,1,.22,1);
}
.sk-pillar:hover .sk-pillar-anim { transform: scale(1.04); }

/* per-pillar 3D canvas */
.sk-pillar-3d {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 1;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: multiply;
}
.sk-pillar-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  filter: saturate(1.12) brightness(1.0);
  transition: opacity .6s ease, transform .55s cubic-bezier(.19,1,.22,1);
}
.sk-pillar:hover .sk-pillar-fallback { transform: scale(1.05); }
.sk-pillar-media {
  /* light theme background — the SVG provides visual */
  background: linear-gradient(160deg, #faf6f7 0%, #f1eaee 100%) !important;
}

/* ---------- LIVE indicator ---------- */
.sk-live-tag {
  position: absolute;
  bottom: .7rem; left: .7rem;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .55rem;
  background: rgba(15,15,15,.78);
  color: #fff;
  border-radius: 999px;
  font-family: var(--sk-font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.sk-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22d36b;
  box-shadow: 0 0 0 0 rgba(34,211,107,.6);
  animation: skLivePulse 1.6s ease-out infinite;
}
@keyframes skLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,211,107,.65); }
  70%  { box-shadow: 0 0 0 8px rgba(34,211,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,211,107,0); }
}

/* ---------- WMS scanline ---------- */
.sk-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(235,11,31,.0) 20%, rgba(235,11,31,.95) 50%, rgba(235,11,31,.0) 80%, transparent 100%);
  animation: skScan 3.5s linear infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes skScan {
  0%   { transform: translateY(0);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ---------- TMS motion trail ---------- */
.sk-trail {
  position: absolute;
  bottom: 26%; left: 6%;
  width: 22%; height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(235,11,31,.85) 100%);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
  filter: blur(.5px);
  animation: skTrail 1.8s ease-in-out infinite;
}
.sk-trail::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, #fff 100%);
  border-radius: 2px;
  animation: skTrailHead 1.8s ease-in-out infinite;
}
@keyframes skTrail {
  0%   { transform: translateX(-30%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(140%); opacity: 0; }
}
@keyframes skTrailHead {
  0%   { transform: translateX(0); }
  100% { transform: translateX(300%); }
}

/* ---------- LMS animated chart line (SVG) ---------- */
.sk-pulse-line {
  position: absolute;
  bottom: 8%; left: 5%;
  width: 60%; height: 22%;
  z-index: 2;
  pointer-events: none;
}
.sk-pulse-line path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: skDrawLine 3.2s ease-in-out infinite;
}
@keyframes skDrawLine {
  0%   { stroke-dashoffset: 600; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* ---------- eKart floating orbs (order badges) ---------- */
.sk-orb {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sk-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(235,11,31,.55);
  z-index: 3;
}
.sk-orb--ekart {
  top: 18%; right: 14%;
  animation: skOrb 3.6s ease-in-out infinite;
}
.sk-orb--ekart::before { content: '+1'; }
.sk-orb--ekart-2 {
  top: 42%; right: 8%;
  width: 18px; height: 18px;
  background: var(--sk-purple);
  animation: skOrb 4.2s ease-in-out infinite reverse;
}
.sk-orb--ekart-2::before { content: '✦'; font-size: .68rem; }
@keyframes skOrb {
  0%, 100% { transform: translateY(0)   scale(1);   opacity: .9; }
  50%      { transform: translateY(-10px) scale(1.1); opacity: 1; }
}

/* ---------- HRMS live counter ---------- */
.sk-counter {
  position: absolute;
  top: .7rem; right: .7rem;
  display: flex; flex-direction: column; align-items: flex-end;
  padding: .4rem .65rem;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  box-shadow: 0 6px 14px -4px rgba(42,36,36,.18);
  z-index: 3;
}
.sk-counter-num {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: .85rem;
  color: var(--sk-red);
  line-height: 1;
}
.sk-counter-lbl {
  font-size: .55rem;
  color: var(--sk-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* ---------- CRM deal card ---------- */
.sk-deal-card {
  position: absolute;
  bottom: .8rem; right: .8rem;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .65rem;
  background: #fff;
  border-radius: 10px;
  font-family: var(--sk-font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sk-ink);
  box-shadow: 0 6px 14px -4px rgba(42,36,36,.18);
  z-index: 3;
  animation: skDealIn 5s ease-in-out infinite;
  white-space: nowrap;
}
.sk-deal-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sk-red);
  animation: skLivePulse 1.6s ease-out infinite;
}
@keyframes skDealIn {
  0%   { transform: translateX(110%); opacity: 0; }
  10%  { transform: translateX(0);    opacity: 1; }
  85%  { transform: translateX(0);    opacity: 1; }
  100% { transform: translateX(-110%); opacity: 0; }
}
.sk-pillar-num {
  position: absolute;
  top: .8rem; left: .8rem;
  display: inline-block;
  padding: .25rem .7rem;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--sk-red);
  box-shadow: 0 4px 12px -4px rgba(42,36,36,.18);
}
.sk-pillar-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.sk-pillar-title {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: .4rem;
  color: var(--sk-ink);
}
.sk-pillar-desc { font-size: .9rem; color: #4a4a55; line-height: 1.55; flex-grow: 1; }
.sk-pillar-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.1rem;
  color: var(--sk-red);
  font-family: var(--sk-font-heading);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap .2s ease, color .2s ease;
}
.sk-pillar-link:hover { gap: .6rem; color: var(--sk-red-dark); }

/* ---------- how v3 (sticky layout) ---------- */
.sk-how-v3 {
  padding: 4.5rem 0;
  background: var(--sk-bg-soft);
}
.sk-how-v3-sticky {
  position: sticky; top: 90px;
  align-self: flex-start;
}
.sk-how-v3-3d {
  width: 100%;
  height: 260px;
  margin-top: 1.6rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(93,26,135,.10), transparent 70%),
    linear-gradient(160deg, #f7f5ff 0%, #fff 60%, #fdf6f7 100%);
  border: 1px solid #ece6f1;
  box-shadow: 0 30px 60px -30px rgba(93,26,135,.18);
  position: relative;
}
.sk-how-v3-3d canvas { width: 100% !important; height: 100% !important; display: block; position: relative; z-index: 2; }
.sk-how-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
  opacity: .55;
}
.sk-how-v3-list { display: grid; gap: 1.2rem; }
.sk-how-v3-step {
  display: flex; gap: 1.4rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sk-how-v3-step:hover { transform: translateX(4px); border-color: var(--sk-red); box-shadow: 0 20px 40px -18px rgba(42,36,36,.14); }
.sk-how-v3-marker {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--sk-red);
  line-height: 1;
  opacity: .25;
  flex: 0 0 auto;
}
.sk-how-v3-step h5 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: .35rem;
}
.sk-how-v3-step p { color: #4a4a55; font-size: .95rem; margin: 0; }

/* ---------- products v3 ---------- */
.sk-products-v3 { padding: 4.5rem 0 4rem; background: #fff; }

.sk-product-card-v3 {
  border: 1px solid #ececec;
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
}
.sk-product-card-v3::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(235,11,31,.04), rgba(93,26,135,.04));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.sk-product-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(42,36,36,.18);
  border-color: var(--sk-red);
}
.sk-product-card-v3:hover::before { opacity: 1; }
.sk-product-card-v3 .card-body { position: relative; z-index: 1; }

.sk-product-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sk-red-50), #fff);
  color: var(--sk-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--sk-red-100);
}
.sk-plans-pill {
  background: var(--sk-bg-soft);
  color: var(--sk-ink-soft);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.sk-product-name {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.sk-product-tagline { font-size: .88rem; line-height: 1.5; min-height: 3.6em; }
.sk-product-foot {
  display: flex; align-items: center;
  border-top: 1px dashed #eee;
  padding-top: .8rem; margin-top: .2rem;
}
.sk-product-link {
  color: var(--sk-red);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s ease;
}
.sk-product-card-v3:hover .sk-product-link { gap: .55rem; }

/* featured card v3 */
.sk-featured-card-v3 {
  background: #0e0e0e;
  color: #fff;
  border-radius: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.sk-featured-card-v3::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,11,31,.25), transparent 60%);
  pointer-events: none;
}
.sk-featured-card-v3 > * { position: relative; z-index: 1; }
.sk-featured-card-v3:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -22px rgba(235,11,31,.4); }
.sk-featured-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.sk-featured-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, #0e0e0e 100%);
}
.sk-featured-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.19,1,.22,1);
  animation: skFloatYSm 7s ease-in-out infinite;
}
.sk-featured-card-v3:hover .sk-featured-media img { transform: scale(1.06); }
.sk-featured-body { padding: 1.4rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.sk-featured-badge {
  display: inline-block;
  background: var(--sk-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: .3rem .65rem;
  border-radius: 999px;
  align-self: flex-start;
}
.sk-featured-title {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: .7rem 0 .8rem;
}
.sk-featured-desc {
  color: #c5c5c5;
  font-size: .9rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}
.sk-featured-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: .7rem 1.3rem;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .6px;
  align-self: flex-start;
  transition: background .15s ease, gap .2s ease;
}
.sk-featured-cta:hover { background: #fff; color: #0e0e0e; gap: .75rem; }

/* product card v3 image (top banner inside the card) */
.sk-product-card-v3 .sk-product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, #faf6f7 0%, #f5f1f5 100%);
  position: relative;
}
.sk-product-card-v3 .sk-product-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.19,1,.22,1);
}
.sk-product-card-v3:hover .sk-product-media img { transform: scale(1.05); }
.sk-product-pill {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(255,255,255,.92);
  color: var(--sk-ink);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px -4px rgba(42,36,36,.18);
  z-index: 2;
}
.sk-product-media-fallback {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #faf6f7 0%, #f5f1f5 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* hero poster image (behind Three.js canvas) */
.sk-hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: inherit;
  opacity: .9;
  pointer-events: none;
  animation: skFloatY 9s ease-in-out infinite;
}
.sk-hero-3d-wrap .sk-three-host { z-index: 2; position: relative; }

/* ---------- CTA v3 ---------- */
.sk-cta-v3 {
  padding: 3rem 0 5rem;
  background: #fff;
}
.sk-cta-card-v3 {
  background: linear-gradient(135deg, #0e0e0e 0%, #1f1f1f 50%, #2a0e10 100%);
  border-radius: 28px;
  padding: 2.6rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sk-cta-card-v3::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,11,31,.45), transparent 60%);
  pointer-events: none;
}
.sk-cta-card-v3 > * { position: relative; z-index: 1; }
.sk-eyebrow-light { color: var(--sk-coral); }
.sk-cta-h-v3 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}
.sk-cta-sub-v3 { color: #c5c5c5; }
.sk-btn-light {
  background: #fff;
  color: var(--sk-ink);
  border: 0;
  padding: .75rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  transition: all .18s ease;
}
.sk-btn-light:hover {
  background: var(--sk-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(235,11,31,.5);
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .sk-hero-v3 { padding: 5rem 0 2rem; }
  .sk-display { font-size: clamp(2.5rem, 8vw, 4rem); }
  .sk-hero-3d-wrap { height: 320px; }
  .sk-how-v3-3d { height: 220px; }
  .sk-how-v3-sticky { position: static; }
  .sk-trust-bar { margin-top: 2.5rem; gap: 1.6rem; }
  .sk-marquee { top: 1rem; }
}
@media (max-width: 575.98px) {
  .sk-hero-v3 { padding: 4rem 0 1.5rem; }
  .sk-display { font-size: 2.4rem; }
  .sk-hero-3d-wrap { height: 260px; }
  .sk-marquee { display: none; }
}
