/* ========================================
   ORDER MODAL
   ======================================== */
.order-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.order-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  width: 90%;
  padding: 32px;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  position: relative;
}

.order-modal-backdrop.active .order-modal {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.order-modal-close:hover {
  background: var(--sand);
}

.order-modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}

.order-modal-subtitle {
  font-size: 14px;
  color: var(--graphite);
  text-align: center;
  margin-bottom: 24px;
}

.order-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-modal-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
}

.order-modal-option:hover {
  border-color: var(--plum);
  background: var(--plum-soft);
}

.order-modal-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-modal-option-icon.whatsapp {
  background: #25D366;
}

.order-modal-option-icon.telegram {
  background: #0088CC;
}

.order-modal-option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.order-modal-option-text {
  flex: 1;
}

.order-modal-option-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.order-modal-option-desc {
  font-size: 13px;
  color: var(--graphite);
  margin-top: 2px;
}

/* ========================================
   PREMIUMINSTA.COM — Premium White-Background
   Master Stylesheet | HTML5 + CSS3 + Vanilla JS
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
  /* Foundation */
  --white: #FFFFFF;
  --ivory: #FCFCFA;
  --mist: #F4F1EC;
  --sand: #ECE7DF;

  /* Typography */
  --ink: #171717;
  --charcoal: #2E2A31;
  --graphite: #6B6670;

  /* Accents */
  --plum: #7A3DF0;
  --plum-light: #925BFF;
  --plum-soft: rgba(122, 61, 240, 0.08);
  --gold: #C7A56A;
  --gold-soft: rgba(199, 165, 106, 0.12);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(23, 23, 23, 0.04);
  --shadow-md: 0 4px 16px rgba(23, 23, 23, 0.06);
  --shadow-lg: 0 12px 40px rgba(23, 23, 23, 0.08);
  --shadow-xl: 0 24px 60px rgba(23, 23, 23, 0.10);

  /* Borders */
  --border-light: 1px solid rgba(23, 23, 23, 0.06);
  --border-soft: 1px solid rgba(23, 23, 23, 0.10);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease-smooth);
  --transition-slow: all 0.5s var(--ease-smooth);

  /* Typography Scale */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;

  /* Layout */
  --container: 1280px;
  --nav-height: 72px;
  --utility-height: 40px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 110px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  background: var(--plum-soft);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--graphite);
  line-height: 1.7;
}

/* ========================================
   UTILITY BAR
   ======================================== */
.utility-bar {
  background: var(--ivory);
  border-bottom: var(--border-light);
  height: var(--utility-height);
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--graphite);
  position: relative;
  z-index: 200;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.utility-bar-left,
.utility-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition);
}

.utility-bar a:hover {
  color: var(--plum);
}

.utility-bar .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 640px) {
  .utility-bar {
    display: none;
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: var(--border-soft);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 150;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.nav-brand span {
  color: var(--plum);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--plum);
  background: var(--plum-soft);
}

.nav-cta {
  display: none;
  background: var(--plum);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(122, 61, 240, 0.25);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--plum-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122, 61, 240, 0.35);
}

/* ---- Dropdown ---- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-smooth);
}

.dropdown.active .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(23, 23, 23, 0.08);
   border-radius: 22px;
   box-shadow: 0 24px 60px rgba(23, 23, 23, 0.14);
   min-width: 300px;
   max-width: 360px;
   max-height: min(72vh, 760px);
   padding: 14px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-8px);
   transition: all 0.25s var(--ease-smooth);
   z-index: 160;
   overflow-y: auto;
   backdrop-filter: blur(18px);
   scrollbar-width: thin;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
   display: block;
   padding: 11px 14px;
   font-size: 13px;
   font-weight: 600;
   color: var(--charcoal);
   border-radius: 12px;
   white-space: normal;
   line-height: 1.4;
}

.dropdown-menu a:hover {
   background: linear-gradient(135deg, rgba(122, 61, 240, 0.1) 0%, rgba(122, 61, 240, 0.05) 100%);
   color: var(--plum);
}

.dropdown-menu .dm-label {
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.16em;
   color: var(--graphite);
   padding: 14px 12px 8px;
   pointer-events: none;
}

.dropdown-menu .dm-label:first-child {
   padding-top: 6px;
}

.dropdown-menu .dm-label:not(:first-child) {
   margin-top: 8px;
   border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.dropdown-menu a[href$="services.html"] {
   margin-top: 4px;
   padding: 10px 14px;
   border: 1px solid rgba(122, 61, 240, 0.14);
   background: rgba(122, 61, 240, 0.05);
   color: var(--plum) !important;
   font-size: 12px !important;
   font-weight: 700 !important;
   letter-spacing: 0.02em;
}

.dropdown-menu a[href$="services.html"]:hover {
   background: rgba(122, 61, 240, 0.1);
   transform: translateX(2px);
}

/* ---- Mobile Menu ---- */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 170;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 252, 250, 0.98) 100%);
   z-index: 140;
   padding: 24px;
   overflow-y: auto;
   transform: translateX(100%);
   transition: transform 0.35s var(--ease-smooth);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
   display: block;
   padding: 14px 0;
   font-size: 16px;
   font-weight: 600;
   color: var(--charcoal);
   border-bottom: var(--border-light);
}

.mobile-menu a:hover {
  color: var(--plum);
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  background: var(--plum);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 16px;
  border: none;
}

