/**
 * ==========================================================================
 * ULTRA-MODERN SMM PLATFORM DESIGN SYSTEM & UI ENGINE
 * Professional, High-Conversion, 100% Responsive Framework
 * ==========================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* Brand Palette */
  --primary: #5138EE;
  --primary-hover: #3d25d8;
  --primary-dark: #2d16b3;
  --primary-light: rgba(81, 56, 238, 0.08);
  --primary-light-2: rgba(81, 56, 238, 0.16);
  --primary-glow: rgba(81, 56, 238, 0.35);
  --primary-gradient: linear-gradient(135deg, #5138EE 0%, #7b66ff 100%);
  
  /* Accent & Gradients */
  --accent-pink: #EA449D;
  --accent-gradient: linear-gradient(135deg, #5138EE 0%, #EA449D 100%);
  --hero-bg-gradient: linear-gradient(135deg, rgba(81, 56, 238, 0.04) 0%, rgba(234, 68, 157, 0.03) 50%, rgba(81, 56, 238, 0.02) 100%);

  /* Semantic Feedback */
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.12);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.12);
  --danger: #ef4444;
  --danger-light: rgba(239, 68, 68, 0.12);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.12);

  /* Backgrounds & Neutrals */
  --bg-body: #f8fafd;
  --bg-surface: #ffffff;
  --bg-surface-alt: #fbfbfe;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-glass-card: rgba(255, 255, 255, 0.88);

  /* Text & Hierarchy */
  --text-main: #1e293b;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Borders & Dividers */
  --border-light: #edf2f9;
  --border-focus: #5138EE;
  --border-glass: rgba(81, 56, 238, 0.08);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 20px 40px -15px rgba(81, 56, 238, 0.18);
  --shadow-glow: 0 10px 30px rgba(81, 56, 238, 0.28);
  --shadow-glow-hover: 0 14px 38px rgba(81, 56, 238, 0.42);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Animation Timings */
  --transition-fast: all 0.18s ease-in-out;
  --transition-base: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--text-main);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.025em;
}

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

/* ==========================================================================
   HEADER & GLASSMORPHIC NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.site-header-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

@media (min-width: 1600px) {
  .site-header-container {
    max-width: 1560px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 42px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-nav,
.netvera-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.site-nav .nav-item,
.netvera-nav .nav-item,
.nav-platform-item {
  white-space: nowrap !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b !important;
  padding: 7px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.nav-platform-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-platform-item i,
.dropdown-toggle-custom i {
  font-size: 0.72rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.site-nav .nav-item:hover,
.netvera-nav .nav-item:hover,
.nav-platform-item:hover,
.nav-dropdown:hover .nav-platform-item,
.nav-dropdown:hover .dropdown-toggle-custom {
  color: var(--primary) !important;
  background: #f1f5f9;
}
.nav-dropdown:hover i {
  transform: rotate(180deg);
  color: var(--primary);
}

.site-nav .nav-item.nav-item-highlight {
  color: var(--primary) !important;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-toggle-custom {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}
.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown-item-custom {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.dropdown-item-custom:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-track-action {
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(81, 56, 238, 0.25);
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-track-action:hover {
  background: var(--primary-gradient);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(81, 56, 238, 0.38);
  transform: translateY(-2px);
}

/* Screen size adaptive scaling (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .site-header-container {
    padding: 8px 16px;
    gap: 6px;
  }
  .site-logo img {
    height: 36px;
    max-width: 150px;
  }
  .site-nav .nav-item,
  .netvera-nav .nav-item,
  .nav-platform-item {
    padding: 6px 7px;
    font-size: 0.82rem;
    gap: 4px;
  }
  .nav-platform-item img {
    width: 16px;
    height: 16px;
  }
  .nav-item-gift {
    padding: 5px 8px;
    font-size: 0.80rem;
    gap: 4px;
  }
  .badge-free-label {
    font-size: 0.58rem;
    padding: 1px 4px;
  }
  .btn-track-action {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
}

/* Mobile Drawer (Offcanvas) */
.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: 1px solid rgba(81, 56, 238, 0.2);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}
.drawer-logo {
  max-height: 38px;
  width: auto;
}
.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.drawer-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-link {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  text-decoration: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.drawer-link:hover, .drawer-link.highlight {
  background: var(--primary-light);
  color: var(--primary);
}
.drawer-dropdown-btn {
  width: 100%;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  border: none;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.drawer-dropdown-content {
  display: none;
  padding-left: 28px;
  margin: 4px 0 8px 0;
}
.drawer-dropdown-content a {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  color: #64748b;
  text-decoration: none;
  border-radius: 6px;
}
.drawer-dropdown-content a:hover {
  color: var(--primary);
  background: #f8fafd;
}
.drawer-dropdown.open .drawer-dropdown-content {
  display: block;
}
.drawer-dropdown.open .arrow-icon {
  transform: rotate(180deg);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--primary-gradient);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-hover);
  color: #ffffff !important;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--primary);
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-custom:hover {
  background: var(--primary-light);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.btn-whatsapp-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn-whatsapp-custom:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
}
.btn-whatsapp-custom *, .btn-whatsapp-custom i, .btn-whatsapp-custom span {
  color: #ffffff !important;
}

/* Universal Button Contrast & Hover System */
.btn-success, a.btn-success, button.btn-success, input.btn-success {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}
.btn-success:hover, .btn-success:focus, .btn-success:active,
a.btn-success:hover, a.btn-success:focus, a.btn-success:active,
button.btn-success:hover, button.btn-success:focus, button.btn-success:active {
  background-color: #059669 !important;
  border-color: #059669 !important;
  color: #ffffff !important;
}
.btn-success *, a.btn-success *, button.btn-success *,
.btn-success i, a.btn-success i, .btn-success span, a.btn-success span {
  color: #ffffff !important;
}

.btn-primary, a.btn-primary, button.btn-primary, input.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active,
button.btn-primary:hover, button.btn-primary:focus, button.btn-primary:active {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: #ffffff !important;
}
.btn-primary *, a.btn-primary *, button.btn-primary *,
.btn-primary i, a.btn-primary i, .btn-primary span, a.btn-primary span {
  color: #ffffff !important;
}

.btn-info, a.btn-info, button.btn-info, input.btn-info {
  background-color: #0ea5e9 !important;
  border-color: #0ea5e9 !important;
  color: #ffffff !important;
}
.btn-info:hover, a.btn-info:hover, button.btn-info:hover {
  background-color: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #ffffff !important;
}
.btn-info *, a.btn-info * {
  color: #ffffff !important;
}

.btn-danger, a.btn-danger, button.btn-danger, input.btn-danger {
  background-color: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
}
.btn-danger:hover, a.btn-danger:hover, button.btn-danger:hover {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #ffffff !important;
}
.btn-danger *, a.btn-danger * {
  color: #ffffff !important;
}

.btn-warning, a.btn-warning, button.btn-warning, input.btn-warning {
  background-color: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #0f172a !important;
}
.btn-warning:hover, a.btn-warning:hover, button.btn-warning:hover {
  background-color: #d97706 !important;
  border-color: #d97706 !important;
  color: #0f172a !important;
}
.btn-warning *, a.btn-warning * {
  color: #0f172a !important;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(81, 56, 238, 0.18);
}

/* ==========================================================================
   CARDS & SURFACES
   ========================================================================== */
.card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: var(--transition-base);
}
.card-custom:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(81, 56, 238, 0.18);
}

