/* ==========================================================================
   QtGok - Tech & Software Reviews Design System
   Theme: Blush Googlish & Pure White
   Fonts: Outfit (Display) & Inter (Body)
   (Font loaded via preconnected HTML link tags for instant load performance)
   ========================================================================== */

:root {
  /* Blush & Googlish Palette */
  --bg-primary: #ffffff;
  --bg-subtle: #fffbfc;
  --bg-blush-soft: #fdf2f4;
  --bg-blush-medium: #fbe5e9;
  --blush-accent: #e85d75;
  --blush-hover: #d84560;
  --blush-dark: #b82d47;
  --blush-gradient: linear-gradient(135deg, #e85d75 0%, #ff758c 100%);
  --blush-hero-glow: radial-gradient(circle at 50% 20%, rgba(232, 93, 117, 0.12) 0%, rgba(255, 255, 255, 0) 70%);

  /* Google & Microsoft Accent Colors */
  --google-blue: #1a73e8;
  --google-red: #ea4335;
  --google-yellow: #fbbc04;
  --google-green: #34a853;
  --ms-blue: #0078d4;

  /* Typography & Slate Neutrals */
  --text-primary: #191f2c;
  --text-secondary: #4a5568;
  --text-muted: #8896ab;
  --text-light: #ffffff;

  /* Surface & Border */
  --surface-white: #ffffff;
  --surface-card: #ffffff;
  --border-light: #f1e4e7;
  --border-subtle: #f8ecee;
  --border-focus: #e85d75;

  /* Status Colors */
  --score-green: #059669;
  --score-green-bg: #ecfdf5;
  --score-green-border: #a7f3d0;
  --score-red: #dc2626;
  --score-red-bg: #fef2f2;
  --score-red-border: #fecaca;
  --star-gold: #f59e0b;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(232, 93, 117, 0.04);
  --shadow-md: 0 4px 20px -2px rgba(232, 93, 117, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 36px -4px rgba(232, 93, 117, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 40px -4px rgba(232, 93, 117, 0.18), 0 6px 16px -2px rgba(0, 0, 0, 0.06);

  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --container-width: 1240px;
  --header-height: 72px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-subtle);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   Affiliate & AdSense Transparency Bar
   ========================================================================== */
.transparency-bar {
  background: var(--bg-blush-soft);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 6px 0;
  text-align: center;
}

.transparency-bar strong {
  color: var(--blush-accent);
}

.transparency-bar a {
  text-decoration: underline;
  color: var(--blush-dark);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blush-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.35);
}

.logo-text {
  color: var(--text-primary);
}

.logo-text span {
  color: var(--blush-accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--blush-accent);
  background: var(--bg-blush-soft);
}

.nav-tag {
  font-size: 0.7rem;
  background: var(--blush-accent);
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 4px;
  vertical-align: middle;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-trigger-btn {
  background: var(--bg-blush-soft);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.search-trigger-btn:hover {
  background: white;
  border-color: var(--blush-accent);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}

.search-kbd {
  font-size: 0.7rem;
  background: white;
  border: 1px solid var(--border-light);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--blush-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(232, 93, 117, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 117, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-blush-soft);
  border-color: var(--blush-accent);
  color: var(--blush-accent);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

.btn-google {
  background: #f8fafd;
  border: 1px solid #dadce0;
  color: #3c4043;
}
.btn-google:hover {
  background: #edf2fc;
  border-color: var(--google-blue);
  color: var(--google-blue);
}

.btn-microsoft {
  background: #f3f6fc;
  border: 1px solid #d2e3fc;
  color: #0078d4;
}
.btn-microsoft:hover {
  background: #e5effd;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 50px 0;
  background: var(--blush-hero-glow);
  text-align: center;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blush-accent);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .gradient-text {
  background: var(--blush-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  max-width: 760px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   AdSense Mock & Container Component
   ========================================================================== */
.ad-slot-container {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ad-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.ad-box-leaderboard {
  width: 100%;
  max-width: 728px;
  min-height: 90px;
  background: #ffffff;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ad-box-leaderboard .ad-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--blush-accent);
}

.ad-box-rectangle {
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  background: #ffffff;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-header-left {
  max-width: 600px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blush-accent);
  margin-bottom: 6px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-top: 6px;
}

/* ==========================================================================
   Ecosystem Spotlights: Google vs Microsoft
   ========================================================================== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.ecosystem-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush-accent);
}

.ecosystem-card.google-theme {
  border-top: 4px solid var(--google-blue);
}

.ecosystem-card.microsoft-theme {
  border-top: 4px solid var(--ms-blue);
}

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

.brand-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.google-badge {
  background: #f8fafd;
  color: var(--google-blue);
  border: 1px solid #dadce0;
}

.microsoft-badge {
  background: #f3f6fc;
  color: var(--ms-blue);
  border: 1px solid #d2e3fc;
}

.ecosystem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.ecosystem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.pill-item {
  background: var(--bg-blush-soft);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Review Cards Grid
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush-accent);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card-category-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.brand-chip.google {
  background: #f1f6fe;
  color: #1a73e8;
  border: 1px solid #d2e3fc;
}

.brand-chip.microsoft {
  background: #edf5fd;
  color: #0078d4;
  border: 1px solid #c7e0f4;
}

.brand-chip.other {
  background: var(--bg-blush-soft);
  color: var(--blush-dark);
  border: 1px solid var(--border-light);
}

.badge-flag {
  font-size: 0.72rem;
  background: #fef3c7;
  color: #b45309;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--score-green-bg);
  border: 1px solid var(--score-green-border);
  color: var(--score-green);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 12px;
}

.rating-badge .star-icon {
  color: var(--star-gold);
  font-size: 0.95rem;
}

.review-card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}

.review-card-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pros-mini-list {
  background: var(--bg-blush-soft);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
}

.pros-mini-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blush-dark);
  margin-bottom: 6px;
}

.pros-mini-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.pros-mini-list li::before {
  content: "✓";
  color: var(--score-green);
  font-weight: bold;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  gap: 12px;
}

.card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Filter & Tabs Bar
   ========================================================================== */
.filter-tabs-container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 30px;
  scrollbar-width: thin;
}

.filter-tab {
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--blush-accent);
  color: white;
  border-color: var(--blush-accent);
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.25);
}

/* ==========================================================================
   Comparison Table Styles
   ========================================================================== */
.comparison-wrapper {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin: 40px 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: var(--bg-blush-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
}

.comparison-table th:first-child {
  border-top-left-radius: var(--radius-sm);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--radius-sm);
}

.comparison-table tr:hover td {
  background: var(--bg-subtle);
}

/* ==========================================================================
   Detailed Review Page Styles
   ========================================================================== */
.review-hero {
  background: var(--blush-hero-glow);
  padding: 50px 0 30px 0;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--blush-accent);
}

.review-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.review-headline h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.review-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blush-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.author-info .name {
  font-weight: 600;
  font-size: 0.92rem;
}

.author-info .role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-score-hero-box {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 220px;
}

.score-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--score-green);
  line-height: 1;
  margin-bottom: 4px;
}

.score-scale {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 50px 0;
}

.review-main-body h2 {
  font-size: 1.8rem;
  margin: 36px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.review-main-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Pros and Cons Box */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros-box, .cons-box {
  border-radius: var(--radius-md);
  padding: 24px;
}

.pros-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-box .box-title { color: #166534; }
.cons-box .box-title { color: #991b1b; }

.pros-box li, .cons-box li {
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pros-box li::before {
  content: "✔";
  color: #16a34a;
  font-weight: bold;
}

.cons-box li::before {
  content: "✖";
  color: #dc2626;
  font-weight: bold;
}

/* Score Breakdown Bars */
.breakdown-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.breakdown-row {
  margin-bottom: 14px;
}

.breakdown-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.breakdown-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-blush-medium);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: var(--blush-gradient);
  border-radius: var(--radius-pill);
}

/* Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
  border: 2px solid var(--border-light);
  border-left: 6px solid var(--blush-accent);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 36px 0;
}

.verdict-title {
  font-size: 1.3rem;
  color: var(--blush-dark);
  margin-bottom: 10px;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.widget-title {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.specs-list dt {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 10px;
}

.specs-list dd {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* ==========================================================================
   Newsletter & Community CTA
   ========================================================================== */
.newsletter-card {
  background: var(--blush-gradient);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: white;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-card h2 {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto 28px auto;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  padding: 6px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
  flex: 1;
  padding: 10px 18px;
  border: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
}

.newsletter-btn {
  background: var(--text-primary);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #000000;
}

/* ==========================================================================
   Search Modal (Ctrl + K)
   ========================================================================== */
.search-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal-backdrop.open {
  display: flex;
}

.search-modal-card {
  background: white;
  width: 90%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  overflow: hidden;
  animation: modalSlide 0.2s ease-out;
}

@keyframes modalSlide {
  from { opacity: 0; transform: translateY(-20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.search-modal-input-wrap {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.search-modal-icon {
  font-size: 1.3rem;
  color: var(--blush-accent);
}

.search-modal-input {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-primary);
  border: none;
}

.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: var(--bg-blush-soft);
}

.search-result-item .item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.search-result-item .item-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Cookie Consent Banner (AdSense Compliance)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.3s ease;
}

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

.cookie-banner.show {
  display: flex;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--blush-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   Static Pages: Privacy, Terms, Disclaimer, About, Contact
   ========================================================================== */
.static-page-header {
  background: var(--blush-hero-glow);
  padding: 60px 0 30px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.static-page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.static-page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.policy-container {
  max-width: 860px;
  margin: 50px auto;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.policy-container h2 {
  font-size: 1.6rem;
  margin: 32px 0 14px 0;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 6px;
}

.policy-container h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}

.policy-container p, .policy-container li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-container ul {
  padding-left: 24px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 50px auto;
}

.contact-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  background: white;
  border-color: var(--blush-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 117, 0.15);
}

/* ==========================================================================
   Footer (AdSense Compliant Structure)
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pill-badge-outline {
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .review-content-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .mobile-menu-toggle { display: block; }
  .hero-title { font-size: 2.2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}