.mobile-dropdown-list {
   margin-top: 8px;
   padding: 10px 14px 8px;
   border: var(--border-light);
   border-radius: 20px;
   background: rgba(244, 241, 236, 0.6);
   display: block;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-list.active {
  display: block;
}

.mobile-dropdown-list a {
   font-size: 14px;
   padding: 11px 0;
   color: var(--graphite);
   border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}

.mobile-dropdown-list a:last-child {
   border-bottom: none;
}

.mobile-dropdown-list a[href$="services.html"] {
   color: var(--plum) !important;
   font-weight: 700 !important;
}

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

.mobile-dropdown-trigger.active {
   color: var(--plum);
}

.mobile-dropdown-trigger svg {
  transition: transform 0.3s;
}

.mobile-dropdown-trigger.active svg {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  .nav-cta {
    display: inline-block;
  }
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(122, 61, 240, 0.25);
}

.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 61, 240, 0.35);
}

.btn-secondary {
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid var(--sand);
}

.btn-secondary:hover {
  background: var(--mist);
  border-color: var(--graphite);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(199, 165, 106, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 165, 106, 0.35);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-telegram {
  background: #0088CC;
  color: var(--white);
}

.btn-telegram:hover {
  background: #0077B3;
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 600px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plum);
  background: var(--plum-soft);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  color: var(--plum);
}

.hero-desc {
  font-size: 17px;
  color: var(--graphite);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.hero-card {
  background: var(--ivory);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

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

.hero-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.hero-card p {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.5;
}

.hero-card .price-tag {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--plum);
  margin-top: 12px;
}

.hero-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.platform-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--white);
  border: var(--border-light);
  border-radius: 100px;
  color: var(--charcoal);
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 80px 0 110px;
  }
}

/* ========================================
   CARDS & PANELS
   ======================================== */
.card {
  background: var(--ivory);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122, 61, 240, 0.15);
}

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

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--plum);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.card-desc {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Glass Panel */
.glass-panel {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .glass-panel {
    padding: 56px;
  }
}

/* ========================================
   GRID SYSTEMS
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   PLATFORM GALLERIES
   ======================================== */
.category-panel {
  background: var(--ivory);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.category-panel:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(122, 61, 240, 0.12);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--plum-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 20px;
  height: 20px;
  color: var(--plum);
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.category-desc {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 16px;
  line-height: 1.6;
}

.category-pricing-note {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--graphite);
}

.category-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--white);
  border: var(--border-light);
  border-radius: 16px;
  color: var(--charcoal);
  transition: var(--transition);
}

.category-service:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 61, 240, 0.16);
  box-shadow: var(--shadow-sm);
}

.category-service.is-hidden {
  display: none;
}

.category-service-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.category-service-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  text-align: right;
  white-space: nowrap;
}

.category-action {
  margin-top: 16px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.category-action svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.category-action[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.category-action:hover {
  gap: 10px;
}

/* ========================================
   PRICING SECTIONS
   ======================================== */
.pricing-tabs {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-bottom: 36px;
   flex-wrap: wrap;
   padding: 10px;
   border: 1px solid rgba(23, 23, 23, 0.06);
   border-radius: 24px;
   background: linear-gradient(135deg, rgba(252, 252, 250, 1) 0%, rgba(244, 241, 236, 0.92) 100%);
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pricing-tab {
   padding: 12px 20px;
   font-size: 14px;
   font-weight: 600;
   color: var(--charcoal);
   background: transparent;
   border: 1px solid transparent;
   border-radius: 999px;
   cursor: pointer;
   transition: var(--transition);
}

.pricing-tab.active {
   background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
   color: var(--white);
   border-color: var(--plum);
   box-shadow: 0 10px 24px rgba(122, 61, 240, 0.28);
}

.pricing-tab:hover:not(.active) {
   background: rgba(122, 61, 240, 0.06);
   border-color: rgba(122, 61, 240, 0.08);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease-smooth);
}

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

/* ── Age Tabs ────────────────────────────────────────────────── */
.age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 18px 20px 0;
  background: transparent;
  border-bottom: 2px solid rgba(122, 61, 240, 0.10);
  position: relative;
}

.age-tab {
  position: relative;
  padding: 10px 20px 12px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 10px 10px 0 0;
  background: transparent;
  color: var(--graphite);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.age-tab:hover {
  color: var(--plum);
  background: rgba(122, 61, 240, 0.06);
}

.age-tab.active {
  color: var(--plum);
  background: rgba(122, 61, 240, 0.07);
  border-bottom-color: var(--plum);
  font-weight: 700;
}

.tab-content {
  display: none;
  padding: 28px 20px 24px;
  animation: fadeInUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tab-content.active {
  display: block;
}

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

/* ── Pricing Card Grid ───────────────────────────────────────── */
.pricing-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pricing-plan-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(23, 23, 23, 0.08);
  border-radius: 20px;
  padding: 20px 16px 18px;
  box-shadow: 0 4px 20px rgba(23, 23, 23, 0.06), 0 1px 4px rgba(23, 23, 23, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: auto;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.22s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .pricing-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pricing-plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(122, 61, 240, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(122, 61, 240, 0.14), 0 4px 16px rgba(23, 23, 23, 0.06);
  border-color: rgba(122, 61, 240, 0.28);
}

/* Featured / Popular card gets a premium highlight */
.pricing-plan-card:nth-child(2) {
  border-color: rgba(122, 61, 240, 0.30);
  background: linear-gradient(155deg, rgba(122,61,240,0.05) 0%, #ffffff 40%);
  box-shadow: 0 8px 32px rgba(122, 61, 240, 0.12), 0 1px 4px rgba(23,23,23,0.04);
}

.pricing-plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(122, 61, 240, 0.09);
  color: var(--plum);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-plan-card:nth-child(2) .pricing-plan-badge {
  background: var(--plum);
  color: #fff;
}

.pricing-plan-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pricing-plan-price {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.pricing-plan-card:nth-child(2) .pricing-plan-price {
  color: var(--plum);
}

.pricing-plan-meta {
  font-size: 12px;
  color: var(--graphite);
  line-height: 1.4;
  font-weight: 500;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(23,23,23,0.06);
}

.pricing-plan-details {
   margin-top: 18px;
   padding-top: 18px;
   border-top: 1px solid rgba(23, 23, 23, 0.06);
   display: grid;
   gap: 10px;
}

.pricing-plan-detail {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 12px;
   border-radius: 14px;
   background: rgba(255, 255, 255, 0.72);
   border: 1px solid rgba(23, 23, 23, 0.04);
}

.pricing-plan-detail-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
}

.pricing-plan-detail-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
}

.pricing-plan-features {
   margin: 20px 0 24px;
   display: grid;
   gap: 10px;
}

.pricing-plan-features li {
   position: relative;
   padding: 10px 12px 10px 30px;
   font-size: 14px;
   color: var(--charcoal);
   line-height: 1.5;
   border-radius: 14px;
   background: rgba(255, 255, 255, 0.68);
}

.pricing-plan-features li::before {
   content: '';
   position: absolute;
   top: 17px;
   left: 12px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--plum);
}

.pricing-plan-action {
  margin-top: auto;
}

.pricing-plan-action .btn {
  width: 100%;
}

.pricing-table-wrapper {
   overflow-x: auto;
   border-radius: 24px;
   border: 1px solid rgba(23, 23, 23, 0.08);
   background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 250, 1) 100%);
   box-shadow: 0 20px 46px rgba(23, 23, 23, 0.08);
   padding: 8px;
}

.pricing-table-wrapper.is-enhanced {
  display: none;
}

.pricing-table {
   width: 100%;
   min-width: 600px;
   border-collapse: separate;
   border-spacing: 0;
}

.pricing-table th {
   background: rgba(244, 241, 236, 0.9);
   padding: 16px 18px;
   text-align: left;
   font-size: 12px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--graphite);
   border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.pricing-table th:first-child {
   border-top-left-radius: 18px;
}

.pricing-table th:last-child {
   border-top-right-radius: 18px;
}

.pricing-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(23, 23, 23, 0.05);
    background: rgba(255, 255, 255, 0.92);
}

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