/* Platform Tile (.platform-tile) */
.platform-tile {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
  display: block;
  text-decoration: none;
  height: 100%;
}
.platform-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 56, 238, 0.3);
  box-shadow: var(--shadow-card-hover);
}
.platform-tile-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}
.platform-tile:hover .platform-tile-icon {
  transform: scale(1.1);
}
.platform-tile-icon img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}
.platform-tile-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.platform-tile-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Package Card (.pkg-card) */
.pkg-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-base);
}
.pkg-card:hover {
  transform: translateY(-7px);
  border-color: rgba(81, 56, 238, 0.3);
  box-shadow: var(--shadow-card-hover);
}
.pkg-card-thumb {
  background: var(--bg-surface-alt);
  border-radius: var(--radius-md);
  padding: 16px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--border-light);
}
.pkg-card-thumb img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pkg-card:hover .pkg-card-thumb img {
  transform: scale(1.08);
}
.pkg-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 12px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}
.pkg-card-price {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pkg-card-price .val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}
.pkg-card-price .cur {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Feature Bullets inside package cards */
.pkg-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.pkg-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-features-list li i {
  color: var(--success);
  font-size: 1.05rem;
}

.pkg-card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Stat Box */
.stat-box {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-box i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}
.stat-box .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-heading);
  font-family: 'Outfit', sans-serif;
  display: block;
}
.stat-box .lbl {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   TIMELINE STEPPER (.stepper-timeline)
   ========================================================================== */
.stepper-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0 30px 0;
}
.stepper-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: var(--border-light);
  z-index: 1;
}
.stepper-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}
.stepper-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
.stepper-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.stepper-step.completed .stepper-icon {
  background: var(--success);
  color: #ffffff;
}
.stepper-step.completed .stepper-title {
  color: var(--success);
  font-weight: 700;
}
.stepper-step.active .stepper-icon {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 0 6px var(--primary-light-2);
}
.stepper-step.active .stepper-title {
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   REVIEW CARDS
   ========================================================================== */
.review-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-base);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px dashed var(--border-light);
}

/* ==========================================================================
   ACCORDION STYLING (FAQ)
   ========================================================================== */
