@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

/* ==========================================================================
   ========================================================================== */

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);
  
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --coral-500: #f97316;
  --coral-600: #ea580c;
  
  --success-500: #10b981;
  --success-600: #059669;
  --danger-500: #ef4444;
  --danger-600: #dc2626;
  
  --dark-950: #090d16;
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  
  --max-w: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -6px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--font-sans);
  background: var(--slate-50);
  color: var(--dark-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

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

a {
  color: var(--primary-600);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--primary-700);
}

/* Container */
.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ==========================================================================
   HEADER & NAVBAR (Optimized single-row layout)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.site-header .container {
  width: min(100% - 2rem, 1420px);
  max-width: 1420px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.brand-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--dark-800);
  flex-shrink: 0;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap; /* Strictly single line - never wrap */
  flex: 1;
  justify-content: center;
  margin: 0 0.5rem;
}

@media (min-width: 1200px) {
  .main-nav { display: flex; }
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.42rem 0.62rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.is-active {
  color: var(--white);
  background: var(--primary-600);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: var(--white);
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1200px) {
  .hamburger-btn { display: none; }
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(6px);
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 320px);
  background: var(--dark-900);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-drawer.is-open .drawer-panel {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}
.drawer-head span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}
.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.drawer-links a {
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.drawer-links a:hover,
.drawer-links a.is-active {
  background: var(--primary-600);
  color: var(--white);
}

/* ==========================================================================
   HERO SECTION - BOLD & BALANCED GRID
   ========================================================================== */
.hero-section {
  background: linear-gradient(145deg, #090d16 0%, #0f172a 45%, #1e293b 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.9fr);
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}
.hero-title span {
  background: linear-gradient(135deg, #60a5fa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
  color: var(--white);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.stat-item span {
  font-size: 0.82rem;
  color: var(--slate-400);
}

/* HERO SQUARE VISUAL CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-card::after {
  content: 'OFFICIAL REVIEW 2026';
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--success-500);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.hero-card figure {
  width: 100%;
  margin: 0;
  text-align: center;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block;
  margin: 0 auto;
}
.hero-card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-card-meta {
  font-size: 0.85rem;
  color: var(--slate-300);
}
.hero-card-rating {
  color: var(--accent-500);
  font-weight: 800;
  font-size: 1rem;
}

/* ==========================================================================
   TRUST METRICS BAR
   ========================================================================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.6rem 0;
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-100);
  color: var(--primary-600);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.trust-info b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.1;
}
.trust-info span {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ==========================================================================
   MAIN CONTENT & SECTION LAYOUT
   ========================================================================== */
.main-content {
  padding: 3.5rem 0 2rem;
}

.content-section {
  margin-bottom: 4rem;
}

.section-header {
  margin-bottom: 2rem;
  text-align: left;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-600);
  background: var(--primary-50);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 48rem;
}

/* AUTHOR DOSSIER CARD */
.author-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-600);
}
@media (min-width: 768px) {
  .author-card {
    flex-direction: row;
    align-items: center;
  }
}
.author-avatar {
  width: 90px;
  height: 90px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--slate-200);
  flex-shrink: 0;
  background: var(--slate-100);
}
.author-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 0.15rem;
}
.author-role {
  color: var(--primary-600);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  display: block;
}
.author-bio {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.author-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-600);
}

/* ==========================================================================
   CARDS GRID (KEY FINDINGS & FEATURES)
   ========================================================================== */
.cards-grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-lg);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary-600);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.65rem;
}
.feature-card p {
  color: var(--slate-600);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.feature-card-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.feature-card-link:hover {
  gap: 0.6rem;
}

/* ==========================================================================
   STATISTICS & BENCHMARK TABLES
   ========================================================================== */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 800px) {
  .stats-banner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.stat-box-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-box-label {
  font-weight: 700;
  color: var(--dark-800);
  font-size: 0.92rem;
}
.stat-box-sub {
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-top: 0.2rem;
}

/* Modern Data Table */
.table-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 1.75rem 0;
}
.modern-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.modern-table thead {
  background: var(--dark-900);
  color: var(--white);
}
.modern-table th {
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}
.modern-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-600);
  font-size: 0.92rem;
}
.modern-table tbody tr:last-child td {
  border-bottom: none;
}
.modern-table tbody tr:hover {
  background: var(--slate-50);
}

/* Alert Boxes */
.alert-box {
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid transparent;
}
.alert-info {
  background: var(--primary-50);
  border-color: var(--primary-100);
  color: var(--dark-800);
}
.alert-info h4 { color: var(--primary-700); }
.alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: var(--dark-800);
}
.alert-success h4 { color: var(--success-600); }
.alert-warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: var(--dark-800);
}
.alert-warning h4 { color: var(--accent-600); }
.alert-danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: var(--dark-800);
}
.alert-danger h4 { color: var(--danger-600); }
.alert-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.alert-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* SHA256 Code Box */
.code-box {
  background: var(--dark-900);
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88rem;
  word-break: break-all;
}
.code-box-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.code-box-hash {
  color: #34d399;
  font-weight: 700;
}

