/* Cylink Core Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Noto+Sans+SC:wght@300;400;700;900&display=swap');

:root {
  --primary-color: #ff4d6d;
  --primary-glow: rgba(255, 77, 109, 0.4);
  --secondary-color: #ff758f;
  --bg-dark: #0a0612;
  --bg-card: rgba(18, 10, 28, 0.75);
  --border-color: rgba(255, 77, 109, 0.25);
  --text-white: #ffffff;
  --text-gray: #a3a1b8;
  --success: #38ef7d;
  --warning: #ffb800;
  --font-sans: 'Outfit', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background & Overlays */
.bg-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at center, #180d2b 0%, #060309 100%);
  overflow: hidden;
}

.bg-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.05);
  animation: bgPan 40s linear infinite alternate;
}

@keyframes bgPan {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}

#mouseTrailCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

#animeParticlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, #ff4d6d 10%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-red-white {
  background: linear-gradient(90deg, #ff4d6d 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-neon {
  background: linear-gradient(90deg, #ff4d6d 0%, #ff85a1 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 77, 109, 0.3);
}

/* Header & Navbar */
header.site-header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 6, 18, 0.7);
  border-bottom: 1px solid rgba(255, 77, 109, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

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

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

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 77, 109, 0.6));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.btn-nav-register {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 109, 0.6);
  filter: brightness(1.1);
}

/* Main Grid & Sections */
section {
  padding: 80px 0;
  position: relative;
}

/* Glassmorphism Card Style */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 77, 109, 0.05);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: rgba(255, 77, 109, 0.5);
  box-shadow: 0 12px 40px 0 rgba(255, 77, 109, 0.15), inset 0 0 15px rgba(255, 77, 109, 0.1);
}

/* H1 Section (Hero) */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.5);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 77, 109, 0.7);
  filter: brightness(1.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 77, 109, 0.4);
  transform: translateY(-2px);
}

/* H1 Right Side: Counter Widget */
.hero-counter-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(18, 10, 28, 0.85);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 77, 109, 0.15), inset 0 0 15px rgba(255, 77, 109, 0.05);
}

/* Sci-fi corner brackets for Card 2 */
.hero-counter-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(to right, var(--primary-color) 3px, transparent 3px) 0 0,
    linear-gradient(to bottom, var(--primary-color) 3px, transparent 3px) 0 0,
    linear-gradient(to left, var(--primary-color) 3px, transparent 3px) 100% 0,
    linear-gradient(to bottom, var(--primary-color) 3px, transparent 3px) 100% 0,
    linear-gradient(to right, var(--primary-color) 3px, transparent 3px) 0 100%,
    linear-gradient(to top, var(--primary-color) 3px, transparent 3px) 0 100%,
    linear-gradient(to left, var(--primary-color) 3px, transparent 3px) 100% 100%,
    linear-gradient(to top, var(--primary-color) 3px, transparent 3px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  pointer-events: none;
}

/* Sci-fi scanning line for Card 2 */
.hero-counter-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  animation: scanLine 4s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

@keyframes scanLine {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.counter-glow-ring {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.08) 0%, transparent 60%);
  animation: rotateGlow 25s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.counter-title {
  font-size: 1.05rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.counter-number {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  background: linear-gradient(90deg, #ff4d6d 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 77, 109, 0.7));
  margin-bottom: 16px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  animation: counterPulse 2s ease-in-out infinite alternate;
}

@keyframes counterPulse {
  from { filter: drop-shadow(0 0 10px rgba(255, 77, 109, 0.5)); }
  to { filter: drop-shadow(0 0 20px rgba(255, 77, 109, 0.9)); }
}

.counter-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* H2 Section (Reviews & Speedtest) */
.reviews-speed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.reviews-title, .speed-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Testimonial slider */
.testimonial-container {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  background: rgba(18, 10, 28, 0.8);
  border: 1px solid rgba(255, 77, 109, 0.25);
  border-radius: 16px;
  padding: 28px;
  box-shadow: inset 0 0 20px rgba(255, 77, 109, 0.05), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Corner bracket notches for Reviews Card 3 */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; width: 12px; height: 12px;
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px; width: 12px; height: 12px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  color: #e2e1ee;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed rgba(255, 77, 109, 0.15);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, #25123e 0%, #12061e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 77, 109, 0.5);
  box-shadow: 0 0 15px rgba(255, 77, 109, 0.2);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* Speedtest Widget */
.speed-widget-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.speed-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(15, 8, 25, 0.85);
  border: 1px solid rgba(255, 77, 109, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 77, 109, 0.03);
}

.speed-node-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.speed-node-row.slow::before {
  background: var(--warning);
  box-shadow: 0 0 10px var(--warning);
}

.speed-node-row:hover {
  background: rgba(255, 77, 109, 0.08);
  border-color: rgba(255, 77, 109, 0.45);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(255, 77, 109, 0.1);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.node-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.node-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.node-type {
  font-size: 0.75rem;
  color: var(--primary-color);
  background: rgba(255, 77, 109, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.node-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
}

.node-ping {
  font-family: monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--success);
  min-width: 60px;
  text-align: right;
}

.node-bar-container {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.node-bar {
  height: 100%;
  background: var(--success);
  width: 100%;
  box-shadow: 0 0 8px var(--success);
  transition: width 0.5s ease;
}

.node-bar.slow {
  background: var(--warning);
  box-shadow: 0 0 8px var(--warning);
}

/* H3 Section (Packages sliding) */
.packages-header {
  text-align: center;
  margin-bottom: 50px;
}

.packages-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
}

.packages-slider-outer {
  position: relative;
  width: 100%;
}

.packages-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 40px 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.packages-slider-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.package-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.package-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(255, 77, 109, 0.15);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 30px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.package-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #d1cfe2;
}

.feature-check {
  color: var(--primary-color);
  font-weight: bold;
}

.btn-package {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 77, 109, 0.4);
  background: rgba(255, 77, 109, 0.05);
  color: var(--text-white);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover .btn-package {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 77, 109, 0.4);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-slide-control {
  width: 60px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(255, 77, 109, 0.5);
  background: rgba(255, 77, 109, 0.08);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: skewX(-15deg);
  box-shadow: inset 0 0 8px rgba(255, 77, 109, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-slide-control svg {
  transform: skewX(15deg);
  transition: transform 0.3s;
}

.btn-slide-control:hover {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff758f 100%);
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 77, 109, 0.6);
  transform: skewX(-15deg) translateY(-2px);
}

.btn-slide-control:hover svg {
  transform: skewX(15deg) scale(1.2);
}

/* H4 Section (Science Articles with Tech Scroll Wheel) */
.articles-header {
  text-align: center;
  margin-bottom: 50px;
}

.articles-header h4 {
  font-size: 2.5rem;
  font-weight: 800;
}

.tech-articles-viewport {
  height: 480px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: rgba(10, 5, 20, 0.8);
  box-shadow: 0 0 30px rgba(255, 77, 109, 0.1) inset;
}

.tech-articles-viewport::before,
.tech-articles-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}

.tech-articles-viewport::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(10, 5, 20, 1), rgba(10, 5, 20, 0));
}