.accordion-item {
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  background: var(--bg-surface);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1.02rem;
  padding: 18px 22px;
  background: var(--bg-surface);
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--bg-surface-alt);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(81, 56, 238, 0.2);
}
.accordion-body {
  padding: 20px 22px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* ==========================================================================
   FORM CONTROLS & FLOATING INPUTS
   ========================================================================== */
.form-floating > .form-control {
  border-radius: var(--radius-md);
  border: 1.5px solid #e2e8f0;
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.95rem;
}
.form-floating > .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem var(--primary-light-2);
}
.form-floating > label {
  padding: 1rem 0.9rem;
  color: var(--text-light);
}

/* ==========================================================================
   CALL TO ACTION HERO BANNER
   ========================================================================== */
.cta-banner-box {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.cta-banner-box h2 {
  color: #ffffff !important;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner-box p {
  font-size: 1.08rem;
  opacity: 0.92;
  max-width: 620px;
  margin-bottom: 25px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1199px) {
  .site-header-container { padding: 12px 16px; }
}

@media (max-width: 991px) {
  .page-hero-section h1 { font-size: 1.8rem; }
  .card-custom { padding: 24px 18px; }
  .cta-banner-box { padding: 35px 20px; text-align: center; }
  .cta-banner-box p { margin: 0 auto 20px auto; }
  .stepper-timeline {
    flex-direction: column;
    gap: 18px;
  }
  .stepper-timeline::before { display: none; }
  .stepper-step {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .stepper-icon { margin-bottom: 0; }
}

@media (max-width: 576px) {
  .site-header-container { padding: 10px 14px; }
  .site-logo img { height: 36px; max-width: 150px; }
  .btn-primary-gradient, .btn-outline-custom, .btn-whatsapp-custom {
    padding: 11px 20px;
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   PREMIUM UI ENHANCEMENTS & MICRO-ANIMATIONS
   ========================================================================== */

/* Icon Container Utility - ensures proper rendering */
[class*="icofont-"], [class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth entrance animation for sections */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(81, 56, 238, 0.25); }
  50% { box-shadow: 0 0 0 12px rgba(81, 56, 238, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

/* Section entrance animations */
section {
  animation: fadeSlideUp 0.6s ease-out both;
}

/* Enhanced stat-box hover animation */
.stat-box {
  transition: var(--transition-base);
  position: relative;
}
.stat-box:hover {
  transform: translateY(-3px);
}
.stat-box i {
  transition: transform 0.3s ease;
}
.stat-box:hover i {
  transform: scale(1.15);
}

/* Enhanced Platform Tile icons with gradient outline on hover */
.platform-tile:hover .platform-tile-icon {
  transform: scale(1.1);
  border-color: rgba(81, 56, 238, 0.3);
  background: rgba(81, 56, 238, 0.04);
}

/* Package card shine overlay on hover */
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}
.pkg-card:hover::before {
  left: 100%;
}

/* Better badge & pill styling */
.badge {
  letter-spacing: 0.02em;
}
.badge-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #fff !important;
  border: none !important;
}

/* Trust badge pulse animation */
.trust-badge-pill {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Enhanced form controls */
.form-control, .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(81, 56, 238, 0.12);
  outline: none;
}

/* Enhanced progress bar */
.progress {
  border-radius: 8px;
  background: #e2e8f0;
  overflow: hidden;
}
.progress-bar {
  background: var(--primary-gradient) !important;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Enhanced modal styling */
.modal-content {
  border-radius: 18px !important;
  border: none !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  overflow: hidden;
}

/* Free Tools Category Filter Tabs */
.btn-filter {
  background: #f1f5f9;
  color: var(--text-main);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  border-radius: var(--radius-pill) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 18px;
}
.btn-filter:hover, .btn-filter.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(81, 56, 238, 0.25);
  transform: translateY(-1px);
}

/* Icon circle containers (used in Why Us, Features sections) */
.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon-circle:hover,
.card-custom:hover .icon-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Footer enhancements */
footer, .footer-section {
  position: relative;
}
.footer-links-list li {
  margin-bottom: 6px;
}
.footer-links-list li a {
  color: var(--text-muted) !important;
  transition: all 0.2s ease;
}
.footer-links-list li a:hover {
  color: var(--primary) !important;
  transform: translateX(4px);
}
@media (max-width: 767.98px) {
  .footer-section .col-12 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }
  .footer-section .col-12:last-child {
    margin-bottom: 0 !important;
  }
}

/* Tooltip-style floating labels */
.tool-item {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.tool-item:hover {
  transform: translateY(-6px);
}

/* CTA banner gradient shimmer */
.cta-banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
}

/* WhatsApp floating button enhancement */
.whatsapp-floating, a[href*="wa.me"] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-floating:hover, a[href*="wa.me"]:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Scrollbar Enhancement (Webkit) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), #7b66ff);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Alert / Success message enhancements */
.alert {
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
}
.alert-success {
  background: var(--success-light);
  color: #065f46;
}
.alert-warning {
  background: var(--warning-light);
  color: #92400e;
}

/* Table enhancements */
.table {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.table thead th {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom-width: 2px;
}
.table tbody tr {
  transition: background 0.15s ease;
}
.table tbody tr:hover {
  background: rgba(81, 56, 238, 0.02);
}

/* Responsive gap utility */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* Selection Highlight */
::selection {
  background: rgba(81, 56, 238, 0.15);
  color: var(--primary-dark);
}

/* ==========================================================================
   ADVANCED MOBILE RESPONSIVE ENGINE & MINIMAL SPACING
   ========================================================================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

@media (max-width: 991.98px) {
  .site-header-container {
    padding: 10px 16px !important;
  }
}

@media (max-width: 767.98px) {
  /* Global Container Edge Spacing - 12px for breathing room, zero overflow */
  .container, .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Compact grid margins to prevent horizontal scroll */
  .row {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }
  .row > * {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .g-3, .g-4, .g-5 {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 0.75rem !important;
  }

  /* Compact Hero Section */
  .page-hero-section {
    padding: 32px 0 24px 0 !important;
  }
  section.light-version:first-of-type {
    padding: 36px 0 30px 0 !important;
  }

  h1, .font-heading {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  /* Trust Badge Pill */
  .trust-badge-pill {
    font-size: 0.78rem !important;
    padding: 5px 12px !important;
    margin-bottom: 12px !important;
  }

  /* Mobile Platform Category Tiles (.platform-tile) */
  .platform-tile {
    padding: 14px 6px !important;
    border-radius: 14px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
  .platform-tile-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 8px auto !important;
    border-radius: 12px !important;
    background: #fbfbfe !important;
  }
  .platform-tile-icon img {
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain !important;
  }
  .platform-tile-name {
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .platform-tile-sub {
    font-size: 0.70rem !important;
    color: var(--text-muted) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* Mobile Package Cards (.pkg-card) */
  .pkg-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05) !important;
  }
  .pkg-card-thumb {
    height: 110px !important;
    padding: 8px !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
  }
  .pkg-card-thumb img {
    max-height: 85px !important;
    max-width: 90% !important;
  }
  .pkg-card-title {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }
  .pkg-features-list {
    font-size: 0.80rem !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
  }
  .pkg-features-list li i {
    font-size: 0.90rem !important;
  }
  .pkg-card-price {
    margin-bottom: 12px !important;
  }
  .pkg-card-price .val {
    font-size: 1.35rem !important;
  }

  /* Stats Ribbon Box */
  .stat-box {
    padding: 12px 8px !important;
    border-radius: 12px !important;
    text-align: center !important;
  }
  .stat-box .num {
    font-size: 1.15rem !important;
  }
  .stat-box .lbl {
    font-size: 0.72rem !important;
  }

  /* General Cards & Surfaces */
  .card-custom {
    padding: 18px 14px !important;
    border-radius: 14px !important;
  }

  /* Buttons on Mobile */
  .btn-primary-gradient, .btn-outline-custom, .btn-whatsapp-custom {
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
    border-radius: 12px !important;
  }

  /* Breadcrumb Custom */
  .breadcrumb-custom {
    font-size: 0.80rem !important;
    flex-wrap: wrap !important;
  }

  /* Header & Logo */
  .site-header-container {
    padding: 8px 12px !important;
  }
  .site-logo img {
    height: 36px !important;
    max-width: 140px !important;
  }
  .mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.25rem !important;
  }

  /* Search tracking form on Mobile */
  form[action*="siparis-sorgula"] {
    flex-direction: column !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }
  form[action*="siparis-sorgula"] input {
    width: 100% !important;
    padding: 8px 10px !important;
    font-size: 0.90rem !important;
  }
  form[action*="siparis-sorgula"] button {
    width: 100% !important;
    padding: 9px 16px !important;
  }
}

@media (max-width: 480px) {
  .container, .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .platform-tile {
    padding: 12px 4px !important;
  }
  .platform-tile-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .platform-tile-icon img {
    max-width: 28px !important;
    max-height: 28px !important;
  }
  .platform-tile-name {
    font-size: 0.82rem !important;
  }
}

/* ==========================================================================
   3D HERO SHOWCASE & FLOATING SOCIAL HUB ENGINE (Netvera 3D Interactive Engine)
   ========================================================================== */
.hero-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  perspective: 1000px;
  padding: 30px 15px;
}

/* Ambient glow lights behind showcase */
.hero-glow-orb-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(81, 56, 238, 0.35) 0%, rgba(234, 68, 157, 0.15) 60%, transparent 80%);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 6s ease-in-out infinite alternate;
}
.hero-glow-orb-2 {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(234, 68, 157, 0.3) 0%, rgba(81, 56, 238, 0.12) 60%, transparent 80%);
  filter: blur(45px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbPulse 7s ease-in-out infinite alternate-reverse;
}