/* ==========================================================================
   PROSE / ARTICLE CONTENT & LARGE SQUARE FIGURES
   ========================================================================== */
.prose {
  width: 100%;
}
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-900);
  margin: 2.2rem 0 0.85rem;
  letter-spacing: -0.01em;
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin: 1.6rem 0 0.65rem;
}
.prose p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.4rem;
}
.prose li {
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.prose strong {
  color: var(--dark-900);
}

/* Large Square Image Display (1:1 Ratio) */
figure.square-figure,
.prose figure {
  margin: 2.2rem auto;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
figure.square-figure img,
.prose figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  display: block;
  margin: 0 auto;
}
figcaption {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 0.75rem;
  text-align: center;
}

/* ==========================================================================
   STEP-BY-STEP INSTALLATION CARDS
   ========================================================================== */
.steps-container {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.step-card:hover {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-600);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.4rem;
}
.step-content p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.faq-card.is-open {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
}
.faq-arrow {
  width: 22px;
  height: 22px;
  color: var(--primary-600);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-card.is-open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--slate-600);
  font-size: 0.96rem;
  line-height: 1.75;
}
.faq-card.is-open .faq-answer {
  display: block;
}

/* Category Filter Tabs (For FAQ & inner pages) */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-tab-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab-btn:hover,
.filter-tab-btn.is-active {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

/* ==========================================================================
   SCORE & RECOMMENDATION BOARD (EXPERT VERDICT)
   ========================================================================== */
.verdict-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: stretch;
}

@media (min-width: 960px) {
  .verdict-board {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  }
}

.score-card {
  background: linear-gradient(135deg, var(--dark-900), var(--dark-800));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.score-badge {
  color: var(--accent-500);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.score-huge {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.score-bar-row {
  display: grid;
  grid-template-columns: 6rem 1fr 2.5rem;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.score-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500), var(--coral-500));
  border-radius: 999px;
}

.recommend-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  height: 100%;
}

@media (min-width: 600px) {
  .recommend-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.recommend-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.25s ease;
}

.recommend-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.recommend-box.is-yes {
  border-top: 5px solid var(--success-500);
}

.recommend-box.is-caution {
  border-top: 5px solid var(--accent-500);
}

.recommend-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.recommend-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

.recommend-list li {
  font-size: 0.9rem;
  color: var(--slate-600);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}

.recommend-box.is-yes .recommend-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: 800;
}

.recommend-box.is-caution .recommend-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--accent-500);
  font-weight: 800;
}

/* ==========================================================================
   FLOATING SPEED DIAL (MASUK JUMP BUTTON)
   ========================================================================== */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 150;
}
.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
}
.floating-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.55);
  color: var(--white);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: var(--dark-950);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--slate-400);
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* ==========================================================================
   LEGACY ADAPTATION & INNER PAGE ENHANCEMENTS
   ========================================================================== */
.section-intro-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--slate-200);
}
.section-badge-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-600);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.section-main-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.section-subtitle-text {
  font-size: 1.05rem;
  color: var(--slate-500);
}

.content-block-section {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .content-block-section {
    padding: 1.75rem 1.25rem;
  }
}

.findings-grid-3 {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 860px) {
  .findings-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.finding-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.finding-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.finding-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.finding-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.6rem;
}
.finding-card p {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.finding-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stats-4grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 800px) {
  .stats-4grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-pill-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  text-align: left;
}
.stat-big-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-main-lbl {
  font-weight: 700;
  color: var(--dark-900);
  font-size: 0.95rem;
}
.stat-sub-lbl {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.rating-score-highlight {
  background: linear-gradient(135deg, var(--dark-950), var(--dark-900));
  border: 1px solid var(--dark-700);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.rating-big-num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.rating-chips-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 650px;
  margin: 2rem auto 0;
}
.rating-chip-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.rating-chip-item strong {
  color: #60a5fa;
}

.summary-dark-callout {
  background: var(--dark-900);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  margin: 3rem 0 1.5rem;
  border: 1px solid var(--dark-700);
}
.summary-dark-callout h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.summary-dark-callout p {
  color: var(--slate-300);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.paragraph-hard-d65b,
.stats-banner-legacy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.element_clean_20ef {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.gallery_2894 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.notice-21c7 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-500);
}

/* ==========================================================================
   SPEC GRID (PRO_4FD0) & STATS CARDS
   ========================================================================== */
.spec-grid-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin: 1.75rem 0;
}

@media (min-width: 768px) {
  .spec-grid-card {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2.5rem;
  }
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--slate-200);
}

.spec-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-900);
  word-break: break-all;
}

.vs-comparison-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1.75rem 0;
}

@media (min-width: 768px) {
  .vs-comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vs-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.vs-box.is-apk {
  border-top: 4px solid var(--primary-600);
}

.vs-box.is-store {
  border-top: 4px solid var(--coral-500);
}

.vs-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.75rem 0;
}

.vs-list li {
  font-size: 0.92rem;
  color: var(--slate-600);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}

.vs-list.pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-500);
  font-weight: 800;
}

.vs-list.con li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger-500);
  font-weight: 800;
}

