/* ============================================================
   ReviewGudian - Main Stylesheet
   Premium Tech Review Platform
   Dark theme with vibrant accent gradients
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ------------------------------------------------------------ */
:root {
  /* Primary palette */
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --accent: #00CEC9;
  --accent-warm: #FD79A8;

  /* Dark surfaces */
  --dark: #0A0A1A;
  --dark-card: #12122A;
  --dark-surface: #1A1A3E;

  /* Text hierarchy */
  --text: #E8E8F0;
  --text-muted: #9090B0;
  --text-bright: #FFFFFF;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C5CE7, #00CEC9);
  --gradient-warm: linear-gradient(135deg, #FD79A8, #FDCB6E);
  --gradient-subtle: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.15));

  /* Radii */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(108, 92, 231, 0.3);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
}


/* ------------------------------------------------------------
   2. CSS Reset & Base Styles
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background-color: rgba(108, 92, 231, 0.4);
  color: var(--text-bright);
}

::-moz-selection {
  background-color: rgba(108, 92, 231, 0.4);
  color: var(--text-bright);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--dark-surface) var(--dark);
}

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}


/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

small {
  font-size: 0.875rem;
}

strong {
  font-weight: 700;
  color: var(--text-bright);
}

em {
  font-style: italic;
}


/* ------------------------------------------------------------
   4. Navigation (.navbar)
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-prefix {
  color: var(--text-bright);
}

.logo-suffix {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-bright);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--text-bright);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 10, 26, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--text-bright);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  padding: 0.5rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a:hover {
  color: var(--primary-light);
}


/* ------------------------------------------------------------
   5. Hero Section (.hero)
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(108, 92, 231, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(0, 206, 201, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 80%, rgba(253, 121, 168, 0.06) 0%, transparent 70%),
    var(--dark);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.typing-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

.typing-placeholder {
  visibility: hidden;
  display: inline-block;
}

.hero h1 .typing-text {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  border-right: 2px solid var(--primary);
  animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--primary); }
  50% { border-color: transparent; }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--text-bright);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(108, 92, 231, 0.1);
  color: var(--text);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(108, 92, 231, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(108, 92, 231, 0.6);
  background: rgba(108, 92, 231, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-float-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.hero-float-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.08) 0%, transparent 70%);
  bottom: 15%;
  right: -3%;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-float-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(253, 121, 168, 0.06) 0%, transparent 70%);
  top: 40%;
  right: 15%;
  animation: float 7s ease-in-out infinite 2s;
}


/* ------------------------------------------------------------
   6. Section Shared Styles
   ------------------------------------------------------------ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}


/* ------------------------------------------------------------
   7. Featured Reviews (.featured)
   ------------------------------------------------------------ */
.featured {
  padding: 6rem 0;
  position: relative;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.3), transparent);
}