@keyframes orbPulse {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(15px, -15px); opacity: 1; }
}

/* Main Hub Card */
.hero-hub-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0 25px 60px -15px rgba(81, 56, 238, 0.22), 0 0 0 1px rgba(81, 56, 238, 0.06);
  padding: 24px 22px;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  animation: heroCardFloat 5s ease-in-out infinite;
}
.hero-hub-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 35px 70px -15px rgba(81, 56, 238, 0.32);
}

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

/* Hub Header */
.hub-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 18px;
}
.hub-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}
.hub-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 2px solid #ffffff;
  display: block;
}
.hub-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid #ffffff;
}
.hub-user-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-user-subtitle {
  font-size: 0.80rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Live Stats Grid */
.hub-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.hub-stat-item {
  background: #f8fafd;
  border: 1px solid #edf2f9;
  border-radius: 16px;
  padding: 12px 6px;
  text-align: center;
  transition: transform 0.2s ease;
}
.hub-stat-item:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(81, 56, 238, 0.08);
}
.hub-stat-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text-heading);
  line-height: 1.2;
  display: block;
}
.hub-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* Growth Progress Bar */
.hub-growth-box {
  background: linear-gradient(135deg, rgba(81, 56, 238, 0.06), rgba(234, 68, 157, 0.06));
  border: 1px solid rgba(81, 56, 238, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
}
.hub-growth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: radarPulse 1.8s infinite;
  margin-right: 6px;
}