.tech-articles-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 5, 20, 1), rgba(10, 5, 20, 0));
}

.tech-articles-scroll-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
  animation: verticalScrollMarquee 30s linear infinite;
}

.tech-articles-scroll-container:hover {
  animation-play-state: paused;
}

@keyframes verticalScrollMarquee {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* JS will duplicate child nodes to achieve infinite scroll */
}

.tech-article-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.tech-article-card:hover {
  background: rgba(255, 77, 109, 0.06);
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.2);
  transform: scale(1.01);
}

.article-meta-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-category {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-title-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  transition: color 0.3s;
}

.tech-article-card:hover .article-title-text {
  color: var(--primary-color);
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-top: 4px;
}

.article-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tech-article-card:hover .article-arrow {
  background: var(--primary-color);
  color: white;
  border-color: transparent;
  transform: rotate(-45deg);
  box-shadow: 0 0 15px rgba(255, 77, 109, 0.5);
}

/* H5 Section (FAQ Dynamic Side-by-Side Accordion) */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h5 {
  font-size: 2.5rem;
  font-weight: 800;
}

.faq-slider-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 10px 30px;
}

.faq-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.faq-slider-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
}

.faq-column {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-color);
  background: rgba(255, 77, 109, 0.04);
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.15);
}

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

/* H6 Section (Device Protection & Stream Unlocks) */
.h6-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.protection-left h6 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.protection-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.device-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.device-card:hover {
  background: rgba(255, 77, 109, 0.05);
  border-color: rgba(255, 77, 109, 0.3);
  transform: translateY(-3px);
}

.device-card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.device-card-name {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Unlocks Right Side */
.unlocks-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.unlocks-title {
  font-size: 1.5rem;
  font-weight: 700;
  border-left: 4px solid var(--primary-color);
  padding-left: 14px;
  margin-bottom: 6px;
}

.unlocks-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.unlock-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.unlock-badge:hover {
  background: rgba(255, 77, 109, 0.08);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.unlock-badge-logo {
  font-weight: 800;
}

.tiktok-logo { color: #00f2fe; }
.netflix-logo { color: #e50914; }
.chatgpt-logo { color: #10a37f; }
.youtube-logo { color: #ff0000; }
.disney-logo { color: #113ccf; }
.spotify-logo { color: #1db954; }

/* Article Template Custom Styling */
.article-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.article-header-meta {
  margin-bottom: 30px;
}

.article-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.article-breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.article-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-publish-info {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.article-grid-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.article-body-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #e2e1ee;
}

.article-body-content p {
  margin-bottom: 24px;
}

.article-body-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 40px 0 20px 0;
  border-left: 5px solid var(--primary-color);
  padding-left: 16px;
  color: var(--text-white);
}

.article-body-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 30px 0 15px 0;
  color: var(--text-white);
}

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

.article-body-content li {
  margin-bottom: 10px;
}

.article-body-content strong {
  color: var(--primary-color);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.seo-table th, .seo-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  text-align: left;
}

.seo-table th {
  background: rgba(255, 77, 109, 0.15);
  font-weight: 700;
  color: var(--primary-color);
}

.seo-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

/* Sidebar Widget */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  padding: 24px;
}

.sidebar-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.sidebar-articles-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.sidebar-article-item a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s;
  display: block;
}

.sidebar-article-item a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.cta-widget {
  background: linear-gradient(135deg, rgba(255, 77, 109, 0.2) 0%, rgba(18, 10, 28, 0.8) 100%);
  border: 1px solid var(--border-color);
}

.cta-widget-desc {
  font-size: 0.95rem;
  color: #d1cfe2;
  margin-bottom: 20px;
}

/* Footer PBN weights */
footer.site-footer {
  border-top: 1px solid rgba(255, 77, 109, 0.15);
  background: rgba(10, 6, 18, 0.9);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.footer-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.25rem;
}

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-pbn-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

.footer-pbn-section a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-pbn-section a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(255, 77, 109, 0.6);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .package-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .reviews-speed-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .package-card {
    flex: 0 0 100%;
  }
  
  .h6-section-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .article-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-article-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .article-arrow {
    display: none;
  }
  
  .faq-slider-track {
    flex-direction: column;
    min-width: 100%;
  }
  
  .faq-column {
    width: 100%;
  }
}
