/* ==========================================================================
   SSKNEXUS Homepage v5.15.1 — Premium polish
   ========================================================================== */

.hp-main {
  overflow-x: hidden;
}

.hp-app {
  min-height: 100vh;
  background: #fff;
  color: #0a1128;
  overflow-x: hidden;
}

.hp-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.hp-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}

.hp-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  position: relative;
}

.hp-nav-inner > .ssk-logo-link,
.hp-nav-inner > .ssk-logo {
  flex-shrink: 0;
  min-width: 0;
  max-width: min(240px, 42vw);
}

.hp-nav .ssk-logo--compact {
  gap: 10px;
}

.hp-nav .ssk-logo-custom {
  max-height: 40px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.hp-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: space-between;
}

.hp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.hp-nav-links > a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}

.hp-nav-links > a:hover,
.hp-nav-links > a.is-active {
  color: #2563eb;
  background: #eff6ff;
}

.hp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.hp-lang {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.hp-nav-login {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
}

.hp-nav-login:hover { color: #2563eb; }

.hp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  margin-left: auto;
}

.hp-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0a1128;
  border-radius: 2px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  padding: 48px 0 24px;
  overflow: hidden;
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 5%, rgba(37,99,235,0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(14,165,233,0.1), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #fff 70%);
  pointer-events: none;
}

.hp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 16px;
}

.hp-hero-title {
  margin: 0 0 20px;
  font-size: clamp(40px, 5.8vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #0a1128;
}

.hp-hero-highlight {
  display: block;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.08));
  border: 1px solid rgba(37,99,235,0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2563eb;
  text-transform: uppercase;
}

.hp-hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}

.hp-hero-lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
  max-width: 480px;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hp-btn-arrow { gap: 6px; }

.hp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 480px;
}

.hp-hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}

.hp-hero-stat-icon { font-size: 22px; }
.hp-hero-stat-value { display: block; font-size: 20px; font-weight: 800; color: #0a1128; letter-spacing: -0.03em; }
.hp-hero-stat-label { font-size: 12px; font-weight: 600; color: #64748b; }

/* Statistics section */
.hp-stats-section {
  padding: 32px 0 48px;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hp-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 8px 28px rgba(15,23,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37,99,235,0.1);
}

/* Mockup */
.hp-hero-visual {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-mockup-stack {
  width: 100%;
  max-height: 500px;
}

.hp-hero-photo {
  width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(15,23,42,0.14);
  border: 1px solid rgba(226,232,240,0.95);
}

.hp-hero-art {
  position: absolute;
  inset: -12px -20px auto -20px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
}

.hp-hero-art-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.hp-hero-mockup-wrap {
  position: relative;
  z-index: 2;
}

.hp-mockup {
  position: relative;
  width: 100%;
  max-height: 480px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}

.hp-mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

.hp-mockup--compact {
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) scale(0.75);
  transform-origin: center center;
  max-height: 375px;
}

.hp-hero-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 36px rgba(15,23,42,0.12);
  animation: hpFloat 5s ease-in-out infinite;
  white-space: nowrap;
}

.hp-hero-badge-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  font-size: 14px;
}

.hp-hero-badge--billing { top: 8%; left: -4%; animation-delay: 0s; }
.hp-hero-badge--access { bottom: 16%; left: 0; animation-delay: 1s; }
.hp-hero-badge--live { top: 40%; right: -6%; animation-delay: 2s; }

@keyframes hpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hp-mockup-window {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 40px 100px rgba(15,23,42,0.15), 0 0 0 1px rgba(37,99,235,0.08);
  overflow: hidden;
}

.hp-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 11px;
  color: #94a3b8;
}