@keyframes radarPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Floating Orbit Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 10px 16px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  pointer-events: auto;
  white-space: nowrap;
}

.floating-badge-top-right {
  top: -8px;
  right: -25px;
  animation: floatTopRight 4.5s ease-in-out infinite;
}
.floating-badge-bottom-left {
  bottom: -15px;
  left: -25px;
  animation: floatBottomLeft 5.2s ease-in-out infinite;
}

@keyframes floatTopRight {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes floatBottomLeft {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(10px) rotate(1deg); }
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.badge-icon-heart {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.badge-icon-rocket {
  background: rgba(81, 56, 238, 0.12);
  color: var(--primary);
}
.badge-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}
.badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating Platform Orbit Bubbles */
.orbit-bubble {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #edf2f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 3;
}
.orbit-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orbit-bubble-1 {
  top: 15%;
  left: -20px;
  animation: floatSlow 4s ease-in-out infinite;
}
.orbit-bubble-2 {
  bottom: 25%;
  right: -20px;
  animation: floatSlow 4.8s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

/* Custom Image Showcase Wrapper */
.hero-custom-image-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 16px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 25px 60px -15px rgba(81, 56, 238, 0.20);
  z-index: 2;
}
.hero-custom-image-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-showcase-wrapper {
    margin-top: 35px;
    max-width: 420px;
  }
  .floating-badge-top-right {
    right: 0;
    top: -15px;
  }
  .floating-badge-bottom-left {
    left: 0;
    bottom: -20px;
  }
  .orbit-bubble-1 {
    left: 0;
  }
  .orbit-bubble-2 {
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-showcase-wrapper {
    padding: 20px 0;
    max-width: 100%;
  }
  .hero-hub-card {
    padding: 18px 14px;
    border-radius: 20px;
  }
  .hub-avatar-wrap {
    width: 48px;
    height: 48px;
  }
  .hub-user-title {
    font-size: 0.95rem;
  }
  .hub-stat-val {
    font-size: 1rem;
  }
  .floating-badge {
    padding: 6px 10px;
    border-radius: 14px;
    gap: 6px;
  }
  .badge-icon-box {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
  .badge-title {
    font-size: 0.76rem;
  }
  .badge-sub {
    font-size: 0.65rem;
  }
  .orbit-bubble {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}

/* ==========================================================================
   HOMEPAGE BENCHMARK SECTIONS ENGINE (Platform Pills, Service Matrix, SEO)
   ========================================================================== */

/* 1. Platform Quick Navigation Bar */
.platform-pills-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 4px 18px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.platform-pills-nav::-webkit-scrollbar {
  display: none;
}
.platform-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-heading);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.platform-pill-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.platform-pill-btn:hover, .platform-pill-btn.active {
  background: var(--primary-gradient);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(81, 56, 238, 0.25);
}
.platform-pill-btn:hover img, .platform-pill-btn.active img {
  filter: brightness(0) invert(1);
}

/* 2. Service Matrix Sub-Service Cards */
.service-matrix-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-matrix-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 16px 35px rgba(81, 56, 238, 0.12);
}
.service-matrix-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.service-matrix-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(81, 56, 238, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}
.service-matrix-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.service-matrix-sub {
  font-size: 0.80rem;
  color: var(--text-muted);
}
.service-matrix-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 3. 3-Step Process Cards */
.process-step-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}
.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(81, 56, 238, 0.12);
}
.process-step-num {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}
.process-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(81, 56, 238, 0.1) 0%, rgba(234, 68, 157, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 10px auto 20px auto;
  transition: transform 0.3s ease;
}
.process-step-card:hover .process-step-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient);
  color: #ffffff;
}

