/* ================================================================
   WHITE LABEL POKER SOFTWARE — GLOBAL STYLESHEET
   whitelabelpokersoftware.net
   Version: 1.0
   Author: Antigravity / WLPS Dev Team
   ================================================================ */

/* ----------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ---------------------------------------------------------------- */
:root {
  /* Core Colors */
  --primary: #7825F3;
  --primary-dark: #5A1BB6;
  --primary-light: #9B5DF5;
  --primary-glow: rgba(120, 37, 243, 0.15);

  /* Light Mode (default) */
  --bg: #ffffff;
  --bg-alt: #F5F5F7;
  --bg-card: #ffffff;
  --bg-card-alt: #F0F0F2;
  --bg-toc: #f8f7ff;
  --border: #E2E2E5;
  --text: #1A1A1A;
  --text-muted: #6B6B7B;
  --text-light: #9999AA;
  --heading: #0D0D1A;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);

  /* Layout */
  --max-width: 1200px;
  --gutter: 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;

  /* Z-index layers */
  --z-header: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
  --z-float: 900;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg: #0D0D0D;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-card-alt: #1A1A1A;
  --bg-toc: #1a1a2e;
  --border: #2A2A2A;
  --text: #E8E8E8;
  --text-muted: #9090A0;
  --text-light: #6060707;
  --heading: #F0F0F5;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* ----------------------------------------------------------------
   3. CSS RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font);
}

/* ----------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   ---------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 1rem;
  max-width: 72ch;
}

p:last-child {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.text-center p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

strong {
  font-weight: 700;
}

/* ----------------------------------------------------------------
   5. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* ----------------------------------------------------------------
   6. SECTION LABELS & HEADINGS
   ---------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subheading {
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(120, 37, 243, 0.35);
}

/* Override global a{color:var(--primary)} for button anchors — no underline */
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited,
a.btn-primary:focus {
  color: #fff;
  text-decoration: none;
}

a.btn-ghost,
a.btn-ghost:visited,
a.btn-ghost:focus {
  color: var(--text);
  text-decoration: none;
}

a.btn-ghost:hover {
  color: var(--primary);
  text-decoration: none;
}

a.btn-outline,
a.btn-outline:visited,
a.btn-outline:focus {
  color: var(--text);
  text-decoration: none;
}

a.btn-outline:hover {
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ----------------------------------------------------------------
   8. CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(120, 37, 243, 0.2);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   9. HEADER / NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--heading);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.header-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: calc(var(--z-header) + 10);
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  background: var(--bg-card);
}

/* ----------------------------------------------------------------
   10. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120, 37, 243, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(120, 37, 243, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
}

.hero-phone-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Old card styles removed — using single image now */

/* Gentle floating */
@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-phone-stack {
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.hero-float-1 {
  bottom: -20px;
  left: -24px;
}

.hero-float-2 {
  top: 24px;
  right: -20px;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-float-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading);
}

/* ----------------------------------------------------------------
   10b. TRUSTED-BY CLIENT LOGOS SECTION
   ---------------------------------------------------------------- */
.trusted-by-section {
  background: var(--bg-alt);
  padding: 72px 0 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-logos-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 32px;
  align-items: center;
}

.trusted-logo-item {
  display: flex;
}

.trusted-logo-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo-img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ----------------------------------------------------------------
   11. CLIENT TRUST STRIP
   ---------------------------------------------------------------- */
.client-trust {
  background: var(--bg-alt);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.client-trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.client-trust-header p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  filter: grayscale(1);
  opacity: 0.6;
  min-height: 80px;
}

.client-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-card);
}

.client-logo-item svg {
  height: 36px;
  width: auto;
}

/* ----------------------------------------------------------------
   12. DEFINITION SECTION
   ---------------------------------------------------------------- */
.definition-section {
  background: var(--bg);
}

.definition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.definition-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.def-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.def-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.def-stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.definition-visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.def-compare-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.def-compare-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.def-compare-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.def-compare-item.bad {
  background: rgba(255, 100, 80, 0.08);
  color: #c0392b;
  border: 1px solid rgba(255, 100, 80, 0.15);
}