.vs-divider-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-400);
  margin: 1rem 0 0.5rem;
  letter-spacing: 0.05em;
}

/* Steps & Timeline */
.tabs_first_9ebc,
.notification_c9eb {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.2s;
}

.tabs_first_9ebc:hover,
.notification_c9eb:hover {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.medium-9dc8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-600);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.east_d56c {
  flex: 1;
}

.carousel-f3ac {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.35rem;
}

.shade-bottom-01fb {
  color: var(--slate-600);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* APK Specs Grid (pro_4fd0 / menu_7290) */
.pro_4fd0 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  margin: 1.75rem 0;
}

@media (min-width: 768px) {
  .pro_4fd0 {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
}

.menu_7290 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--slate-200);
}

.button-8c9e {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.button_df86 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark-900);
  word-break: break-word;
}

/* Download Server Mirrors Grid (dark_5e9c / hero_bdce) */
.hero_bdce,
.download-servers-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.dark_5e9c,
.download-server-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .dark_5e9c,
  .download-server-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.dark_5e9c:hover,
.download-server-card:hover {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.motion-a961,
.server-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.mask-fast-b21e,
.server-details {
  flex: 1;
}

.tooltip_smooth_395f,
.server-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 0.35rem;
}

.center-d213,
.server-desc {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.summary-copper-0181,
.server-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.summary-copper-0181 span,
.server-meta-tag {
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-600);
}

.content_89f7,
.server-action-wrap {
  flex-shrink: 0;
}

/* Security Guarantee List */
.security-audit-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

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

.security-audit-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.2s;
}

.security-audit-item:hover {
  background: var(--white);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-sm);
}

.security-audit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.12);
  color: var(--success-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.security-audit-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.35rem;
}

.security-audit-info p {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Requirements Check List */
.req-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.req-check-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.req-check-item strong {
  color: var(--dark-900);
}

.req-check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* App Feature Grid (8 Grid) */
.features-grid-8 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

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

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

.feature-card-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.feature-card-item:hover {
  background: var(--white);
  border-color: var(--primary-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}

.feature-card-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.4rem;
}

.feature-card-item p {
  color: var(--slate-600);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* App Screenshots 4-Grid */
.screenshots-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

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

.screenshot-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1rem;
  text-align: center;
  transition: all 0.25s;
}

.screenshot-card:hover {
  border-color: var(--primary-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  display: block;
}

.screenshot-caption {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-top: 0.75rem;
}

/* ==========================================================================
   MODERN FAQ SECTION & CARDS
   ========================================================================== */
.faq-search-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.faq-search-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.faq-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}

.faq-tab-btn:hover,
.faq-tab-btn.is-active,
.faq-tab-btn.fn-active-126f {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.faq-group-section {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .faq-group-section {
    padding: 1.75rem 1.25rem;
  }
}

.faq-group-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--slate-200);
}

.faq-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-600);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 0.35rem;
}

.faq-group-desc {
  font-size: 1rem;
  color: var(--slate-500);
}

.faq-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-50);
  transition: all 0.25s ease;
}

.faq-item-card:hover {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-sm);
}

.faq-item-card.is-open {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-item-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
  transition: color 0.2s;
}

.faq-item-btn:hover {
  color: var(--primary-600);
}

.faq-item-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-600);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item-card.is-open .faq-item-icon {
  transform: rotate(180deg);
}

.faq-item-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--slate-100);
  margin-top: 0.25rem;
  padding-top: 1.25rem;
}

.faq-item-card.is-open .faq-item-answer {
  display: block;
}

.faq-item-answer p {
  margin-bottom: 0.85rem;
}

.faq-item-answer ul,
.faq-item-answer ol {
  margin: 0.75rem 0 1rem 1.4rem;
}

.faq-item-answer li {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   REVIEW CARDS & RATING STYLING
   ========================================================================== */
.reviews-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.review-card-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.review-card-item:hover {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.reviewer-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 0.2rem;
}

.reviewer-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--slate-500);
}

.reviewer-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.review-card-body {
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.82rem;
  color: var(--slate-500);
}

.rating-distribution-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 1.5rem;
}

.rating-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 3rem;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-900);
}

.rating-bar-track {
  height: 10px;
  background: var(--slate-200);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border-radius: 999px;
}

/* Download Mirror Buttons */
.photo_glass_b2e8,
.pressed-d6d9 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-600), var(--coral-500));
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  text-decoration: none;
  transition: all 0.2s ease;
}
.photo_glass_b2e8:hover,
.pressed-d6d9:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Search input & category tags */
.banner_selected_13d7 {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--dark-900);
  box-shadow: var(--shadow-sm);
  outline: none;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}
.banner_selected_13d7:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.backdrop-small-103f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.info_b719 {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}
.info_b719:hover,
.info_b719.fn-active-126f {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

/* FAQ Collapsible */
.focused-1ddc {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-top: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.tag_bright_da70 {
  width: 20px;
  height: 20px;
  color: var(--primary-600);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.focused-1ddc.is-active .tag_bright_da70 {
  transform: rotate(180deg);
}
.full-5a1a {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