/* 4. Comparison Table (Biz vs Diğerleri) */
.comparison-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}
.comparison-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.comparison-table th {
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
  font-size: 0.94rem;
  vertical-align: middle;
}
.comparison-table tr:hover {
  background: #fbfcfe;
}
.badge-winner {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
}
.badge-loser {
  background: rgba(239, 68, 68, 0.10);
  color: #dc2626;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
}

/* 5. SEO & GEO Knowledge Box */
.seo-knowledge-box {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}
.seo-knowledge-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.seo-knowledge-box h3, .seo-knowledge-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 24px;
  margin-bottom: 10px;
}
.seo-knowledge-box p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.geo-trust-badge {
  background: linear-gradient(135deg, rgba(81, 56, 238, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(81, 56, 238, 0.18);
  border-radius: 14px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

/* 6. Partner Brands Strip */
.partner-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 24px 10px;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #64748b;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.partner-logo-item i {
  font-size: 1.35rem;
  color: var(--primary);
}
.partner-logo-item:hover {
  color: var(--text-heading);
  transform: translateY(-2px);
}

/* ==========================================================================
   Netvera Modern CONTINUOUS LEFT-SCROLLING MARQUEE
   ========================================================================== */
.platform-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}
.platform-marquee-wrapper::before,
.platform-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}
.platform-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.platform-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.platform-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeLeft 34s linear infinite;
  align-items: center;
  flex-shrink: 0;
}
.platform-marquee-wrapper:hover .platform-marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.platform-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid #edf2f9;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-heading);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.platform-marquee-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.platform-marquee-pill:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(81, 56, 238, 0.16);
}

/* ==========================================================================
   Netvera Modern INTERACTIVE PLATFORM TABS & SERVICE MATRIX
   ========================================================================== */
.netvera-tabs-container {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
}

.netvera-tabs-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1.5px solid #f1f5f9;
  scrollbar-width: none;
}
.netvera-tabs-nav::-webkit-scrollbar {
  display: none;
}

.netvera-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8fafd;
  border: 1.5px solid #edf2f9;
  border-radius: 16px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.netvera-tab-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.netvera-tab-btn:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.netvera-tab-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(81, 56, 238, 0.28);
}
.netvera-tab-btn.active img {
  filter: brightness(0) invert(1);
}

.netvera-tab-content {
  display: none;
  animation: fadeInTab 0.35s ease;
}
.netvera-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left Platform Hero Box */
.netvera-platform-hero {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafd 100%);
  border: 1.5px solid var(--border-light);
  border-radius: 22px;
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.netvera-platform-hero-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf2f9;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  padding: 14px;
}
.netvera-platform-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.netvera-platform-hero-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.netvera-platform-hero-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Right Services Grid */
.netvera-service-tile {
  background: #ffffff;
  border: 1.5px solid #edf2f9;
  border-radius: 18px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-heading);
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  height: 100%;
}
.netvera-service-tile:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(81, 56, 238, 0.12);
  color: var(--primary);
}
.netvera-service-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(81, 56, 238, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.netvera-service-tile:hover .netvera-service-tile-icon {
  background: var(--primary-gradient);
  color: #ffffff;
}
.netvera-service-tile-name {
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.25;
  margin-bottom: 3px;
  color: var(--text-heading);
}
.netvera-service-tile:hover .netvera-service-tile-name {
  color: var(--primary);
}
.netvera-service-tile-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
}

/* Header Mega Dropdown */
.dropdown-menu-mega {
  position: absolute;
  top: 100%;
  left: -150px;
  width: 640px;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}
.nav-dropdown:hover .dropdown-menu-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mega-platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-heading);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}
.mega-platform-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.mega-platform-item:hover {
  background: #f8fafd;
  border-color: #edf2f9;
  color: var(--primary);
  transform: translateX(3px);
}

/* ==========================================================================
   MOBILE RESPONSIVE & LAYOUT OPTIMIZATION ENGINE
   ========================================================================== */