.hp-dot { width: 10px; height: 10px; border-radius: 50%; }
.hp-dot-red { background: #ef4444; }
.hp-dot-amber { background: #f59e0b; }
.hp-dot-green { background: #10b981; }
.hp-mockup-url { margin-left: 8px; }

.hp-mockup-app {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 320px;
}

.hp-mockup-sidebar {
  background: linear-gradient(180deg, #0a1128, #060b18);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}

.hp-mockup-sidebar span { padding: 8px 10px; border-radius: 8px; }
.hp-mockup-sidebar span.is-active { background: #2563eb; color: #fff; }
.hp-mockup-sidebar .ssk-logo { margin-bottom: 10px; }
.hp-mockup-sidebar .ssk-logo-custom {
  max-height: 28px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
}

.hp-mockup-main { padding: 14px; background: #f1f5f9; }

.hp-mockup-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
}

.hp-mockup-live { color: #059669; font-weight: 800; font-size: 10px; }

.hp-mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.hp-mockup-kpi {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  font-size: 9px;
  color: #64748b;
}

.hp-mockup-kpi strong { display: block; font-size: 14px; color: #0a1128; margin-top: 2px; }

.hp-mockup-chart-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}

.hp-mockup-chart-label { font-size: 10px; font-weight: 700; color: #64748b; display: block; margin-bottom: 6px; }
.hp-mockup-chart svg { width: 100%; height: 56px; display: block; }

.hp-mockup-table {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  font-size: 10px;
}

.hp-mockup-table-label { font-weight: 700; color: #64748b; display: block; margin-bottom: 8px; }

.hp-mockup-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid #f1f5f9;
  color: #334155;
}

.hp-pill-ok { color: #059669; font-weight: 700; }
.hp-pill-pending { color: #d97706; font-weight: 700; }

/* Trust bar */
.hp-trust-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hp-trust-bar {
  position: relative;
  padding: 0;
  text-align: center;
  border-top: none;
}

.hp-trust-label {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}

.hp-trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 64px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #334155;
  letter-spacing: -0.02em;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  filter: none;
  opacity: 1;
}

.hp-trust-logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Limited-time offer countdown */
.hp-countdown-section {
  padding: 0 0 56px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hp-countdown-wrap {
  display: flex;
  justify-content: center;
  width: 60%;
  max-width: 720px;
  margin-inline: auto;
}

.hp-countdown-section .hp-hero-countdown {
  margin: 0;
  width: min(760px, 100%);
  padding: 28px 32px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.94) 0%, rgba(29,78,216,0.88) 45%, rgba(10,17,40,0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 24px 60px rgba(37,99,235,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.hp-countdown-section .hp-hero-countdown-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hp-countdown-section .hp-hero-countdown-grid strong {
  font-size: clamp(24px, 4vw, 34px);
}

/* Why Choose steps */
.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hp-step-card {
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}

.hp-step-num {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2563eb;
}

.hp-step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #0a1128;
}

.hp-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.hp-section { padding: 72px 0; }
.hp-section-soft { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }

.hp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.hp-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hp-section-head p { margin: 0; font-size: 16px; color: #64748b; line-height: 1.65; }

.hp-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.hp-section-head-row h2 { margin: 8px 0 10px; font-size: clamp(26px, 3.5vw, 34px); font-weight: 800; letter-spacing: -0.03em; }
.hp-section-head-row p { margin: 0; color: #64748b; font-size: 15px; }

.hp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
}

.hp-link-arrow,
.hp-link-sm {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.hp-link-arrow:hover,
.hp-link-sm:hover { text-decoration: underline; }

/* Portal cards */
.hp-portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hp-portal-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hp-portal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.2);
}

.hp-portal-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}

.hp-portal-card--1 .hp-portal-card-icon { background: #ecfdf5; }
.hp-portal-card--2 .hp-portal-card-icon { background: #f5f3ff; }
.hp-portal-card--3 .hp-portal-card-icon { background: #fff7ed; }
.hp-portal-card--4 .hp-portal-card-icon { background: #eff6ff; }
.hp-portal-card--5 .hp-portal-card-icon { background: #fdf2f8; }
.hp-portal-card--6 .hp-portal-card-icon { background: #ecfeff; }

.hp-portal-card-body { flex: 1; min-width: 0; }
.hp-portal-card-body h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.hp-portal-card-body p { margin: 0 0 10px; font-size: 13px; line-height: 1.55; color: #64748b; }
.hp-portal-card-price { display: block; font-size: 13px; font-weight: 800; color: #2563eb; margin-bottom: 12px; }
.hp-hero-grid--solo { grid-template-columns: 1fr; max-width: 780px; }
.hp-hero-grid--solo .hp-hero-copy { max-width: none; }

.hp-portal-card-actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

/* Features — 5 columns */
.hp-features-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.hp-feature-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,252,0.98));
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hp-live-notify.is-right { left: auto; right: 20px; }
.hp-live-notify:not(.is-right) { left: 20px; right: auto; }

.hp-feature-card--blue .hp-feature-icon { background: linear-gradient(145deg, #dbeafe, #eff6ff); color: #2563eb; }
.hp-feature-card--green .hp-feature-icon { background: linear-gradient(145deg, #d1fae5, #ecfdf5); color: #059669; }
.hp-feature-card--purple .hp-feature-icon { background: linear-gradient(145deg, #ede9fe, #f5f3ff); color: #7c3aed; }
.hp-feature-card--cyan .hp-feature-icon { background: linear-gradient(145deg, #cffafe, #ecfeff); color: #0891b2; }
.hp-feature-card--amber .hp-feature-icon { background: linear-gradient(145deg, #fef3c7, #fffbeb); color: #d97706; }
.hp-feature-card--rose .hp-feature-icon { background: linear-gradient(145deg, #ffe4e6, #fff1f2); color: #e11d48; }
.hp-feature-card--blue { border-top: 3px solid #2563eb; }
.hp-feature-card--green { border-top: 3px solid #10b981; }
.hp-feature-card--purple { border-top: 3px solid #8b5cf6; }
.hp-feature-card--cyan { border-top: 3px solid #06b6d4; }
.hp-feature-card--amber { border-top: 3px solid #f59e0b; }
.hp-feature-card--rose { border-top: 3px solid #f43f5e; }

.hp-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,235,0.08); }

.hp-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: #2563eb;
  display: grid;
  place-items: center;
}

.hp-feature-icon svg { width: 22px; height: 22px; }
.hp-feature-card h3 { margin: 0 0 8px; font-size: 14px; font-weight: 800; }
.hp-feature-card p { margin: 0; font-size: 12px; line-height: 1.6; color: #64748b; }

/* Reviews */
.hp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hp-review-card {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}

.hp-review-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.hp-review-card blockquote { margin: 0 0 16px; font-size: 15px; line-height: 1.65; color: #334155; font-style: normal; }
.hp-review-card footer strong { display: block; font-size: 14px; color: #0a1128; }
.hp-review-card footer span { font-size: 12px; color: #64748b; }

/* Pricing */
.hp-pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 32px; }

.hp-pricing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 14px;
  background: #e2e8f0;
  gap: 4px;
}

.hp-pricing-toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}

.hp-pricing-toggle-btn.is-active {
  background: #fff;
  color: #0a1128;
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
}

.hp-save-pill {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
}

.hp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.hp-pricing-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hp-pricing-card.is-popular {
  border-color: #2563eb;
  box-shadow: 0 24px 60px rgba(37,99,235,0.18);
  transform: scale(1.03);
  z-index: 1;
}

.hp-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  white-space: nowrap;
}

.hp-pricing-deco {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.35;
}

.hp-pricing-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.hp-pricing-audience { margin: 0 0 16px; font-size: 13px; color: #64748b; }
.hp-pricing-price { margin-bottom: 20px; }
.hp-pricing-amount {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0a1128;
  line-height: 1.15;
}
.hp-pricing-amount .ssk-price-approx {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 600;
}
.hp-pricing-period { font-size: 14px; font-weight: 600; color: #64748b; }

.hp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.hp-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #475569;
}

.hp-pricing-features svg { width: 18px; height: 18px; color: #2563eb; flex-shrink: 0; margin-top: 1px; }

.hp-pricing-portal-note { margin: 12px 0 0; font-size: 11px; color: #94a3b8; text-align: center; }
.hp-pricing-foot { text-align: center; margin-top: 28px; }

/* Pricing page — portal blocks */
.hp-pricing-portal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e2e8f0;
}
.hp-pricing-portal-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hp-pricing-portal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hp-pricing-portal-header .hp-portal-card-icon { flex-shrink: 0; }
.hp-pricing-portal-header h2 { margin: 0 0 4px; font-size: 22px; font-weight: 800; }
.hp-pricing-portal-header p { margin: 0; font-size: 14px; color: #64748b; }
.hp-pricing-portal-header .hp-link-arrow { margin-left: auto; }
.hp-pricing-grid--compact { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.hp-muted { color: #64748b; font-size: 14px; }

/* FAQ */
.hp-faq-list { max-width: 760px; margin-inline: auto; }

.hp-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}

.hp-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: none;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: #0a1128;
  cursor: pointer;
  text-align: left;
}

.hp-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
}

.hp-faq-item.is-open .hp-faq-a { display: block; }
.hp-faq-icon { font-size: 20px; color: #2563eb; transition: transform 0.2s; }
.hp-faq-item.is-open .hp-faq-icon { transform: rotate(45deg); }

/* CTA */
.hp-cta-section { padding-bottom: 80px; }

.hp-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a1128 0%, #1d4ed8 55%, #2563eb 100%);
  box-shadow: 0 28px 70px rgba(37,99,235,0.28);
  color: #fff;
}

.hp-cta-copy h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: #fff; }
.hp-cta-copy p { margin: 0; color: rgba(255,255,255,0.88); font-size: 15px; }
.hp-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hp-cta-box .ssk-btn-primary { background: #fff; color: #2563eb; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.hp-cta-outline { border-color: rgba(255,255,255,0.5) !important; color: #fff !important; background: transparent !important; }

/* Footer (enterprise) */
.ssk-footer {
  background: linear-gradient(180deg, #0a1128 0%, #060b18 100%);
  color: #94a3b8;
  padding: 64px 0 28px;
}

.ssk-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 36px;
}

.ssk-footer h4 {
  margin: 0 0 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e2e8f0;
  font-weight: 800;
}

.ssk-footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 0;
  transition: color 0.15s;
}

.ssk-footer a:hover { color: #fff; }

.ssk-footer-desc { margin-top: 14px; font-size: 14px; line-height: 1.65; max-width: 300px; color: #64748b; }
.ssk-footer-brand .ssk-logo-link {
  color: inherit;
  text-decoration: none;
}
.ssk-footer-brand .ssk-logo-name { color: #f8fafc !important; }
.ssk-footer-brand .ssk-logo-custom {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.ssk-footer-social { display: flex; gap: 10px; margin-top: 18px; }

.ssk-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  transition: background 0.15s;
}

.ssk-social-btn:hover { background: #2563eb; color: #fff; }
.ssk-social-btn svg { width: 18px; height: 18px; }

.ssk-footer-contact { margin-top: 16px; font-size: 13px; }
.ssk-footer-contact a { display: inline; color: #60a5fa; padding: 0; }

.ssk-footer-payments-label {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.ssk-pay-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.ssk-pay-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(255,255,255,0.08); color: #cbd5e1; }

.ssk-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.ssk-footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.ssk-footer-legal a { display: inline; padding: 0; }

/* Live floating notification */
.hp-live-notify {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  max-width: min(380px, calc(100vw - 32px));
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.hp-live-notify.is-visible { transform: translateX(0); opacity: 1; }
.hp-live-notify.is-hiding { transform: translateX(120%); opacity: 0; }

.hp-live-notify-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 20px 60px rgba(15,23,42,0.15), 0 0 40px rgba(37,99,235,0.2);
  position: relative;
}

.hp-live-notify-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
}

.hp-live-notify-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #047857;
  background: #ecfdf5;
  padding: 5px 10px;
  border-radius: 999px;
}

.hp-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: hp-live-pulse 1.4s ease-in-out infinite;
}

@keyframes hp-live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hp-live-notify-body { display: flex; gap: 14px; align-items: flex-start; margin-top: 12px; }
.hp-live-notify-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  background: #dcfce7;
  color: #166534;
  box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.12);
}
.hp-live-notify-icon.is-purchase { background: #dbeafe; color: #1d4ed8; box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12); }
.hp-live-notify-icon.is-success { background: #dcfce7; color: #166534; }
.hp-live-notify-copy strong { display: block; font-size: 14px; color: #0a1128; margin-bottom: 4px; line-height: 1.45; }
.hp-live-notify-copy span { font-size: 12px; color: #64748b; }

/* Empty state */
.ssk-empty-state { text-align: center; padding: 40px 24px; border: 1px dashed #e2e8f0; border-radius: 16px; background: #f8fafc; }
.ssk-empty-state h3 { margin: 0 0 8px; color: #0a1128; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hp-features-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hp-hero-visual { order: -1; }
  .hp-mockup { transform: none; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 900px) {
  .hp-portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .hp-pricing-card.is-popular { transform: none; }
  .hp-review-grid { grid-template-columns: 1fr; }
  .ssk-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hp-nav-toggle { display: flex; }
  .hp-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px 20px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.1);
    z-index: 50;
  }
  .hp-nav-menu.is-open { display: flex; }
  .hp-nav-links { flex-direction: column; align-items: stretch; width: 100%; }
  .hp-nav-links > a { padding: 12px 14px; }
  .hp-nav-actions { width: 100%; flex-direction: column; margin-top: 12px; padding-top: 12px; border-top: 1px solid #e2e8f0; }
  .hp-section { padding: 52px 0; }
  .hp-section-head-row { flex-direction: column; align-items: flex-start; }
  .hp-portal-grid { grid-template-columns: 1fr; }
  .hp-features-row { grid-template-columns: 1fr; }
  .hp-hero-stats { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: 1fr; }
  .hp-steps-grid { grid-template-columns: 1fr; }
  .hp-countdown-section .hp-hero-countdown { padding: 22px 18px; }
  .hp-hero-float { display: none; }
  .hp-hero-art { inset: -8px 0 auto 0; opacity: 0.55; }
  .hp-hero-visual { min-height: 280px; }
  .hp-trust-logos { gap: 20px 28px; }
  .hp-live-notify { left: 16px; right: 16px; max-width: none; }
  .ssk-footer-grid { grid-template-columns: 1fr; }
  .hp-cta-box { padding: 32px 24px; }
}

/* Currency selector */
.hp-currency-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hp-currency-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hp-currency-form select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
}

/* Approximate price conversion */
.ssk-price-approx {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}

/* Hero countdown */
.hp-hero-countdown {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hp-count-primary, #2563eb), var(--hp-count-secondary, #0a1128));
  color: #fff;
  max-width: 520px;
}
.hp-hero-countdown-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}
.hp-hero-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}
.hp-hero-countdown-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}
.hp-hero-countdown-grid span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* Live notify animations */
.hp-live-notify.anim-fade.is-visible { animation: hpNotifyFadeIn 0.45s ease; }
.hp-live-notify.anim-bounce.is-visible { animation: hpNotifyBounceIn 0.55s ease; }
@keyframes hpNotifyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hpNotifyBounceIn {
  0% { transform: translateY(24px); opacity: 0; }
  60% { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   SSKNEXUS Homepage Premium v5.14.0
   ========================================================================== */

.hp-glass-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 8px 32px rgba(15,23,42,0.06);
}

.hp-reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hp-reveal.js-reveal-ready:not(.is-visible) {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .hp-reveal.js-reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.hp-hero {
  opacity: 1;
  transform: none;
}

/* Premium navbar */
.hp-nav--premium {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid rgba(226,232,240,0.75);
  box-shadow: 0 8px 32px rgba(15,23,42,0.04);
}

.hp-nav-pill {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hp-nav-links > .hp-nav-pill:hover,
.hp-nav-links > .hp-nav-pill.is-active {
  color: #2563eb;
  background: rgba(239,246,255,0.95);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,0.12);
}

.hp-btn-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #0ea5e9 100%) !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(37,99,235,0.28);
}

.hp-btn-gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hp-currency-premium select {
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(248,250,252,0.95);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
}

/* Hero premium */
.hp-hero-bg {
  background:
    linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 90% 70% at 85% 5%, rgba(37,99,235,0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(14,165,233,0.12), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #fff 72%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.hp-btn-glow {
  box-shadow: 0 12px 32px rgba(37,99,235,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.34);
}

.hp-mockup-float {
  animation: hpMockupFloat 6s ease-in-out infinite;
}

@keyframes hpMockupFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hp-hero-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 12px 32px rgba(15,23,42,0.1);
  backdrop-filter: blur(10px);
}

.hp-float-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  font-size: 14px;
}

.hp-hero-float--secure { top: 12%; left: -4%; }
.hp-hero-float--live { top: 42%; right: -6%; }
.hp-hero-float--access { bottom: 8%; left: 8%; }

/* Stats premium */
.hp-stats-section { padding: 24px 0 56px; }

.hp-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 22px 24px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(37,99,235,0.12);
}

.hp-stat-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 24px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  flex-shrink: 0;
}

.hp-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0a1128;
  line-height: 1.1;
}

.hp-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* Trust strip premium */
.hp-trust-section { padding: 40px 0 48px; }

.hp-trust-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -4px;
  padding: 4px;
}

.hp-trust-scroll::-webkit-scrollbar { display: none; }

.hp-trust-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
  min-width: min-content;
  padding-bottom: 4px;
}

.hp-trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 64px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #475569;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hp-trust-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,99,235,0.12);
}

.hp-trust-logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
}

.hp-trust-logo:hover img {
  transform: scale(1.04);
}

/* Countdown premium compact */
.hp-countdown-wrap {
  display: flex;
  justify-content: center;
  width: min(900px, 100%);
  margin-inline: auto;
}

.hp-countdown-card {
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.96) 0%, rgba(29,78,216,0.92) 42%, rgba(10,17,40,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 48px rgba(37,99,235,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
}

.hp-countdown-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hp-countdown-main { flex: 1; min-width: 0; }

.hp-countdown-date-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  line-height: 1.15;
}

.hp-countdown-date-badge strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.hp-countdown-badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(251,191,36,0.2);
  border: 1px solid rgba(251,191,36,0.45);
  color: #fde68a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-countdown-title {
  margin: 0 0 4px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
}

.hp-countdown-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.hp-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hp-countdown-unit {
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
}

.hp-countdown-unit strong {
  display: block;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.hp-benefits-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hp-benefit-card--green .hp-benefit-icon {
  background: linear-gradient(135deg, #ecfdf5, #bbf7d0);
  color: #059669;
}

.hp-countdown-pulse {
  animation: hpCountPulse 3s ease-in-out infinite;
}

@keyframes hpCountPulse {
  0%, 100% { box-shadow: 0 28px 70px rgba(37,99,235,0.28), inset 0 1px 0 rgba(255,255,255,0.18); }
  50% { box-shadow: 0 32px 80px rgba(37,99,235,0.38), 0 0 0 1px rgba(251,191,36,0.25), inset 0 1px 0 rgba(255,255,255,0.22); }
}

.hp-countdown-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(251,191,36,0.18);
  border: 1px solid rgba(251,191,36,0.35);
  color: #fde68a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-countdown-title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hp-countdown-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.hp-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hp-countdown-unit {
  padding: 12px 10px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.hp-countdown-unit strong {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.hp-countdown-unit span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Portal cards premium */
.hp-portal-card--premium {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-portal-card--premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(37,99,235,0.14);
  border-color: rgba(37,99,235,0.22);
}

.hp-portal-card--premium .hp-portal-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(14,165,233,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.hp-portal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.hp-portal-chip {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
}

/* Why Choose / Benefits */
.hp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.hp-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
  padding: 24px 18px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(37,99,235,0.1);
}

.hp-benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,0.25);
}

.hp-benefit-icon svg { width: 24px; height: 24px; }

.hp-benefit-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0a1128;
}

.hp-benefit-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

/* Platform features grid */
.hp-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hp-platform-card {
  padding: 22px 20px;
  border-radius: 18px;
  min-height: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}

.hp-platform-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
}

.hp-platform-icon svg { width: 22px; height: 22px; }

.hp-platform-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.hp-platform-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

/* Testimonials premium */
.hp-review-card {
  padding: 24px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.hp-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hp-review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.hp-review-name {
  display: block;
  font-size: 15px;
  color: #0a1128;
}

.hp-review-role {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.hp-review-card blockquote {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}

/* FAQ premium */
.hp-faq-item {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}

.hp-faq-item.is-open {
  box-shadow: 0 12px 32px rgba(37,99,235,0.08);
}

.hp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #0a1128;
  cursor: pointer;
}

.hp-faq-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hp-faq-item.is-open .hp-faq-icon {
  transform: rotate(45deg);
  background: #2563eb;
  color: #fff;
}

/* CTA premium */
.hp-cta-premium {
  position: relative;
  overflow: hidden;
}

.hp-cta-premium::before {
  content: '';
  position: absolute;
  inset: -40% auto auto 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}

/* Compact footer */
.ssk-footer--compact {
  padding: 20px 0 10px;
}

.ssk-footer--compact .ssk-footer-grid {
  gap: 18px 16px;
}

.ssk-footer--compact .ssk-footer-desc {
  max-width: 240px;
  font-size: 12px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.ssk-pay-badge--logo {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.ssk-pay-badge--logo img {
  display: block;
  max-height: 28px;
  max-width: 88px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Shared payment / trust logo strips */
.hp-pay-logos-strip { margin-top: 10px; }
.hp-pay-logos-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}
.hp-pay-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hp-pay-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}
.hp-pay-logo-card img {
  max-height: 38px;
  max-width: 112px;
  width: auto;
  object-fit: contain;
}
.hp-pay-logos-strip--footer .hp-pay-logos-row { gap: 10px; }
.hp-pay-logos-strip--footer .hp-pay-logo-card {
  min-width: 96px;
  min-height: 48px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.hp-pay-logos-strip--footer .hp-pay-logo-card img { max-height: 30px; }

@media (max-width: 1100px) {
  .hp-benefits-grid,
  .hp-benefits-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hp-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-mockup--compact { transform: scale(0.82); }
}

@media (max-width: 900px) {
  .hp-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-trust-logos { justify-content: flex-start; }
  .hp-countdown-wrap { width: 100%; max-width: none; }
}

@media (max-width: 768px) {
  .hp-nav-links > .hp-nav-pill { width: 100%; text-align: left; }
  .hp-countdown-card { padding: 16px 14px; }
  .hp-countdown-layout { flex-direction: column; align-items: stretch; }
  .hp-countdown-date-badge { width: 100%; height: auto; padding: 10px; }
  .hp-countdown-grid { gap: 6px; }
  .hp-countdown-unit { padding: 8px 4px; }
  .hp-hero-badge { display: none; }
  .hp-mockup--compact { transform: none; max-height: 320px; }
  .hp-hero-visual { max-height: 340px; }
  .hp-platform-grid { grid-template-columns: 1fr; }
  .hp-benefits-grid,
  .hp-benefits-grid--5 { grid-template-columns: 1fr; }
}