.def-compare-item.good {
  background: rgba(39, 174, 96, 0.08);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.15);
}

/* ----------------------------------------------------------------
   13. FEATURES SECTION
   ---------------------------------------------------------------- */
.features-section {
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   14. STATS / TRUST NUMBERS
   ---------------------------------------------------------------- */
.stats-section {
  background: var(--bg-alt);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-section .section-label {
  background: rgba(120, 37, 243, 0.08);
  color: var(--primary);
}

.stats-section .section-label::before {
  background: var(--primary);
}

.stats-section .section-heading {
  color: var(--heading);
}

.stats-section .section-subheading {
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(120, 37, 243, 0.12);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.stat-sub {
  font-size: 0.825rem;
  color: var(--text-muted);
  max-width: 28ch;
  margin: 0 auto;
}

/* ----------------------------------------------------------------
   15. OFFERINGS SECTION
   ---------------------------------------------------------------- */
.offerings-section {
  background: var(--bg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offering-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.offering-card:nth-child(1) {
  background: rgba(83, 112, 255, 0.04);
}

.offering-card:nth-child(2) {
  background: rgba(39, 174, 96, 0.04);
}

.offering-card:nth-child(3) {
  background: rgba(255, 149, 0, 0.04);
}

.offering-card:nth-child(4) {
  background: rgba(120, 37, 243, 0.04);
}

.offering-card:nth-child(5) {
  background: rgba(142, 68, 173, 0.04);
}

.offering-card:nth-child(6) {
  background: rgba(52, 152, 219, 0.04);
}

[data-theme="dark"] .offering-card:nth-child(1) {
  background: rgba(83, 112, 255, 0.07);
}

[data-theme="dark"] .offering-card:nth-child(2) {
  background: rgba(39, 174, 96, 0.07);
}

[data-theme="dark"] .offering-card:nth-child(3) {
  background: rgba(255, 149, 0, 0.07);
}

[data-theme="dark"] .offering-card:nth-child(4) {
  background: rgba(120, 37, 243, 0.07);
}

[data-theme="dark"] .offering-card:nth-child(5) {
  background: rgba(142, 68, 173, 0.07);
}

[data-theme="dark"] .offering-card:nth-child(6) {
  background: rgba(52, 152, 219, 0.07);
}

.offering-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.offering-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.offering-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.offering-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary);
}

/* ----------------------------------------------------------------
   16. PRICING SECTION
   ---------------------------------------------------------------- */
.pricing-section {
  background: var(--bg-alt);
}

.pricing-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(120, 37, 243, 0.15);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-badge.starter {
  background: rgba(83, 112, 255, 0.1);
  color: #5370ff;
}

.pricing-badge.elite {
  background: rgba(120, 37, 243, 0.1);
  color: var(--primary);
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}

.pricing-target {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-setup {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pricing-monthly {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-monthly small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-revshare {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}

.pricing-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-fomo {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

/* Package 3 horizontal card */
.pricing-card-horizontal {
  background: rgba(120, 37, 243, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

[data-theme="dark"] .pricing-card-horizontal {
  background: rgba(120, 37, 243, 0.07);
}

.pricing-card-horizontal:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pricing-h-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--heading);
  margin-bottom: 8px;
}

.pricing-h-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-h-punch {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 56ch;
}

.pricing-h-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

.pricing-h-right {
  text-align: center;
  min-width: 220px;
}

.pricing-h-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-h-price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-h-fomo {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------
   17. PROCESS FLOW
   ---------------------------------------------------------------- */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(120, 37, 243, 0.1));
  z-index: 0;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.process-step {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
}

.process-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.process-list li {
  font-size: 0.825rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.process-list li::before {
  content: '→';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

.process-note {
  font-size: 0.775rem;
  color: var(--primary);
  font-style: italic;
  padding: 8px 12px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------
   18. SECURITY / COMPLIANCE
   ---------------------------------------------------------------- */
.security-section {
  background: var(--bg-alt);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.compliance-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compliance-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.compliance-badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.compliance-badge svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}

.compliance-badge-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}

.compliance-badge-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.security-item:hover {
  border-color: rgba(39, 174, 96, 0.3);
}

.security-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(39, 174, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #27ae60;
}

.security-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 3px;
}

.security-item-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   19. TESTIMONIALS CAROUSEL
   ---------------------------------------------------------------- */
.testimonials-section {
  background: var(--bg);
}

.testimonial-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.testimonial-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.testimonial-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  margin-bottom: 28px;
  object-fit: contain;
}

.testimonial-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: normal;
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(196, 0, 89, 0.15);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
}

.testimonial-author-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testi-logo-wrap {
  margin-bottom: 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.testi-logo-wrap svg {
  height: 36px;
  width: auto;
}

.testi-quote {
  display: none;
}

.testimonial-watch {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  align-self: flex-start;
}

/* Right stats panel */
.testi-stats-panel {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100%;
}

.testi-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
}

.testi-stat-val {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.5px;
  line-height: 1;
}

.testi-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testi-stat-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.testi-badge {
  margin-top: 24px;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(196, 0, 89, 0.1);
  border: 1px solid rgba(196, 0, 89, 0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.testi-feedback-header {
  margin-bottom: 24px;
}

.testi-feedback-title {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
  line-height: 1.2;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: #ff9500;
  font-size: 0.9rem;
}

}

.testimonial-image {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-card) 100%);
}

.testi-photo-placeholder svg {
  opacity: 0.3;
}

.testi-photo-placeholder span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  opacity: 0.6;
}


.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ----------------------------------------------------------------
   20. CTA BAND
   ---------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0A10 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(120, 37, 243, 0.15) 0%, transparent 70%);
}

.cta-band .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.cta-band .section-label::before {
  background: var(--primary);
}

.cta-band .section-heading {
  color: #fff;
}

.cta-band .section-subheading {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 36px;
}

/* ----------------------------------------------------------------
   21. CHALLENGES SECTION
   ---------------------------------------------------------------- */
.challenges-section {
  background: var(--bg-alt);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.challenge-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.challenge-card:hover::before {
  transform: scaleX(1);
}

.challenge-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* Tinted backgrounds per card — same palette as Our Services */
.challenge-card:nth-child(1) {
  background: rgba(83, 112, 255, 0.04);
}

.challenge-card:nth-child(2) {
  background: rgba(39, 174, 96, 0.04);
}

.challenge-card:nth-child(3) {
  background: rgba(255, 149, 0, 0.04);
}

.challenge-card:nth-child(4) {
  background: rgba(120, 37, 243, 0.04);
}

.challenge-card:nth-child(5) {
  background: rgba(142, 68, 173, 0.04);
}

.challenge-card:nth-child(6) {
  background: rgba(52, 152, 219, 0.04);
}

[data-theme="dark"] .challenge-card:nth-child(1) {
  background: rgba(83, 112, 255, 0.07);
}

[data-theme="dark"] .challenge-card:nth-child(2) {
  background: rgba(39, 174, 96, 0.07);
}

[data-theme="dark"] .challenge-card:nth-child(3) {
  background: rgba(255, 149, 0, 0.07);
}

[data-theme="dark"] .challenge-card:nth-child(4) {
  background: rgba(120, 37, 243, 0.07);
}

[data-theme="dark"] .challenge-card:nth-child(5) {
  background: rgba(142, 68, 173, 0.07);
}

[data-theme="dark"] .challenge-card:nth-child(6) {
  background: rgba(52, 152, 219, 0.07);
}

.challenge-num {
  font-size: 2rem;
  font-weight: 900;
  opacity: 1;
  line-height: 1;
  margin-bottom: 12px;
}

/* Number color matches each card's tint */
.challenge-card:nth-child(1) .challenge-num {
  color: #5370ff;
}

.challenge-card:nth-child(2) .challenge-num {
  color: #27ae60;
}

.challenge-card:nth-child(3) .challenge-num {
  color: #ff9500;
}

.challenge-card:nth-child(4) .challenge-num {
  color: var(--primary);
}

.challenge-card:nth-child(5) .challenge-num {
  color: #8e44ad;
}

.challenge-card:nth-child(6) .challenge-num {
  color: #3498db;
}

.challenge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.challenge-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   22. COMPARISON TABLE
   ---------------------------------------------------------------- */
.comparison-section {
  background: var(--bg);
}

.comparison-wrapper {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 4px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.comparison-table thead th {
  padding: 24px;
  text-align: left;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 2px solid var(--border);
}

.comparison-table thead th:first-child {
  color: var(--text-muted);
}

.comparison-table thead th:nth-child(2) {
  color: var(--text-muted);
  width: 30%;
  opacity: 0.7;
}

.comparison-table thead th:nth-child(3) {
  color: var(--primary);
  width: 45%;
  background: rgba(120, 37, 243, 0.05);
  border-radius: 0;
  border-bottom: 2px solid rgba(120, 37, 243, 0.1);
  font-size: 0.8rem;
}

.comparison-table tbody tr {
  transition: var(--transition);
}

.comparison-table tbody tr:hover td {
  background: var(--bg-alt);
}

.comparison-table tbody tr:hover td:nth-child(3) {
  background: rgba(120, 37, 243, 0.06);
}

.comparison-table td {
  padding: 22px 24px;
  vertical-align: middle;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
}

.comparison-table td:nth-child(2) {
  color: var(--text-muted);
  font-weight: 400;
}

.comparison-table td:nth-child(3) {
  color: var(--heading);
  font-weight: 600;
  background: rgba(120, 37, 243, 0.03);
  border-bottom: 1px solid rgba(120, 37, 243, 0.08);
}

.comparison-table tbody tr:last-child td:nth-child(3) {
  border-radius: 0;
  border-bottom: none;
}

.comparison-table .wlps-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wlps-check {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 1px;
}

/* ----------------------------------------------------------------
   23. PRODUCT RECAP
   ---------------------------------------------------------------- */
.product-recap {
  background: var(--bg-alt);
}

.product-recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-recap-image {
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  /* border: 1px solid var(--border); */
  /* box-shadow: var(--shadow); */
  /* background: var(--bg-card); */
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-recap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-recap-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.recap-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.recap-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.recap-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recap-item-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   24. WHY US SECTION
   ---------------------------------------------------------------- */
.why-us-section {
  background: var(--bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 24px 20px;
  boundary: var(--radius);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--bg-card);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(120, 37, 243, 0.1);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.why-body {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   25. VIDEO SECTION
   ---------------------------------------------------------------- */
.video-section {
  background: var(--bg-alt);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0D0D1A;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.video-thumbnail:hover img {
  opacity: 1;
}

.video-thumbnail:hover .video-play-btn {
  opacity: 1;
  transform: scale(1);
}

.video-play-btn {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(120, 37, 243, 0.5);
  transition: var(--transition);
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.video-thumbnail:hover .video-play-btn {
  pointer-events: auto;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(120, 37, 243, 0.7);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px;
}

.video-overlay-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  text-align: center;
}

.video-overlay-text h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.video-overlay-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.video-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
}

.video-meta-item {
  text-align: center;
}

.video-meta-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.video-meta-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   26. POKER NETWORK SECTION
   ---------------------------------------------------------------- */
.network-section {
  background: var(--bg);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.network-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.network-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}


.network-hook {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.network-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.network-body {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   27. CONTACT FORM
   ---------------------------------------------------------------- */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 3px;
}

.contact-info-val {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   28. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 36ch;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.social-link[aria-label="Telegram"] {
  color: #229ED9;
  border-color: rgba(34, 158, 217, 0.3);
}

.social-link[aria-label="Telegram"]:hover {
  background: rgba(34, 158, 217, 0.1);
  border-color: #229ED9;
  color: #229ED9;
}

.social-link[aria-label="WhatsApp"] {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-link[aria-label="WhatsApp"]:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: #25D366;
}

.social-link[aria-label="Email"] {
  color: var(--primary);
  border-color: rgba(120, 37, 243, 0.3);
}

.social-link[aria-label="Email"]:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ----------------------------------------------------------------
   29. FLOATING BUTTONS (WhatsApp / Telegram)
   ---------------------------------------------------------------- */
.float-buttons {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: var(--z-float);
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.telegram {
  background: #0088CC;
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

/* ----------------------------------------------------------------
   30. BLOG LISTING PAGE
   ---------------------------------------------------------------- */
.blog-page-hero {
  background: var(--bg-alt);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.blog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.sidebar-cat:hover,
.sidebar-cat.active {
  background: var(--primary-glow);
  color: var(--primary);
}

.sidebar-cat-count {
  font-size: 0.75rem;
  background: var(--border);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(120, 37, 243, 0.2);
}

.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-cat {
  background: var(--primary-glow);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}





/* ----------------------------------------------------------------
   31. BLOG POST PAGE
   ---------------------------------------------------------------- */
.blog-post-hero {
  background: var(--bg-alt);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--border);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}

.blog-post-content {
  max-width: none;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 2rem 0 0.75rem;
}

.blog-post-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1rem 0 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-post-content ul li {
  list-style: disc;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

.blog-post-content ol li {
  list-style: decimal;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-glow);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.blog-post-content table th {
  background: var(--bg-alt);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--heading);
}

.blog-post-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.blog-post-content table tr:hover {
  background: var(--bg-alt);
}

.blog-toc {
  position: sticky;
  top: 96px;
  background: var(--bg-toc);
  border: none;
  border-radius: var(--radius);
  padding: 28px;
}

.article-toc {
  margin: 32px 0;
  padding: 32px;
  background: var(--bg-toc);
  border-radius: var(--radius);
}

.article-toc a,
.article-toc a:hover {
  text-decoration: none !important;
}

.toc-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  font-size: 0.825rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}

.toc-link:hover,
.toc-link.active {
  color: var(--primary);
  background: var(--primary-glow);
}

.toc-link.h3 {
  margin-left: 14px;
  font-size: 0.8rem;
}

/* Author Bio */




.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}







/* FAQ Section */
.faq-section {
  margin-top: 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: var(--bg-card);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border: none;
  line-height: 1.5;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question[aria-expanded="true"] {
  background: var(--primary-glow);
  color: var(--primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  background: var(--bg-alt);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  text-align: left;
}

.faq-answer.open {
  display: block;
}

/* ----------------------------------------------------------------
   32. CALCULATOR PAGE
   ---------------------------------------------------------------- */
.calculator-hero {
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0A10 100%);
  padding: 80px 0;
  text-align: center;
}

.calculator-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.calculator-hero p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

.calculator-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px var(--gutter);
}

.calc-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.calc-step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
}

.calc-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.calc-step-dot.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.calc-step-dot.done {
  border-color: #27ae60;
  background: #27ae60;
  color: #fff;
}

.calc-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
}

.calc-step-line.done {
  background: #27ae60;
}

.calc-step {
  display: none;
}

.calc-step.active {
  display: block;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calc-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}

.calc-card>p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--heading);
}

.calc-label-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.calc-input {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.calc-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* Results page */
.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.result-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.result-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lead-gate {
  background: linear-gradient(135deg, rgba(120, 37, 243, 0.05), rgba(120, 37, 243, 0.02));
  border: 1px solid rgba(120, 37, 243, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}

.lead-gate h3 {
  margin-bottom: 8px;
}

.lead-gate p {
  color: var(--text-muted);
  margin: 0 auto 28px;
}

.lead-gate-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   33. ANIMATIONS & MICRO-INTERACTIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade {
  animation: fadeIn 0.4s ease forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ----------------------------------------------------------------
   34. UTILITIES
   ---------------------------------------------------------------- */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------------
   35. RESPONSIVE — MOBILE FIRST BREAKPOINTS
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .section,
  .section-sm,
  .section-lg {
    padding: 64px 0;
  }

  .header-tagline {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero-grid,
  .definition-grid,
  .security-grid,
  .product-recap-grid,
  .contact-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-phone-stack {
    max-width: 360px;
    aspect-ratio: 4/5;
    animation: none;
  }

  .hero-phone-lobby {
    width: 48%;
    transform: rotate(-3deg);
  }

  .hero-phone-table {
    width: 52%;
    transform: rotate(2deg);
  }

  .hero-float-1,
  .hero-float-2 {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .stats-grid,
  .challenges-grid,
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .blog-sidebar {
    position: static;
    order: -1;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
    order: -1;
  }

  .pricing-vertical {
    grid-template-columns: 1fr;
  }

  .pricing-card-horizontal {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }

  .pricing-h-right {
    text-align: left;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
  }

  .testimonial-image {
    min-height: 240px;
    order: -1;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }

  .calc-result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-gate-form {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-logos {
    grid-template-columns: 1fr;
  }

  .definition-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .network-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .features-grid,
  .stats-grid,
  .offerings-grid,
  .challenges-grid,
  .network-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .calc-result-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-buttons {
    right: 16px;
  }
}

/* ================================================================
   BLOG LISTING PAGE STYLES
   ================================================================ */
.blog-page-hero {
  padding: 100px 0 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 56px 0;
}

.blog-sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-heading {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: var(--font);
}

.sidebar-cat:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.sidebar-cat.active {
  background: var(--primary-glow);
  color: var(--primary);
  border-color: rgba(120, 37, 243, 0.15);
  font-weight: 600;
}

.sidebar-cat-count {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
}

.sidebar-cat.active .sidebar-cat-count {
  background: rgba(120, 37, 243, 0.15);
  color: var(--primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card-wrap {
  transition: var(--transition);
}

.blog-card-wrap.hidden {
  display: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-thumb {
  display: block;
  overflow: hidden;
  background: #0D0D1A;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-cat {
  background: var(--primary-glow);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
}

.blog-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}





/* ================================================================
   BLOG POST PAGE STYLES
   ================================================================ */
.blog-post-hero {
  padding: 80px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  padding: 56px 0;
}

.blog-post-content {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  margin: 40px 0 16px;
  padding-top: 16px;
  scroll-margin-top: 100px;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 28px 0 12px;
}

.blog-post-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 24px 0 10px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-post-content strong {
  color: var(--heading);
  font-weight: 700;
}

.blog-post-content a:not(.btn) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.blog-post-content a:not(.btn):hover {
  text-decoration-thickness: 2px;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--primary-glow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
}

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.875rem;
}

.blog-post-content th {
  background: var(--bg-alt);
  padding: 11px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--heading);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-content td {
  padding: 11px 16px;
  border: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.blog-post-content tr:nth-child(even) td {
  background: var(--bg-alt);
}

/* Table of Contents Sticky Sidebar */
.blog-toc {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.toc-heading {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: block;
  padding: 7px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.toc-link:hover,
.toc-link.active {
  color: var(--primary);
  background: var(--primary-glow);
}

/* Author bio */










/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* ================================================================
   CALCULATOR PAGE STYLES
   ================================================================ */
.calculator-hero {
  padding: 100px 0 56px;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A0A10 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calculator-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(120, 37, 243, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.calculator-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px;
}

.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.calc-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.calc-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  border: 2px solid var(--border);
}

.calc-step-dot.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.calc-step-dot.done {
  background: #27ae60;
  color: #fff;
  border-color: #27ae60;
}

.calc-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 120px;
  transition: var(--transition);
}

.calc-step-line.done {
  background: #27ae60;
}

.calc-step {
  display: none;
}

.calc-step.active {
  display: block;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calc-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}

.calc-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.925rem;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
}

.calc-label-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.calc-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  font-family: var(--font);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Results Grid */
.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.result-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.result-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Lead Gate */
.lead-gate {
  background: linear-gradient(135deg, rgba(120, 37, 243, 0.05), rgba(83, 112, 255, 0.04));
  border: 1px solid rgba(120, 37, 243, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.lead-gate h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--heading);
}

.lead-gate p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.lead-gate-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

/* ================================================================
   RESPONSIVE — BLOG AND CALCULATOR BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .sidebar-cats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
    order: -1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .toc-heading {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .toc-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }

  .calc-result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-gate-form {
    grid-template-columns: 1fr;
  }

  .blog-post-content table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .calc-card {
    padding: 24px 20px;
  }


}

/* ================================================================
   END OF STYLESHEET
   ================================================================ */