/* Prevent any horizontal overflow issues on small devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Base Container Gutter Controls */
@media (max-width: 991.98px) {
  .hero-section-modern {
    padding: 45px 0 40px 0 !important;
    text-align: center;
  }
  .hero-section-modern .pe-lg-3 {
    padding-right: 0 !important;
  }
  .hero-section-modern p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section-modern form {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-section-modern .d-flex {
    justify-content: center !important;
  }
  .hero-showcase-wrapper {
    margin-top: 25px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  
  /* Topbar / Header adjustments */
  .site-header {
    height: 64px;
  }
  .site-logo img {
    max-height: 36px !important;
  }
  
  /* Hero Section */
  .hero-section-modern h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .hero-section-modern p {
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
  }
  .trust-badge-pill {
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
  }
  
  /* NETVERA PLATFORM Tabs Matrix */
  .netvera-tabs-container {
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }
  .netvera-tabs-nav {
    gap: 8px !important;
    padding-bottom: 14px !important;
    margin-bottom: 18px !important;
    -webkit-overflow-scrolling: touch;
  }
  .netvera-tab-btn {
    padding: 8px 14px !important;
    font-size: 0.86rem !important;
    border-radius: 12px !important;
    gap: 6px !important;
  }
  .netvera-tab-btn img {
    width: 20px !important;
    height: 20px !important;
  }
  .netvera-platform-hero {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
  }
  .netvera-platform-hero-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
  }
  .netvera-platform-hero-title {
    font-size: 1.2rem !important;
  }
  .netvera-service-tile {
    padding: 12px 10px !important;
    border-radius: 14px !important;
    gap: 10px !important;
  }
  .netvera-service-tile-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
  }
  .netvera-service-tile-name {
    font-size: 0.86rem !important;
  }
  .netvera-service-tile-price {
    font-size: 0.74rem !important;
  }
  
  /* Marquee pills on mobile */
  .platform-marquee-wrapper {
    padding: 12px 0 !important;
  }
  .platform-marquee-pill {
    padding: 6px 14px !important;
    font-size: 0.84rem !important;
    gap: 8px !important;
  }
  .platform-marquee-pill img {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Section Headings & Spacing */
  section {
    padding: 34px 0 !important;
  }
  section h2 {
    font-size: 1.42rem !important;
    font-weight: 800 !important;
    line-height: 1.28 !important;
    margin-bottom: 6px !important;
  }
  section p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  /* Minimalist 2-Column Mobile Package Cards */
  .pkg-card {
    padding: 10px 8px !important;
    border-radius: 14px !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .pkg-card .badge {
    font-size: 0.64rem !important;
    padding: 2px 5px !important;
  }
  .pkg-card-thumb {
    height: 72px !important;
    padding: 4px !important;
    margin-bottom: 6px !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
  }
  .pkg-card-thumb img {
    max-height: 54px !important;
  }
  .pkg-card-title {
    font-size: 0.80rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    min-height: 32px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .pkg-features-list {
    font-size: 0.68rem !important;
    margin-bottom: 6px !important;
    gap: 2px !important;
    line-height: 1.35 !important;
  }
  .pkg-features-list li {
    padding: 1px 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .pkg-features-list li i {
    font-size: 0.72rem !important;
  }
  .pkg-card-price {
    margin: 4px 0 !important;
    text-align: center !important;
  }
  .pkg-card-price .val {
    font-size: 1.18rem !important;
    font-weight: 800 !important;
  }
  .pkg-card-price .cur {
    font-size: 0.70rem !important;
    font-weight: 700 !important;
  }
  .pkg-card-actions .btn-primary-gradient {
    padding: 7px 8px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
  }

  /* Minimalist 2-Column Mobile Free Tools Cards */
  .tool-card-minimal {
    padding: 12px 10px !important;
    border-radius: 14px !important;
  }
  .tool-icon-box {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }
  .tool-card-title {
    font-size: 0.80rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    min-height: 32px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .tool-card-desc {
    display: none !important;
  }
  .tool-card-minimal .btn-primary-gradient {
    padding: 6px 6px !important;
    height: 32px !important;
    line-height: 20px !important;
    font-size: 0.75rem !important;
    border-radius: 8px !important;
  }
  
  /* Comparison Card */
  .comparison-card {
    border-radius: 14px !important;
  }
  .comparison-table th, .comparison-table td {
    padding: 10px 8px !important;
    font-size: 0.78rem !important;
  }
  .badge-winner, .badge-loser {
    font-size: 0.72rem !important;
    padding: 3px 6px !important;
  }
  
  /* SEO Knowledge Box */
  .seo-knowledge-box {
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }
  .seo-knowledge-box h2 {
    font-size: 1.22rem !important;
  }
  
  /* Review Cards */
  .review-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
  }
  
  /* Floating Support Widget & Toast */
  .floating-support-widget {
    bottom: 74px !important;
    right: 14px !important;
  }
  .floating-btn-main {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.45rem !important;
  }
  .social-proof-toast {
    bottom: 74px !important;
    left: 10px !important;
    right: 10px !important;
    max-width: calc(100% - 20px) !important;
    padding: 8px 12px !important;
  }
  
  /* Footer adjustments */
  .footer-section {
    padding-top: 32px !important;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .hero-section-modern form {
    flex-direction: column !important;
    padding: 6px !important;
  }
  .hero-section-modern form input {
    padding: 10px 12px !important;
    width: 100% !important;
  }
  .hero-section-modern form button {
    width: 100% !important;
  }
  
  .btn-primary-gradient, .btn-outline-custom {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   NETVERA PLATFORM NAVIGATION & HEADER SYSTEM
   ========================================================================== */
.netvera-topbar {
  background: #f8fafd;
  border-bottom: 1px solid #edf2f9;
  padding: 7px 0;
  font-size: 0.83rem;
  font-weight: 600;
  color: #64748b;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-weight: 600;
}
.topbar-separator {
  color: #cbd5e1;
}
.topbar-link {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease;
}
.topbar-link:hover {
  color: var(--primary);
}
.topbar-wa-badge {
  background: #25D366;
  color: #ffffff !important;
  border-radius: 30px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease;
}
.topbar-wa-badge:hover {
  transform: translateY(-1px);
}


.netvera-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}
.nav-dropdown:hover .netvera-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.dropdown-header-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}
.dropdown-header-strip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.dropdown-header-strip strong {
  font-size: 0.92rem;
  color: #0f172a;
  display: block;
}
.dropdown-header-strip span {
  font-size: 0.74rem;
  color: #64748b;
  display: block;
}
.dropdown-links-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dropdown-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.18s ease;
}
.dropdown-service-link:hover {
  background: #f8fafd;
  color: var(--primary);
  transform: translateX(3px);
}
.dropdown-service-link i {
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}
.dropdown-service-link .title {
  font-size: 0.86rem;
  font-weight: 700;
  display: block;
}
.dropdown-service-link .sub {
  font-size: 0.72rem;
  color: #64748b;
  display: block;
}
.dropdown-footer-action {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.dropdown-footer-action a {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.nav-item-gift {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.12) 0%, rgba(249, 115, 22, 0.12) 100%);
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  color: #b45309 !important;
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.nav-item-gift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.25);
}
.badge-free-label {
  background: linear-gradient(135deg, #eab308, #f97316);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}
.btn-header-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* netvera Mobile Fixed Bottom Navigation Bar */
.netvera-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 9995;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  background: transparent;
  padding: 6px;
}
.bottom-nav-item i {
  font-size: 1.15rem;
}
.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--primary);
}
.bottom-nav-wa {
  color: #25D366 !important;
}
.bottom-nav-gift {
  position: relative;
  color: #d97706;
}
.gift-badge-dot {
  position: absolute;
  top: 4px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  border: 1.5px solid #ffffff;
}

/* Mobile Offcanvas Drawer Enhancements */
.drawer-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
  padding: 14px 18px 6px 18px;
}
.drawer-platform-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid #f8fafc;
  transition: background 0.15s ease;
}
.drawer-platform-link:hover {
  background: #f8fafd;
  color: var(--primary);
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 62px !important;
  }
}