/* ------------------------------------------------------------
   8. Review Cards (.review-card)
   ------------------------------------------------------------ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108, 92, 231, 0.2);
}

.review-card-image {
  aspect-ratio: 16 / 9;
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.review-card:hover .review-card-image img {
  transform: scale(1.05);
}

.review-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.9);
}

.review-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-light);
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.review-card-body {
  padding: 1.5rem;
}

.review-card-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.review-card-category::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.review-card-category.software::before { background: var(--primary-light); }
.review-card-category.software { color: var(--primary-light); }
.review-card-category.apps::before { background: var(--accent); }
.review-card-category.apps { color: var(--accent); }
.review-card-category.websites::before { background: var(--accent-warm); }
.review-card-category.websites { color: var(--accent-warm); }
.review-card-category.hardware::before { background: #FDCB6E; }
.review-card-category.hardware { color: #FDCB6E; }

/* Additional category and badge color variants */
.review-card-category.category-purple::before { background: #a29bfe; }
.review-card-category.category-purple { color: #a29bfe; }
.review-card-category.category-teal::before { background: #00CEC9; }
.review-card-category.category-teal { color: #00CEC9; }
.review-card-category.category-pink::before { background: #fd79a8; }
.review-card-category.category-pink { color: #fd79a8; }
.review-card-category.category-orange::before { background: #e17055; }
.review-card-category.category-orange { color: #e17055; }
.review-card-category.category-green::before { background: #00b894; }
.review-card-category.category-green { color: #00b894; }
.review-card-category.category-ai::before { background: #6C5CE7; }
.review-card-category.category-ai { color: #6C5CE7; }
.review-card-category.category-entertainment::before { background: #1DB954; }
.review-card-category.category-entertainment { color: #1DB954; }
.review-card-category.category-security::before { background: #74b9ff; }
.review-card-category.category-security { color: #74b9ff; }

.review-card-badge.badge-purple { background: rgba(108, 92, 231, 0.9); }
.review-card-badge.badge-teal { background: rgba(0, 206, 201, 0.9); }
.review-card-badge.badge-pink { background: rgba(232, 67, 147, 0.9); }
.review-card-badge.badge-orange { background: rgba(225, 112, 85, 0.9); }
.review-card-badge.badge-green { background: rgba(0, 184, 148, 0.9); }
.review-card-badge.badge-ai { background: rgba(108, 92, 231, 0.9); }
.review-card-badge.badge-entertainment { background: rgba(29, 185, 84, 0.9); }
.review-card-badge.badge-security { background: rgba(9, 132, 227, 0.9); }

.review-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: var(--transition-fast);
}

.review-card:hover .review-card-title {
  color: var(--primary-light);
}

.review-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(108, 92, 231, 0.08);
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-bright);
  flex-shrink: 0;
}

.review-card-author-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.review-card-rating .star {
  font-size: 0.9rem;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-card-rating .star.empty {
  -webkit-text-fill-color: var(--dark-surface);
  background: none;
}

.review-card-rating .rating-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-left: 0.5rem;
}


/* ------------------------------------------------------------
   9. Categories Section (.categories)
   ------------------------------------------------------------ */
.categories {
  padding: 6rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.category-icon.warm {
  background: var(--gradient-warm);
}

.category-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Category icon color variants */
.category-icon-purple { background: linear-gradient(135deg, #6C5CE7, #a29bfe); }
.category-icon-teal { background: linear-gradient(135deg, #00CEC9, #00b894); }
.category-icon-blue { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.category-icon-pink { background: linear-gradient(135deg, #e84393, #fd79a8); }
.category-icon-orange { background: linear-gradient(135deg, #e17055, #fab1a0); }
.category-icon-yellow { background: linear-gradient(135deg, #fdcb6e, #f9ca24); }

.category-card-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}


/* ------------------------------------------------------------
   10. Newsletter Section (.newsletter)
   ------------------------------------------------------------ */
.newsletter {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  background: var(--gradient-primary);
  border-radius: calc(var(--radius) * 1.5);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-inner h2 {
  color: var(--text-bright);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(10, 10, 26, 0.4);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text-bright);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: rgba(108, 92, 231, 0.6);
  background: rgba(10, 10, 26, 0.6);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-bright);
  font-weight: 600;
  border: none;
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: rgba(10, 10, 26, 0.8);
}


/* ------------------------------------------------------------
   11. How It Works (.how-it-works)
   ------------------------------------------------------------ */
.how-it-works {
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(108, 92, 231, 0.06);
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ------------------------------------------------------------
   12. Testimonials (.testimonials)
   ------------------------------------------------------------ */
.testimonials {
  padding: 6rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-left: 3px solid;
  border-image: var(--gradient-primary) 1;
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-bright);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   13. Footer (.footer)
   ------------------------------------------------------------ */
.footer {
  background: #060612;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(108, 92, 231, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links ul a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(108, 92, 231, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: var(--text-bright);
  transform: translateY(-2px);
}


/* ------------------------------------------------------------
   14. Review Post Page (.review-post)
   ------------------------------------------------------------ */
.review-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 2rem 3rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.3) 0%, rgba(10, 10, 26, 0.95) 100%);
  z-index: 1;
}

.review-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-meta-item .icon {
  color: var(--primary-light);
}

.review-meta-item a {
  color: var(--primary-light);
}

.review-meta-item a:hover {
  color: var(--text-bright);
}

.review-content {
  max-width: 780px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.review-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.25rem;
  position: relative;
  padding-left: 1rem;
}

.review-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.review-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.review-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.review-content blockquote {
  border-left: 3px solid;
  border-image: var(--gradient-primary) 1;
  background: var(--dark-surface);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}

.review-content ul,
.review-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.review-content ul {
  list-style: none;
}

.review-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.7;
}

.review-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.review-content ol {
  list-style: decimal;
}

.review-content ol li {
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.7;
}

.review-content img {
  border-radius: var(--radius);
  margin: 2rem 0;
}

.review-content a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(162, 155, 254, 0.3);
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.review-content a:hover {
  text-decoration-color: var(--primary-light);
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.pros, .cons {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(108, 92, 231, 0.08);
}

.pros {
  border-top: 3px solid #00B894;
}

.cons {
  border-top: 3px solid #E17055;
}

.pros h4, .cons h4 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros h4 {
  color: #00B894;
}

.cons h4 {
  color: #E17055;
}

.pros ul li::before {
  background: #00B894;
}

.cons ul li::before {
  background: #E17055;
}

/* Rating Box */
.rating-box {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.rating-box-score {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rating-box-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 120px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--dark-surface);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-bar-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bright);
  width: 30px;
  flex-shrink: 0;
}

/* Verdict Box */
.verdict-box {
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.verdict-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.verdict-box h3 {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verdict-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}


/* ------------------------------------------------------------
   15. Sidebar (.sidebar)
   ------------------------------------------------------------ */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}

.sidebar-popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(108, 92, 231, 0.06);
}

.sidebar-popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-popular-post-image {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--dark-surface);
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar-popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-popular-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: var(--transition-fast);
}

.sidebar-popular-post:hover .sidebar-popular-post-title {
  color: var(--primary-light);
}

.sidebar-popular-post-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition-fast);
}

.sidebar-category-item:last-child {
  border-bottom: none;
}

.sidebar-category-item:hover {
  padding-left: 0.5rem;
}

.sidebar-category-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sidebar-category-item:hover a {
  color: var(--primary-light);
}

.sidebar-category-item .count {
  background: var(--dark-surface);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar-tag {
  padding: 0.4rem 0.8rem;
  background: var(--dark-surface);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.sidebar-tag:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}


/* ------------------------------------------------------------
   16. Comments Section (.comments)
   ------------------------------------------------------------ */
.comments {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.comments-header {
  margin-bottom: 2rem;
}

.comments-header h2 {
  font-size: 1.75rem;
}

.comment-form {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition-fast);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--text-muted);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1rem;
}

.comment-form button {
  background: var(--gradient-primary);
  color: var(--text-bright);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.comment-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.comment.reply {
  margin-left: 2.5rem;
  background: var(--dark-surface);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-bright);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.comment-author-info {
  display: flex;
  flex-direction: column;
}

.comment-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
}

.comment-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-body {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.comment-action {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.comment-action:hover {
  color: var(--primary-light);
}

.comment-like,
.comment-reply-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
}

.comment-like:hover {
  color: #e74c3c;
}

.comment-like.liked {
  color: #e74c3c;
}

.comment-reply-btn:hover {
  color: var(--primary-light);
}

.comment-reply-form {
  margin-top: 1rem;
  padding-left: 1rem;
}

.comment-reply-form input,
.comment-reply-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.comment-reply-form input:focus,
.comment-reply-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.comment-reply-form input::placeholder,
.comment-reply-form textarea::placeholder {
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   17. About Page
   ------------------------------------------------------------ */
.about-hero {
  padding: 8rem 2rem 5rem;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(108, 92, 231, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 70% 60%, rgba(0, 206, 201, 0.1) 0%, transparent 70%),
    var(--dark);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1.5rem;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.author-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  margin: 3rem 0;
}

.author-card-image {
  width: 300px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-card-body h3 {
  margin-bottom: 0.5rem;
}

.author-card-body .role {
  color: var(--primary-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.author-card-body p {
  margin-bottom: 1.5rem;
}

.author-social {
  display: flex;
  gap: 0.75rem;
}

.author-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.author-social a:hover {
  background: var(--gradient-primary);
  color: var(--text-bright);
}

.mission-section {
  padding: 5rem 0;
  text-align: center;
}

.mission-section p {
  max-width: 700px;
  margin: 1.5rem auto 0;
  font-size: 1.15rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.value-card h4 {
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
}

.team-member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid rgba(108, 92, 231, 0.3);
  transition: var(--transition);
}

.team-member:hover .team-member-avatar {
  border-color: var(--primary);
  transform: scale(1.05);
}

.team-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   18. Contact Page
   ------------------------------------------------------------ */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h3 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239090B0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-light);
}

.contact-info-card h4 {
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--primary-light);
}

.contact-info-card a:hover {
  color: var(--text-bright);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}

.contact-info-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--primary-light);
  font-size: 0.95rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.contact-social-links a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-bright);
  transform: translateY(-2px);
}

.contact-faq {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-faq h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-bright);
}

.faq-item {
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-item h4 {
  font-size: 0.95rem;
  color: var(--text-bright);
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ------------------------------------------------------------
   19. Search Overlay (.search-overlay)
   ------------------------------------------------------------ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20vh;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-overlay-close:hover {
  color: var(--text-bright);
  transform: rotate(90deg);
}

.search-input-wrapper {
  width: 100%;
  max-width: 640px;
  padding: 0 2rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  padding-left: 3.5rem;
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: var(--radius);
  color: var(--text-bright);
  font-size: 1.25rem;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-icon {
  position: absolute;
  left: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-results {
  width: 100%;
  max-width: 640px;
  padding: 1rem 2rem;
  margin-top: 1rem;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

.search-result-item:hover {
  background: var(--dark-card);
}

.search-result-item-image {
  width: 60px;
  height: 45px;
  border-radius: var(--radius-xs);
  background: var(--dark-surface);
  flex-shrink: 0;
  overflow: hidden;
}

.search-result-item-title {
  font-weight: 600;
  color: var(--text-bright);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.search-result-item-category {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   20. Cookie Consent (.cookie-consent)
   ------------------------------------------------------------ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--dark-surface);
  border-top: 1px solid rgba(108, 92, 231, 0.08);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: var(--transition-slow);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-consent p a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: var(--text-bright);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(108, 92, 231, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(108, 92, 231, 0.5);
  color: var(--text);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(108, 92, 231, 0.2);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.cookie-reject:hover {
  border-color: rgba(108, 92, 231, 0.5);
  color: var(--text);
}


/* ------------------------------------------------------------
   21. Breadcrumbs (.breadcrumbs)
   ------------------------------------------------------------ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: var(--text);
  font-weight: 500;
}


/* ------------------------------------------------------------
   22. Pagination (.pagination)
   ------------------------------------------------------------ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.1);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover {
  border-color: var(--primary);
  color: var(--text-bright);
}

.pagination-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-bright);
}

.pagination-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 0.25rem;
}

.pagination-btn.prev,
.pagination-btn.next {
  width: auto;
  padding: 0 1rem;
  gap: 0.5rem;
}


/* ------------------------------------------------------------
   23. Back to Top (.back-to-top)
   ------------------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}


/* ------------------------------------------------------------
   24. Utility Classes
   ------------------------------------------------------------ */

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text variants */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted { color: var(--text-muted); }
.text-bright { color: var(--text-bright); }
.text-primary { color: var(--primary-light); }
.text-accent { color: var(--accent); }

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Spacing - margin top */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

/* Spacing - margin bottom */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

/* Spacing - padding */
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }
.pt-6 { padding-top: 4rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }
.pb-6 { padding-bottom: 4rem; }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* Visibility */
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Width */
.w-full { width: 100%; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 780px; }
.max-w-xl { max-width: 1024px; }

/* Border utilities */
.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-full { border-radius: 50%; }

/* Background */
.bg-dark { background-color: var(--dark); }
.bg-card { background-color: var(--dark-card); }
.bg-surface { background-color: var(--dark-surface); }

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  margin: 2rem 0;
}

/* Truncate */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ------------------------------------------------------------
   25. Review Post Layout (.review-content-layout)
   ------------------------------------------------------------ */
.review-content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: 3rem 0;
}

.review-content-layout .review-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.review-content-layout .review-content h2:first-child {
  margin-top: 0;
}

/* Author avatar in meta */
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-bright);
  flex-shrink: 0;
}

/* Review hero adjustments for post page */
.review-post .review-hero {
  padding-top: calc(var(--nav-height) + 3rem);
}

.review-post .review-hero .container {
  position: relative;
  z-index: 2;
}

.review-post .review-hero h1 {
  font-size: 2.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.review-post .review-hero .review-card-badge {
  position: relative;
  top: auto;
  right: auto;
  display: inline-block;
}

/* Rating Widget (sidebar) */
.rating-widget {
  text-align: center;
}

.rating-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.rating-big .rating-score {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.rating-big .rating-max {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

.rating-stars-big {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.rating-stars-big svg {
  width: 24px;
  height: 24px;
}

/* Rating breakdown rows */
.sidebar .rating-breakdown {
  max-width: 100%;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.rating-row > span:first-child {
  width: 90px;
  text-align: right;
  color: var(--text-muted);
  flex-shrink: 0;
}

.rating-row > span:last-child {
  width: 28px;
  text-align: right;
  color: var(--text-bright);
  font-weight: 700;
  flex-shrink: 0;
}

.rating-row .rating-bar {
  flex: 1;
  height: 6px;
  background: var(--dark-surface);
  border-radius: 3px;
  overflow: hidden;
  display: block;
}

.rating-row .rating-bar .rating-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quick Info List */
.quick-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quick-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(108, 92, 231, 0.07);
  font-size: 0.9rem;
}

.quick-info-item:last-child {
  border-bottom: none;
}

.quick-info-item .label {
  color: var(--text-muted);
  font-weight: 500;
}

.quick-info-item .value {
  color: var(--text-bright);
  font-weight: 600;
  text-align: right;
  max-width: 55%;
}

/* Popular Reviews Widget */
.popular-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.popular-review-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(108, 92, 231, 0.07);
  transition: var(--transition-fast);
}

.popular-review-item:last-child {
  border-bottom: none;
}

.popular-review-item:hover .popular-review-title {
  color: var(--primary-light);
}

.popular-review-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
}

.popular-review-info {
  flex: 1;
  min-width: 0;
}

.popular-review-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  transition: var(--transition-fast);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-review-rating {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Newsletter widget in sidebar */
.sidebar-newsletter {
  flex-direction: column;
  max-width: 100%;
}

.sidebar-newsletter input {
  border-radius: var(--radius-sm);
  border-right: 1px solid rgba(108, 92, 231, 0.25);
  margin-bottom: 0.5rem;
}

.sidebar-newsletter button {
  border-radius: var(--radius-sm);
  border-left: 1px solid rgba(108, 92, 231, 0.25);
  width: 100%;
  padding: 0.75rem 1rem;
}

.newsletter-widget p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Comments Section */
.comments-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(108, 92, 231, 0.08);
  margin-top: 2rem;
}

.comments-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comments-section .form-group {
  margin-bottom: 1rem;
}

.comments-section input,
.comments-section textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition-fast);
}

.comments-section input::placeholder,
.comments-section textarea::placeholder {
  color: var(--text-muted);
}

.comments-section input:focus,
.comments-section textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.comments-section textarea {
  resize: vertical;
}

/* Related Reviews */
.related-reviews {
  padding: 4rem 0;
  border-top: 1px solid rgba(108, 92, 231, 0.08);
}

.related-reviews h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

/* Table Responsive Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 500px;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(108, 92, 231, 0.08);
}

.pricing-table thead {
  background: var(--dark-surface);
}

.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-bright);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(108, 92, 231, 0.12);
}

.pricing-table td {
  padding: 1rem 1.25rem;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(108, 92, 231, 0.07);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(108, 92, 231, 0.05);
}

/* Feature list with checkmarks */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text);
  line-height: 1.6;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Comparison block */
.comparison-block {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.comparison-block h4 {
  margin-bottom: 0.5rem;
}

.comparison-block p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive adjustments for review content layout */
@media (max-width: 1024px) {
  .review-content-layout {
    grid-template-columns: 1fr;
  }
  .review-content-layout .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .review-post .review-hero h1 {
    font-size: 2rem;
  }
  .review-content-layout .sidebar {
    grid-template-columns: 1fr;
  }
  .comment-form-row {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    font-size: 0.85rem;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .review-post .review-hero h1 {
    font-size: 1.6rem;
  }
  .rating-big .rating-score {
    font-size: 2.5rem;
  }
  .rating-row > span:first-child {
    width: 70px;
    font-size: 0.78rem;
  }
}


/* ------------------------------------------------------------
   26. Search Toggle Button (.search-toggle)
   ------------------------------------------------------------ */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(108, 92, 231, 0.15);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.search-toggle:hover {
  border-color: var(--primary);
  color: var(--text-bright);
  background: rgba(108, 92, 231, 0.1);
}


/* ------------------------------------------------------------
   27. About Page - Extended Styles
   ------------------------------------------------------------ */
.about-hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.mission-content .section-label {
  display: block;
  margin-bottom: 1rem;
}

.mission-content h2 {
  margin-bottom: 1.5rem;
}

.mission-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateY(-4px);
}

.stat-card .stat-number {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Author Section */
.author-section {
  padding: 5rem 0;
}

.author-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.author-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.author-section .author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.author-section .author-avatar {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.author-avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
  border: 3px solid rgba(108, 92, 231, 0.3);
}

.author-info h3.author-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--primary-light);
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1.25rem;
}

.author-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.tag {
  padding: 0.35rem 0.85rem;
  background: var(--dark-surface);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.author-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-surface);
  border-left: 3px solid;
  border-image: var(--gradient-primary) 1;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.author-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--primary-light);
  font-style: normal;
  font-weight: 600;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
}

.values-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Methodology Section */
.methodology-section {
  padding: 5rem 0;
}

.methodology-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.methodology-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0.3;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-step .step-number {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-bright);
  flex-shrink: 0;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About CTA Section */
.about-cta {
  padding: 5rem 0;
}

.about-cta-inner {
  background: var(--gradient-primary);
  border-radius: calc(var(--radius) * 1.5);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-cta-inner h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-cta-inner .btn-primary {
  background: var(--dark);
  position: relative;
  z-index: 1;
}


/* ------------------------------------------------------------
   28. Legal Content (.legal-content)
   ------------------------------------------------------------ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}


/* ------------------------------------------------------------
   29. Cookie Consent Inner (.cookie-consent-inner)
   ------------------------------------------------------------ */
.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}


/* ------------------------------------------------------------
   30. About Page Responsive
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .author-section .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-avatar-circle {
    margin: 0 auto;
  }

  .author-info {
    text-align: left;
  }

  .author-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .methodology-timeline {
    padding-left: 1rem;
  }

  .values-section,
  .methodology-section,
  .author-section {
    padding: 3rem 0;
  }
}


/* ------------------------------------------------------------
   31. Contact Page - Extended Styles
   ------------------------------------------------------------ */
.contact-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 500px 400px at 50% 40%, rgba(108, 92, 231, 0.1) 0%, transparent 70%),
    var(--dark);
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.contact-hero-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form-wrapper {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 1rem 2rem;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}


/* ------------------------------------------------------------
   32. Categories Page
   ------------------------------------------------------------ */
.categories-hero {
  padding: calc(var(--nav-height) + 3rem) 2rem 2rem;
  text-align: center;
}

.categories-hero h1 {
  margin-bottom: 1rem;
}

.categories-hero-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.categories-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.categories-search .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.categories-search input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.categories-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.categories-search input::placeholder {
  color: var(--text-muted);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.12);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--text-bright);
}

.filter-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-bright);
  font-weight: 600;
}

/* Category Highlight Cards */
.category-highlights {
  padding: 2rem 0 3rem;
}

.category-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-highlight-card {
  background: var(--dark-card);
  border: 1px solid rgba(108, 92, 231, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.category-highlight-card:hover {
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateY(-4px);
}

.category-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-highlight-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.category-highlight-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.category-highlight-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