.pricing-table tr:hover td {
   background: rgba(122, 61, 240, 0.04);
}

.price-cell {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--plum);
    font-size: 17px;
}

/* Unique Platform Pricing Tables */
.platform-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(122, 61, 240, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(23, 23, 23, 0.06);
    border-radius: 18px 18px 0 0;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Instagram Table */
.instagram-table .platform-header {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 25%, #fcb045 50%, #ffdc80 75%, #833ab4 100%);
    color: white;
}

.instagram-table .platform-title {
    color: white;
}

.instagram-pricing th {
    background: rgba(131, 58, 180, 0.1);
    color: #833ab4;
}

.instagram-pricing tr:hover td {
    background: rgba(131, 58, 180, 0.06);
}

.instagram-pricing .price-cell {
    color: #833ab4;
}

/* Facebook Table */
.facebook-table .platform-header {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
}

.facebook-table .platform-title {
    color: white;
}

.facebook-pricing th {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.facebook-pricing tr:hover td {
    background: rgba(24, 119, 242, 0.06);
}

.facebook-pricing .price-cell {
    color: #1877f2;
}

/* LinkedIn Table */
.linkedin-table .platform-header {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    color: white;
}

.linkedin-table .platform-title {
    color: white;
}

.linkedin-pricing th {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.linkedin-pricing tr:hover td {
    background: rgba(0, 119, 181, 0.06);
}

.linkedin-pricing .price-cell {
    color: #0077b5;
}

/* TikTok Table */
.tiktok-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
    color: white;
}

.tiktok-table .platform-title {
    color: white;
}

.tiktok-pricing th {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.tiktok-pricing tr:hover td {
    background: rgba(0, 0, 0, 0.06);
}

.tiktok-pricing .price-cell {
    color: #ff0050;
}

/* X (Twitter) Table */
.x-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #ffffff 100%);
    color: white;
}

.x-table .platform-title {
    color: white;
}

.x-pricing th {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.x-pricing tr:hover td {
    background: rgba(0, 0, 0, 0.06);
}

.x-pricing .price-cell {
    color: #000;
}

/* Snapchat Table */
.snapchat-table .platform-header {
    background: linear-gradient(135deg, #FFFC00 0%, #000000 100%);
    color: black;
}

.snapchat-table .platform-title {
    color: black;
}

.snapchat-pricing th {
    background: rgba(255, 252, 0, 0.1);
    color: #000;
}

.snapchat-pricing tr:hover td {
    background: rgba(255, 252, 0, 0.06);
}

.snapchat-pricing .price-cell {
    color: #000;
}

/* Gmail Table */
.gmail-table .platform-header {
    background: linear-gradient(135deg, #EA4335 0%, #FBBC05 100%);
    color: white;
}

.gmail-table .platform-title {
    color: white;
}

.gmail-pricing th {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.gmail-pricing tr:hover td {
    background: rgba(234, 67, 53, 0.06);
}

.gmail-pricing .price-cell {
    color: #EA4335;
}

/* YouTube Table */
.youtube-table .platform-header {
    background: linear-gradient(135deg, #FF0000 0%, #282828 100%);
    color: white;
}

.youtube-table .platform-title {
    color: white;
}

.youtube-pricing th {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.youtube-pricing tr:hover td {
    background: rgba(255, 0, 0, 0.06);
}

.youtube-pricing .price-cell {
    color: #FF0000;
}

/* WhatsApp Table */
.whatsapp-table .platform-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-table .platform-title {
    color: white;
}

.whatsapp-pricing th {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.whatsapp-pricing tr:hover td {
    background: rgba(37, 211, 102, 0.06);
}

.whatsapp-pricing .price-cell {
    color: #25D366;
}

/* Telegram Table */
.telegram-table .platform-header {
    background: linear-gradient(135deg, #0088CC 0%, #2AABEE 100%);
    color: white;
}
.telegram-table .platform-title { color: white; }
.telegram-pricing th { background: rgba(0, 136, 204, 0.1); color: #0088CC; }
.telegram-pricing tr:hover td { background: rgba(0, 136, 204, 0.06); }
.telegram-pricing .price-cell { color: #0088CC; }

/* Threads Table */
.threads-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    color: white;
}
.threads-table .platform-title { color: white; }
.threads-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.threads-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.threads-pricing .price-cell { color: #000; }

/* Pinterest Table */
.pinterest-table .platform-header {
    background: linear-gradient(135deg, #E60023 0%, #FF5757 100%);
    color: white;
}
.pinterest-table .platform-title { color: white; }
.pinterest-pricing th { background: rgba(230, 0, 35, 0.1); color: #E60023; }
.pinterest-pricing tr:hover td { background: rgba(230, 0, 35, 0.06); }
.pinterest-pricing .price-cell { color: #E60023; }

/* Tumblr Table */
.tumblr-table .platform-header {
    background: linear-gradient(135deg, #001935 0%, #34526f 100%);
    color: white;
}
.tumblr-table .platform-title { color: white; }
.tumblr-pricing th { background: rgba(0, 25, 53, 0.1); color: #001935; }
.tumblr-pricing tr:hover td { background: rgba(0, 25, 53, 0.06); }
.tumblr-pricing .price-cell { color: #001935; }

/* VK Table */
.vk-table .platform-header {
    background: linear-gradient(135deg, #2787F5 0%, #4a90e2 100%);
    color: white;
}
.vk-table .platform-title { color: white; }
.vk-pricing th { background: rgba(39, 135, 245, 0.1); color: #2787F5; }
.vk-pricing tr:hover td { background: rgba(39, 135, 245, 0.06); }
.vk-pricing .price-cell { color: #2787F5; }

/* WeChat Table */
.wechat-table .platform-header {
    background: linear-gradient(135deg, #07C160 0%, #09D16A 100%);
    color: white;
}
.wechat-table .platform-title { color: white; }
.wechat-pricing th { background: rgba(7, 193, 96, 0.1); color: #07C160; }
.wechat-pricing tr:hover td { background: rgba(7, 193, 96, 0.06); }
.wechat-pricing .price-cell { color: #07C160; }

/* Viber Table */
.viber-table .platform-header {
    background: linear-gradient(135deg, #7360F2 0%, #9C88FF 100%);
    color: white;
}
.viber-table .platform-title { color: white; }
.viber-pricing th { background: rgba(115, 96, 242, 0.1); color: #7360F2; }
.viber-pricing tr:hover td { background: rgba(115, 96, 242, 0.06); }
.viber-pricing .price-cell { color: #7360F2; }

/* Skype Table */
.skype-table .platform-header {
    background: linear-gradient(135deg, #00AFF0 0%, #2CB67D 100%);
    color: white;
}
.skype-table .platform-title { color: white; }
.skype-pricing th { background: rgba(0, 175, 240, 0.1); color: #00AFF0; }
.skype-pricing tr:hover td { background: rgba(0, 175, 240, 0.06); }
.skype-pricing .price-cell { color: #00AFF0; }

/* KakaoTalk Table */
.kakao-table .platform-header {
    background: linear-gradient(135deg, #FFB300 0%, #FFD700 100%);
    color: #3C1E1E;
}
.kakao-table .platform-title { color: #3C1E1E; }
.kakao-pricing th { background: rgba(255, 179, 0, 0.1); color: #FFB300; }
.kakao-pricing tr:hover td { background: rgba(255, 179, 0, 0.06); }
.kakao-pricing .price-cell { color: #FFB300; }

/* LINE Table */
.line-table .platform-header {
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    color: white;
}
.line-table .platform-title { color: white; }
.line-pricing th { background: rgba(6, 199, 85, 0.1); color: #06C755; }
.line-pricing tr:hover td { background: rgba(6, 199, 85, 0.06); }
.line-pricing .price-cell { color: #06C755; }

/* Yahoo Table */
.yahoo-table .platform-header {
    background: linear-gradient(135deg, #410093 0%, #6000D3 100%);
    color: white;
}
.yahoo-table .platform-title { color: white; }
.yahoo-pricing th { background: rgba(65, 0, 147, 0.1); color: #410093; }
.yahoo-pricing tr:hover td { background: rgba(65, 0, 147, 0.06); }
.yahoo-pricing .price-cell { color: #410093; }

/* Outlook Table */
.outlook-table .platform-header {
    background: linear-gradient(135deg, #0078D4 0%, #106EBE 100%);
    color: white;
}
.outlook-table .platform-title { color: white; }
.outlook-pricing th { background: rgba(0, 120, 212, 0.1); color: #0078D4; }
.outlook-pricing tr:hover td { background: rgba(0, 120, 212, 0.06); }
.outlook-pricing .price-cell { color: #0078D4; }

/* ProtonMail Table */
.protonmail-table .platform-header {
    background: linear-gradient(135deg, #6D4AFF 0%, #8B69FF 100%);
    color: white;
}
.protonmail-table .platform-title { color: white; }
.protonmail-pricing th { background: rgba(109, 74, 255, 0.1); color: #6D4AFF; }
.protonmail-pricing tr:hover td { background: rgba(109, 74, 255, 0.06); }
.protonmail-pricing .price-cell { color: #6D4AFF; }

/* Onet.pl Table */
.onetpl-table .platform-header {
    background: linear-gradient(135deg, #FF3B30 0%, #FF6B6B 100%);
    color: white;
}
.onetpl-table .platform-title { color: white; }
.onetpl-pricing th { background: rgba(255, 59, 48, 0.1); color: #FF3B30; }
.onetpl-pricing tr:hover td { background: rgba(255, 59, 48, 0.06); }
.onetpl-pricing .price-cell { color: #FF3B30; }

/* App Password Gmail Table */
.appgmail-table .platform-header {
    background: linear-gradient(135deg, #EA4335 0%, #FBBC05 50%, #34A853 100%);
    color: white;
}
.appgmail-table .platform-title { color: white; }
.appgmail-pricing th { background: rgba(234, 67, 53, 0.1); color: #EA4335; }
.appgmail-pricing tr:hover td { background: rgba(234, 67, 53, 0.06); }
.appgmail-pricing .price-cell { color: #EA4335; }

/* Binance Table */
.binance-table .platform-header {
    background: linear-gradient(135deg, #F0B90B 0%, #F3C242 100%);
    color: #1A1A1A;
}
.binance-table .platform-title { color: #1A1A1A; }
.binance-pricing th { background: rgba(240, 185, 11, 0.1); color: #F0B90B; }
.binance-pricing tr:hover td { background: rgba(240, 185, 11, 0.06); }
.binance-pricing .price-cell { color: #F0B90B; }

/* Coinbase Table */
.coinbase-table .platform-header {
    background: linear-gradient(135deg, #0052FF 0%, #3B82F6 100%);
    color: white;
}
.coinbase-table .platform-title { color: white; }
.coinbase-pricing th { background: rgba(0, 82, 255, 0.1); color: #0052FF; }
.coinbase-pricing tr:hover td { background: rgba(0, 82, 255, 0.06); }
.coinbase-pricing .price-cell { color: #0052FF; }

/* Amazon Table */
.amazon-table .platform-header {
    background: linear-gradient(135deg, #FF9900 0%, #FFCC00 100%);
    color: #232F3E;
}
.amazon-table .platform-title { color: #232F3E; }
.amazon-pricing th { background: rgba(255, 153, 0, 0.1); color: #FF9900; }
.amazon-pricing tr:hover td { background: rgba(255, 153, 0, 0.06); }
.amazon-pricing .price-cell { color: #FF9900; }

/* eBay Table */
.ebay-table .platform-header {
    background: linear-gradient(135deg, #E53238 0%, #F26522 100%);
    color: white;
}
.ebay-table .platform-title { color: white; }
.ebay-pricing th { background: rgba(229, 50, 56, 0.1); color: #E53238; }
.ebay-pricing tr:hover td { background: rgba(229, 50, 56, 0.06); }
.ebay-pricing .price-cell { color: #E53238; }

/* Etsy Table */
.etsy-table .platform-header {
    background: linear-gradient(135deg, #F56400 0%, #F78B4A 100%);
    color: white;
}
.etsy-table .platform-title { color: white; }
.etsy-pricing th { background: rgba(245, 100, 0, 0.1); color: #F56400; }
.etsy-pricing tr:hover td { background: rgba(245, 100, 0, 0.06); }
.etsy-pricing .price-cell { color: #F56400; }

/* PayPal Table */
.paypal-table .platform-header {
    background: linear-gradient(135deg, #003087 0%, #0054A6 100%);
    color: white;
}
.paypal-table .platform-title { color: white; }
.paypal-pricing th { background: rgba(0, 48, 135, 0.1); color: #003087; }
.paypal-pricing tr:hover td { background: rgba(0, 48, 135, 0.06); }
.paypal-pricing .price-cell { color: #003087; }

/* Netflix Table */
.netflix-table .platform-header {
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
    color: white;
}
.netflix-table .platform-title { color: white; }
.netflix-pricing th { background: rgba(229, 9, 20, 0.1); color: #E50914; }
.netflix-pricing tr:hover td { background: rgba(229, 9, 20, 0.06); }
.netflix-pricing .price-cell { color: #E50914; }

/* Spotify Table */
.spotify-table .platform-header {
    background: linear-gradient(135deg, #1DB954 0%, #1ED760 100%);
    color: #191414;
}
.spotify-table .platform-title { color: #191414; }
.spotify-pricing th { background: rgba(29, 185, 84, 0.1); color: #1DB954; }
.spotify-pricing tr:hover td { background: rgba(29, 185, 84, 0.06); }
.spotify-pricing .price-cell { color: #1DB954; }

/* Twitch Table */
.twitch-table .platform-header {
    background: linear-gradient(135deg, #9146FF 0%, #772CE8 100%);
    color: white;
}
.twitch-table .platform-title { color: white; }
.twitch-pricing th { background: rgba(145, 70, 255, 0.1); color: #9146FF; }
.twitch-pricing tr:hover td { background: rgba(145, 70, 255, 0.06); }
.twitch-pricing .price-cell { color: #9146FF; }

/* Discord Table */
.discord-table .platform-header {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
}
.discord-table .platform-title { color: white; }
.discord-pricing th { background: rgba(88, 101, 242, 0.1); color: #5865F2; }
.discord-pricing tr:hover td { background: rgba(88, 101, 242, 0.06); }
.discord-pricing .price-cell { color: #5865F2; }

/* Discord Nitro Table */
.discordnitro-table .platform-header {
    background: linear-gradient(135deg, #5865F2 0%, #FF4757 100%);
    color: white;
}
.discordnitro-table .platform-title { color: white; }
.discordnitro-pricing th { background: rgba(88, 101, 242, 0.1); color: #5865F2; }
.discordnitro-pricing tr:hover td { background: rgba(88, 101, 242, 0.06); }
.discordnitro-pricing .price-cell { color: #5865F2; }

/* Reddit Table */
.reddit-table .platform-header {
    background: linear-gradient(135deg, #FF4500 0%, #FF6A33 100%);
    color: white;
}
.reddit-table .platform-title { color: white; }
.reddit-pricing th { background: rgba(255, 69, 0, 0.1); color: #FF4500; }
.reddit-pricing tr:hover td { background: rgba(255, 69, 0, 0.06); }
.reddit-pricing .price-cell { color: #FF4500; }

/* Quora Table */
.quora-table .platform-header {
    background: linear-gradient(135deg, #B92B27 0%, #D65A5A 100%);
    color: white;
}
.quora-table .platform-title { color: white; }
.quora-pricing th { background: rgba(185, 43, 39, 0.1); color: #B92B27; }
.quora-pricing tr:hover td { background: rgba(185, 43, 39, 0.06); }
.quora-pricing .price-cell { color: #B92B27; }

/* GitHub Table */
.github-table .platform-header {
    background: linear-gradient(135deg, #1F2428 0%, #2D333B 100%);
    color: white;
}
.github-table .platform-title { color: white; }
.github-pricing th { background: rgba(31, 36, 40, 0.1); color: #1F2428; }
.github-pricing tr:hover td { background: rgba(31, 36, 40, 0.06); }
.github-pricing .price-cell { color: #1F2428; }

/* Medium Table */
.medium-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #3B3B3B 100%);
    color: white;
}
.medium-table .platform-title { color: white; }
.medium-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.medium-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.medium-pricing .price-cell { color: #000; }

/* Indeed Table */
.indeed-table .platform-header {
    background: linear-gradient(135deg, #2164F3 0%, #4B8BFF 100%);
    color: white;
}
.indeed-table .platform-title { color: white; }
.indeed-pricing th { background: rgba(33, 100, 243, 0.1); color: #2164F3; }
.indeed-pricing tr:hover td { background: rgba(33, 100, 243, 0.06); }
.indeed-pricing .price-cell { color: #2164F3; }

/* Game Accounts Table */
.game-table .platform-header {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    color: white;
}
.game-table .platform-title { color: white; }
.game-pricing th { background: rgba(108, 92, 231, 0.1); color: #6C5CE7; }
.game-pricing tr:hover td { background: rgba(108, 92, 231, 0.06); }
.game-pricing .price-cell { color: #6C5CE7; }

/* Canva Table */
.canva-table .platform-header {
    background: linear-gradient(135deg, #00C4CC 0%, #7D2AE8 100%);
    color: white;
}
.canva-table .platform-title { color: white; }
.canva-pricing th { background: rgba(0, 196, 204, 0.1); color: #00C4CC; }
.canva-pricing tr:hover td { background: rgba(0, 196, 204, 0.06); }
.canva-pricing .price-cell { color: #00C4CC; }

/* Notion Table */
.notion-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #404040 100%);
    color: white;
}
.notion-table .platform-title { color: white; }
.notion-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.notion-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.notion-pricing .price-cell { color: #000; }

/* Grammarly Table */
.grammarly-table .platform-header {
    background: linear-gradient(135deg, #15C39A 0%, #2EE2A8 100%);
    color: #1A1A1A;
}
.grammarly-table .platform-title { color: #1A1A1A; }
.grammarly-pricing th { background: rgba(21, 195, 154, 0.1); color: #15C39A; }
.grammarly-pricing tr:hover td { background: rgba(21, 195, 154, 0.06); }
.grammarly-pricing .price-cell { color: #15C39A; }

/* CapCut Pro Table */
.capcut-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #FE2C55 100%);
    color: white;
}
.capcut-table .platform-title { color: white; }
.capcut-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.capcut-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.capcut-pricing .price-cell { color: #FE2C55; }

/* ChatGPT Table */
.chatgpt-table .platform-header {
    background: linear-gradient(135deg, #10A37F 0%, #1A7F64 100%);
    color: white;
}
.chatgpt-table .platform-title { color: white; }
.chatgpt-pricing th { background: rgba(16, 163, 127, 0.1); color: #10A37F; }
.chatgpt-pricing tr:hover td { background: rgba(16, 163, 127, 0.06); }
.chatgpt-pricing .price-cell { color: #10A37F; }

/* Claude Table */
.claude-table .platform-header {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    color: white;
}
.claude-table .platform-title { color: white; }
.claude-pricing th { background: rgba(217, 119, 6, 0.1); color: #D97706; }
.claude-pricing tr:hover td { background: rgba(217, 119, 6, 0.06); }
.claude-pricing .price-cell { color: #D97706; }

/* Gemini Table */
.gemini-table .platform-header {
    background: linear-gradient(135deg, #8E8E8E 0%, #B8B8B8 100%);
    color: #1F1F1F;
}
.gemini-table .platform-title { color: #1F1F1F; }
.gemini-pricing th { background: rgba(142, 142, 142, 0.1); color: #8E8E8E; }
.gemini-pricing tr:hover td { background: rgba(142, 142, 142, 0.06); }
.gemini-pricing .price-cell { color: #8E8E8E; }

/* Grok Table */
.grok-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #FA4529 100%);
    color: white;
}
.grok-table .platform-title { color: white; }
.grok-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.grok-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.grok-pricing .price-cell { color: #FA4529; }

/* Copilot Table */
.copilot-table .platform-header {
    background: linear-gradient(135deg, #0078D4 0%, #2B88D8 100%);
    color: white;
}
.copilot-table .platform-title { color: white; }
.copilot-pricing th { background: rgba(0, 120, 212, 0.1); color: #0078D4; }
.copilot-pricing tr:hover td { background: rgba(0, 120, 212, 0.06); }
.copilot-pricing .price-cell { color: #0078D4; }

/* Claude Code Table */
.claudecode-table .platform-header {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    color: white;
}
.claudecode-table .platform-title { color: white; }
.claudecode-pricing th { background: rgba(217, 119, 6, 0.1); color: #D97706; }
.claudecode-pricing tr:hover td { background: rgba(217, 119, 6, 0.06); }
.claudecode-pricing .price-cell { color: #D97706; }

/* OpenAI Services Table */
.openai-table .platform-header {
    background: linear-gradient(135deg, #10A37F 0%, #74C0C0 100%);
    color: white;
}
.openai-table .platform-title { color: white; }
.openai-pricing th { background: rgba(16, 163, 127, 0.1); color: #10A37F; }
.openai-pricing tr:hover td { background: rgba(16, 163, 127, 0.06); }
.openai-pricing .price-cell { color: #10A37F; }

/* Perplexity Table */
.perplexity-table .platform-header {
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    color: white;
}
.perplexity-table .platform-title { color: white; }
.perplexity-pricing th { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.perplexity-pricing tr:hover td { background: rgba(99, 102, 241, 0.06); }
.perplexity-pricing .price-cell { color: #6366F1; }

/* Midjourney Table */
.midjourney-table .platform-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
}
.midjourney-table .platform-title { color: white; }
.midjourney-pricing th { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.midjourney-pricing tr:hover td { background: rgba(139, 92, 246, 0.06); }
.midjourney-pricing .price-cell { color: #8B5CF6; }

/* Leonardo AI Table */
.leonardo-table .platform-header {
    background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
    color: white;
}
.leonardo-table .platform-title { color: white; }
.leonardo-pricing th { background: rgba(15, 23, 42, 0.1); color: #0F172A; }
.leonardo-pricing tr:hover td { background: rgba(15, 23, 42, 0.06); }
.leonardo-pricing .price-cell { color: #0F172A; }

/* Jasper Table */
.jasper-table .platform-header {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    color: #1A1A1A;
}
.jasper-table .platform-title { color: #1A1A1A; }
.jasper-pricing th { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.jasper-pricing tr:hover td { background: rgba(245, 158, 11, 0.06); }
.jasper-pricing .price-cell { color: #F59E0B; }

/* Character AI Table */
.characterai-table .platform-header {
    background: linear-gradient(135deg, #FF4D4D 0%, #FF6B6B 100%);
    color: white;
}
.characterai-table .platform-title { color: white; }
.characterai-pricing th { background: rgba(255, 77, 77, 0.1); color: #FF4D4D; }
.characterai-pricing tr:hover td { background: rgba(255, 77, 77, 0.06); }
.characterai-pricing .price-cell { color: #FF4D4D; }

/* ElevenLabs Table */
.elevenlabs-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #3B82F6 100%);
    color: white;
}
.elevenlabs-table .platform-title { color: white; }
.elevenlabs-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.elevenlabs-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.elevenlabs-pricing .price-cell { color: #3B82F6; }

/* Runway Table */
.runway-table .platform-header {
    background: linear-gradient(135deg, #FF2D55 0%, #FF6B8A 100%);
    color: white;
}
.runway-table .platform-title { color: white; }
.runway-pricing th { background: rgba(255, 45, 85, 0.1); color: #FF2D55; }
.runway-pricing tr:hover td { background: rgba(255, 45, 85, 0.06); }
.runway-pricing .price-cell { color: #FF2D55; }

/* DeepSeek Table */
.deepseek-table .platform-header {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: white;
}
.deepseek-table .platform-title { color: white; }
.deepseek-pricing th { background: rgba(30, 64, 175, 0.1); color: #1E40AF; }
.deepseek-pricing tr:hover td { background: rgba(30, 64, 175, 0.06); }
.deepseek-pricing .price-cell { color: #1E40AF; }

/* Bolt Table */
.bolt-table .platform-header {
    background: linear-gradient(135deg, #000000 0%, #2DD4BF 100%);
    color: white;
}
.bolt-table .platform-title { color: white; }
.bolt-pricing th { background: rgba(0, 0, 0, 0.1); color: #000; }
.bolt-pricing tr:hover td { background: rgba(0, 0, 0, 0.06); }
.bolt-pricing .price-cell { color: #2DD4BF; }

/* Replit Table */
.replit-table .platform-header {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}
.replit-table .platform-title { color: white; }
.replit-pricing th { background: rgba(102, 126, 234, 0.1); color: #667EEA; }
.replit-pricing tr:hover td { background: rgba(102, 126, 234, 0.06); }
.replit-pricing .price-cell { color: #667EEA; }

/* HeyGen Table */
.heygen-table .platform-header {
    background: linear-gradient(135deg, #4F46E5 0%, #818CF8 100%);
    color: white;
}
.heygen-table .platform-title { color: white; }
.heygen-pricing th { background: rgba(79, 70, 229, 0.1); color: #4F46E5; }
.heygen-pricing tr:hover td { background: rgba(79, 70, 229, 0.06); }
.heygen-pricing .price-cell { color: #4F46E5; }

/* AI Access Cards */
.ai-card {
   background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 250, 1) 100%);
   border: 1px solid rgba(23, 23, 23, 0.08);
   border-radius: 24px;
   padding: 36px;
   text-align: center;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
   box-shadow: 0 18px 42px rgba(23, 23, 23, 0.08);
}

.ai-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 26px 60px rgba(23, 23, 23, 0.12);
   border-color: rgba(122, 61, 240, 0.2);
}

.ai-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ai-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--plum-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ai-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--plum);
}

.ai-card-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.ai-card-desc {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ai-card-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 6px;
}

.ai-card-period {
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: 24px;
}

/* Subscription Cards (Netflix style) */
.sub-card {
   background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 250, 1) 100%);
   border: 1px solid rgba(23, 23, 23, 0.08);
   border-radius: 24px;
   padding: 32px;
   text-align: center;
   transition: var(--transition);
   box-shadow: 0 18px 42px rgba(23, 23, 23, 0.08);
}

.sub-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 26px 56px rgba(23, 23, 23, 0.12);
}

.sub-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-soft) 100%);
}

.sub-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.sub-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.sub-desc {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 20px;
}

.sub-features {
  text-align: left;
  margin-bottom: 24px;
}

.sub-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: var(--border-light);
}

.sub-features li svg {
  width: 16px;
  height: 16px;
  color: var(--plum);
  flex-shrink: 0;
}

/* ========================================
   STEPS / ORDER PATHWAY
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(6, 1fr);
  }
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(122, 61, 240, 0.3);
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.6;
}

/* ========================================
   INSIGHT CARDS
   ======================================== */
.insight-card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(122, 61, 240, 0.1);
}

.insight-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.insight-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.insight-text {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--plum);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--graphite);
  transition: transform 0.3s var(--ease-smooth);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  color: var(--plum);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
}

/* ========================================
   CONTACT CARDS
   ======================================== */
.contact-card {
  background: var(--ivory);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
}

.contact-icon.telegram {
  background: rgba(0, 136, 204, 0.12);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-icon.whatsapp svg {
  color: #25D366;
}

.contact-icon.telegram svg {
  color: #0088CC;
}

.contact-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-detail {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  display: block;
}

/* ========================================
   SERVICE PAGE HERO
   ======================================== */
.page-hero {
  background: var(--ivory);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: var(--border-light);
}

.page-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--plum-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.page-hero-icon svg {
  width: 36px;
  height: 36px;
  color: var(--plum);
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 17px;
  color: var(--graphite);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Info Bar */
.info-bar {
  background: var(--white);
  border-bottom: var(--border-light);
  padding: 16px 0;
}

.info-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.info-item svg {
  width: 16px;
  height: 16px;
  color: var(--plum);
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  background: var(--white);
  border-bottom: var(--border-light);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.breadcrumb a {
  color: var(--graphite);
  font-weight: 500;
}

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

.breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--graphite);
}

/* Related Pages */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--ivory);
  border: var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}

.related-link:hover {
  background: var(--plum-soft);
  color: var(--plum);
  border-color: rgba(122, 61, 240, 0.2);
  transform: translateX(4px);
}

.related-link svg {
  width: 16px;
  height: 16px;
  color: var(--plum);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ivory);
  border-top: var(--border-light);
  padding: 64px 0 32px;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-brand-name span {
  color: var(--plum);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.7;
}

.footer-group-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--graphite);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--plum);
  padding-left: 4px;
}

.footer-bottom {
  border-top: var(--border-light);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--graphite);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--graphite);
  font-weight: 500;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */
.blog-card {
  background: var(--ivory);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--sand);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.7;
}

/* ========================================
   PRIVACY POLICY
   ======================================== */
.policy-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 14px;
}

.policy-section p {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-section ul li {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MISC
   ======================================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-8 { margin-bottom: 32px; }

.bg-ivory { background: var(--ivory); }
.bg-mist { background: var(--mist); }
.bg-white { background: var(--white); }

/* Highlight box */
.highlight-box {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.highlight-box p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   RESPONSIVE OVERRIDES
   ======================================== */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .dropdown-menu {
    min-width: 280px;
    max-width: min(92vw, 320px);
    left: auto;
    right: 0;
    padding: 12px;
  }
  .dropdown-menu a {
    padding: 10px 12px;
    font-size: 12px;
  }
  .mobile-menu {
    padding: 18px;
  }
  .mobile-dropdown-list {
    padding: 10px 12px 6px;
    border-radius: 16px;
  }
  .pricing-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }
  .pricing-tab {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .pricing-card-grid {
    gap: 16px;
  }
  .pricing-plan-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .pricing-plan-title {
    font-size: 20px;
  }
  .pricing-plan-price {
    font-size: 28px;
  }
  .pricing-plan-detail {
    padding: 10px;
  }
  .pricing-plan-detail {
    flex-direction: column;
  }
  .pricing-plan-detail-value {
    text-align: left;
  }
  .pricing-plan-features li {
    padding: 10px 12px 10px 28px;
  }
  .pricing-plan-features li::before {
    top: 16px;
    left: 11px;
  }
  .pricing-table-wrapper {
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 14px 32px rgba(23, 23, 23, 0.08);
  }
  .pricing-table {
    min-width: 520px;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 14px 12px;
  }
  .ai-card,
  .sub-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .category-pricing-note {
    font-size: 12px;
  }
  .category-service {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-service-price {
    text-align: left;
    white-space: normal;
  }
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: rgba(122, 61, 240, 0.2);
  color: var(--ink);
}



/* ========================================
   FLOATING CHAT ICONS (bottom-left)
   ======================================== */
.floating-chat-icons {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9990;
}

.floating-chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease, padding 0.22s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 46px;
}

.floating-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.24);
  max-width: 180px;
  padding: 10px 18px 10px 12px;
}

.floating-chat-btn svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.floating-chat-label {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.floating-chat-btn:hover .floating-chat-label {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp:hover {
  background: #1ebe5c;
}

.floating-telegram {
  background: #0088CC;
}

.floating-telegram:hover {
  background: #0077b5;
}

@media (max-width: 600px) {
  .floating-chat-icons {
    bottom: 80px;
    left: 12px;
  }
  .floating-chat-btn {
    padding: 9px 11px;
  }
}

/* ========================================
   PRICING CARD FEATURES & ORDER NOW
   ======================================== */
.pricing-plan-features-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 7px;
}

.pricing-plan-features-list li {
  position: relative;
  padding: 8px 10px 8px 28px;
  font-size: 13px;
  color: var(--charcoal, #333);
  line-height: 1.45;
  border-radius: 10px;
  background: rgba(122,61,240,0.04);
  font-weight: 500;
}

.pricing-plan-features-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--plum, #7a3df0);
}

.pricing-plan-order-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  background: var(--plum, #7a3df0);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  margin-top: auto;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(122,61,240,0.25);
  text-decoration: none;
  font-family: inherit;
}

.pricing-plan-order-btn:hover {
  background: #6929d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(122,61,240,0.35);
  color: #fff;
}

.pricing-plan-card:nth-child(2) .pricing-plan-order-btn {
  background: linear-gradient(135deg, #7a3df0 0%, #9c5ff8 100%);
}