/* ==========================================================================
   PAGE HERO BANNER & BREADCRUMB SYSTEM (Universal Inner Pages)
   ========================================================================== */
.page-hero-section {
  background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 38px 0 28px 0;
  text-align: center;
  position: relative;
}
.page-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 6px 18px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  font-size: 0.84rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.breadcrumb-custom li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-custom li a {
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s ease;
}
.breadcrumb-custom li a:hover {
  color: var(--primary);
}
.breadcrumb-custom li i {
  font-size: 0.72rem;
  color: #94a3b8;
}
.breadcrumb-custom li.active {
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   PLATFORM FILTER BAR (Universal Filter Pills)
   ========================================================================== */
.platform-filter-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.platform-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  max-width: 100%;
}
.filter-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  color: #334155;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}
.filter-pill-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.filter-pill-item:hover {
  background: #f1f5f9;
  color: var(--primary);
  border-color: rgba(81, 56, 238, 0.2);
  transform: translateY(-1px);
}
.filter-pill-item:hover img {
  transform: scale(1.15);
}
.filter-pill-item.active {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(81, 56, 238, 0.35) !important;
  border-color: transparent !important;
}
.filter-pill-item.active i {
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  .platform-filter-wrapper {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 16px;
    padding: 6px 8px;
    width: 100%;
  }
  .platform-filter-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* ==========================================================================
   STREAMLINED MODERN BLOG CARDS & SPACING
   ========================================================================== */
.blog-card-modern {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
  border-color: rgba(81, 56, 238, 0.3);
}
.blog-thumb-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}
.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card-modern:hover .blog-thumb-wrap img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.blog-card-title a:hover {
  color: var(--primary);
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
}
.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--primary);
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: auto;
}
.blog-read-more-btn:hover {
  background: var(--primary);
  color: #ffffff !important;
}

