/*
Theme Name: SecurePickr
Theme URI: https://securepickr.com
Author: SecurePickr Media LLC
Author URI: https://securepickr.com
Description: Smart cybersecurity choices for small businesses. A custom theme built for antivirus reviews and comparisons.
Version: 1.0.0
License: GPL v2 or later
Text Domain: securepickr
*/

@font-face {
  font-family: 'Rethink Sans';
  src: url('assets/fonts/RethinkSans-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --navy: #0a1f2e;
  --navy-light: #132f42;
  --green: #4caf50;
  --green-dark: #388e3c;
  --gray-50: #f8f9fa;
  --gray-100: #f5f7fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --white: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

/* TOPBAR */
.topbar {
  background: #0a1f2e;
  color: #ccc;
  font-size: 12px;
  line-height: 1.4;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.topbar-disclosure a {
  color: #4caf50;
  text-decoration: underline;
}

.topbar-youtube {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar-close {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}

.topbar-close:hover {
  color: #fff;
}

/* HEADER */
.header {
  background: #0a1f2e;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-logo {
  display: flex;
  padding: 4px 0;
  min-height: 48px;
  align-items: center;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}

.header-logo:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.header-logo:active {
  opacity: 0.7;
  transform: scale(0.97);
}

.header-logo:focus-visible {
  outline: 2px solid #4caf50;
  outline-offset: 2px;
}

.header-logo-svg {
  width: 240px;
  height: 34px;
  display: block;
  max-width: none;
}

.header-logo svg text {
  fill: #fff;
}

.logo-text {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.logo-text-pickr {
  font-family: 'Rethink Sans', sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  border-radius: 6px;
}

.header-search-btn:hover {
  opacity: 1;
}

.header-search-btn.active {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}

/* Search Bar */
.header-search-bar {
  display: none;
  background: #fff;
  border-bottom: 2px solid #4caf50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.header-search-bar.open {
  display: flex !important;
}

.header-search-bar form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  width: 100%;
}

.header-search-bar-icon {
  flex-shrink: 0;
}

.header-search-bar-input {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  color: #333;
  background: transparent;
}

.header-search-bar-input::placeholder {
  color: #aaa;
}

.header-search-bar-submit {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-search-bar-submit:hover {
  background: #388e3c;
}

.header-search-bar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  flex-shrink: 0;
}

.header-search-bar-close:hover {
  color: #333;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* NAV MENU */
.nav-menu {
  background: #0a1f2e;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: default;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.nav-arrow {
  transition: transform 0.2s;
}

.nav-item.active .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
  min-width: 600px;
  padding: 24px 0;
}

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

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.dropdown-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 10px;
}

.dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dropdown-link {
  font-size: 13px;
  color: #555;
  transition: color 0.15s;
}

.dropdown-link:hover {
  color: #4caf50;
}

/* HERO */
.best-hero {
  background: linear-gradient(135deg, #0a1f2e 0%, #132f42 100%);
  color: #fff;
  padding: 60px 0 48px;
  text-align: center;
}

.best-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.best-hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.best-hero-subtitle {
  font-size: 18px;
  color: #adb5bd;
  line-height: 1.6;
}

/* PAGE META */
.page-meta {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 20px 0;
}

.humans-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.humans-text {
  font-weight: 500;
}

.humans-link {
  color: #4caf50;
  font-weight: 600;
  font-size: 13px;
}

.humans-link:hover {
  text-decoration: underline;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-authors {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555;
}

.meta-by {
  color: #999;
  font-weight: 500;
}

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

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9ecef;
  flex-shrink: 0;
  object-fit: cover;
}

.author-name {
  color: #0a1f2e;
  font-weight: 700;
}

.author-name:hover {
  color: #4caf50;
}

.author-title {
  color: #777;
  font-size: 13px;
}

.meta-and {
  color: #999;
  font-weight: 500;
}

.meta-date {
  font-size: 13px;
  color: #888;
}

.meta-date .date {
  font-weight: 600;
  color: #555;
}

/* TRUST METRICS */
.trust-metrics {
  background: #f5f7fa;
  border-bottom: 1px solid #e9ecef;
}

.metrics-accordion {
  border-bottom: none;
}

.metrics-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0a1f2e;
  transition: background 0.2s;
}

.metrics-toggle:hover {
  background: rgba(0,0,0,0.02);
}

.metrics-arrow {
  transition: transform 0.25s;
  color: #4caf50;
}

.metrics-toggle.active .metrics-arrow {
  transform: rotate(180deg);
}

.metrics-content {
  padding: 0 24px 24px;
}

.metrics-description {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.metrics-description a {
  color: #4caf50;
  font-weight: 600;
}

.metrics-description a:hover {
  text-decoration: underline;
}

.metrics-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.metric-stat {
  text-align: center;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 120px;
}

.metric-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.12);
}

.metric-value {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #0a1f2e 0%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: 600;
  margin-top: 6px;
  text-transform: lowercase;
  position: relative;
  padding-top: 8px;
}

.metric-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: #4caf50;
  border-radius: 1px;
}

.metrics-content .humans-badge {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 0;
}

/* FEATURED TILES */
.featured-tiles {
  padding: 48px 0;
  background: linear-gradient(to bottom, #f0f4f8, #f5f7fa);
  position: relative;
}
.featured-tiles > .container {
  position: relative;
  z-index: 1;
}
.featured-tiles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4caf50, transparent);
  border-radius: 0 0 4px 4px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.tile-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.tile-card.top {
  border: 2px solid #4caf50;
  position: relative;
}

.tile-card.top::before {
  content: 'TOP PICK';
  position: absolute;
  top: 12px;
  right: 12px;
  background: #4caf50;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}

.tile-label {
  background: #0a1f2e;
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.tile-label-text {
  display: block;
}

.tile-product-name {
  font-weight: 800;
  color: #4caf50;
}

.tile-label .tile-product-name {
  display: inline;
}

.tile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.tile-logo {
  flex: 1;
}

.tile-logo-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: #0a1f2e;
}

.tile-rating {
  text-align: right;
  flex-shrink: 0;
}

.rating-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 2px;
}

.rating-value {
  font-size: 14px;
  color: #555;
}

.rating-value strong {
  font-size: 22px;
  color: #f5a623;
  font-weight: 800;
}

.tile-features {
  margin-bottom: 20px;
  flex: 1;
}

.tile-features-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a1f2e;
}

.tile-features ul {
  list-style: disc;
  padding-left: 18px;
}

.tile-features li {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
}

.tile-cta {
  text-align: center;
}

.btn-green {
  display: inline-block;
  padding: 12px 32px;
  background: #4caf50;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background: #388e3c;
}

.btn-disclosure {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

/* INTRO */
.intro-section {
  padding: 48px 0;
  background: #fff;
}

.intro-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 16px;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* TABLE OF CONTENTS */
.toc-section {
  padding: 32px 0;
  background: #f5f7fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.toc-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.toc-col {
  flex: 1;
}

.toc-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 12px;
}

.toc-links {
  list-style: none;
}

.toc-links > li {
  margin-bottom: 6px;
}

.toc-links a {
  font-size: 14px;
  color: #4caf50;
  font-weight: 500;
  transition: color 0.15s;
}

.toc-links a:hover {
  color: #2e7d32;
  text-decoration: underline;
}

.toc-sublinks {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
}

.toc-sublinks li {
  margin-bottom: 3px;
}

.toc-sublinks a {
  font-size: 13px;
  color: #777;
  font-weight: 400;
}

.toc-sublinks a:hover {
  color: #4caf50;
}

.toc-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}

/* COMPARISON TABLE */
.comparison-section {
  padding: 56px 0;
  background: #fff;
}

.comparison-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 900px;
}

.comparison-table th {
  background: #0a1f2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 10px;
  text-align: center;
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: left;
  padding-left: 16px;
}

.comparison-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  color: #555;
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: #0a1f2e;
  text-align: left;
  padding-left: 16px;
  white-space: nowrap;
}

.comparison-table tbody tr {
  transition: background 0.15s;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-table tbody tr.top-row {
  background: #f0faf0;
}

.comparison-table tbody tr.top-row:hover {
  background: #e8f5e9;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}

.rank-1 { background: #4caf50; }
.rank-2 { background: #2196f3; }
.rank-3 { background: #ff9800; }
.rank-4, .rank-5, .rank-6, .rank-7 { background: #9e9e9e; }

.comp-rating {
  font-size: 12px;
  color: #555;
}

.comp-rating strong {
  font-size: 16px;
  color: #f5a623;
  font-weight: 800;
}

.comp-rating-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.review-link {
  color: #4caf50;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

.review-link:hover {
  text-decoration: underline;
}

.comparison-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #f5f7fa;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* RUNDOWN */
.rundown-section {
  padding: 48px 0 0;
  background: #f5f7fa;
}

.rundown-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
}

/* HUMANS BADGE ROBOT ICON */
.humans-robot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* FEATURE HIGHLIGHT CALLOUT */
.feature-highlight {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0284c7;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
}

.feature-highlight h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0369a1;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-highlight p {
  font-size: 14px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* CALLOUT / INSIGHT BOXES */
.callout {
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
}

.callout-content {
  flex: 1;
}

.callout-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.callout-text {
  color: inherit;
  margin: 0;
}

.callout-why-important {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.callout-why-important .callout-icon {
  background: #0284c7;
  color: #fff;
}

.callout-why-important .callout-title {
  color: #0369a1;
}

.callout-pro-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.callout-pro-tip .callout-icon {
  background: #16a34a;
  color: #fff;
}

.callout-pro-tip .callout-title {
  color: #15803d;
}

.callout-fyi {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.callout-fyi .callout-icon {
  background: #64748b;
  color: #fff;
}

.callout-fyi .callout-title {
  color: #475569;
}

.callout-expert {
  background: #fefce8;
  border: 1px solid #fde68a;
}

.callout-expert .callout-icon {
  background: #ca8a04;
  color: #fff;
}

.callout-expert .callout-title {
  color: #a16207;
}

/* PRICING TABLE (within reviews) */
.pricing-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.pricing-table th {
  background: #0a1f2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-align: left;
}

.pricing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e9ecef;
  color: #555;
}

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

.pricing-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.pricing-table .price-amount {
  font-weight: 700;
  color: #0a1f2e;
}

.pricing-table .price-recommended {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* TOPBAR YOUTUBE LINK */
.topbar-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.15s;
}

.topbar-yt-link:hover {
  color: #4caf50;
}

.topbar-yt-link svg {
  flex-shrink: 0;
}

.topbar-yt-cta {
  color: #4caf50;
  font-weight: 600;
}

/* PRODUCT REVIEW */
.product-review {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.product-review:nth-child(even) {
  background: #fafbfc;
}

.product-review .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.review-title-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-number {
  font-size: 36px;
  font-weight: 800;
  color: #4caf50;
  line-height: 1;
  flex-shrink: 0;
}

.review-name {
  font-size: 24px;
  font-weight: 800;
  color: #0a1f2e;
  margin-bottom: 4px;
}

.review-label {
  font-size: 14px;
  color: #888;
}

.review-rating {
  text-align: right;
  flex-shrink: 0;
}

.review-cta-header {
  text-align: center;
  flex-shrink: 0;
}

.review-cta-header .btn-green {
  padding: 10px 28px;
  font-size: 14px;
  white-space: nowrap;
}

.review-specs {
  margin-bottom: 28px;
}

.specs-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a1f2e;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e9ecef;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  font-size: 13px;
}

.spec-label {
  color: #555;
  font-weight: 500;
}

.spec-value {
  font-weight: 700;
}

.spec-value.yes {
  color: #4caf50;
}

.spec-value.no {
  color: #e53935;
}

.review-body {
  max-width: 750px;
}

.review-who {
  margin-bottom: 24px;
}

.review-who h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1f2e;
  margin-bottom: 10px;
}

.review-who p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.pros, .cons {
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pros:hover, .cons:hover {
  transform: translateY(-2px);
}

.pros {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  box-shadow: 0 2px 8px rgba(22,163,74,0.06);
}
.pros:hover {
  box-shadow: 0 8px 24px rgba(22,163,74,0.12);
}

.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
  box-shadow: 0 2px 8px rgba(220,38,38,0.06);
}
.cons:hover {
  box-shadow: 0 8px 24px rgba(220,38,38,0.12);
}

.pros-title {
  font-size: 14px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-title::before {
  content: '';
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: #16a34a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  flex-shrink: 0;
}

.cons-title {
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cons-title::before {
  content: '';
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: #dc2626;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  flex-shrink: 0;
}

.pros ul {
  list-style: none;
  padding: 0;
}
.pros li {
  font-size: 14px;
  color: #166534;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  transition: transform 0.2s;
}
.pros li:hover {
  transform: translateX(4px);
}
.pros li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #16a34a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.cons ul {
  list-style: none;
  padding: 0;
}
.cons li {
  font-size: 14px;
  color: #991b1b;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  transition: transform 0.2s;
}
.cons li:hover {
  transform: translateX(4px);
}
.cons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: #dc2626;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.review-detail {
  margin-bottom: 24px;
}

.review-detail h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a1f2e;
  margin-bottom: 8px;
}

.review-detail p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.review-body .callout:first-child {
  margin-top: 0;
}

.review-body .callout:last-child {
  margin-bottom: 0;
}

.review-footer-cta {
  text-align: center;
  margin-top: 8px;
}

/* METHODOLOGY */
.methodology-section {
  background: #0a1f2e;
  color: #fff;
  padding: 56px 0;
}

.methodology-section .section-title {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.methodology-text {
  font-size: 15px;
  color: #adb5bd;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.method-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.method-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.method-step p {
  font-size: 13px;
  color: #adb5bd;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: 56px 0;
  background: #fff;
}

.faq-section .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0a1f2e;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #4caf50;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  display: block !important;
}

.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: #0a1f2e;
  color: #ccc;
  padding: 48px 0 24px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo svg text {
  fill: #fff;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  max-width: 220px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
}

.footer-email a {
  color: #ccc;
  transition: color 0.15s;
}

.footer-email a:hover {
  color: #4caf50;
}

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-newsletter-text {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 6px;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder {
  color: #777;
}

.footer-newsletter-input:focus {
  border-color: #4caf50;
}

.footer-newsletter-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: #4caf50;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-newsletter-btn:hover {
  background: #388e3c;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid #4caf50;
  border-radius: 6px;
  color: #4caf50;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.footer-cta:hover {
  background: #4caf50;
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #aaa;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #4caf50;
}

.footer-social {
  display: flex;
  gap: 4px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  opacity: 0.6;
  transition: opacity 0.2s;
  border-radius: 6px;
}

.footer-social-link:hover {
  opacity: 1;
  background: rgba(255,255,255,0.05);
}

.footer-social-link:focus-visible {
  outline: 2px solid #4caf50;
  outline-offset: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .tiles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .tile-card.top::before {
    top: 12px;
    right: 12px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .toc-layout {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .review-header {
    flex-direction: column;
  }

  .review-cta-header {
    align-self: flex-start;
  }

  .review-pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    display: none;
  }

  .best-hero-title {
    font-size: 28px;
  }

  .best-hero {
    padding: 40px 0 32px;
  }

  .best-hero-subtitle {
    font-size: 16px;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .metrics-stats {
    gap: 24px;
  }

  .metric-value {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .review-name {
    font-size: 20px;
  }

  .review-number {
    font-size: 28px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar-youtube {
    display: none;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table td, 
  .comparison-table th {
    padding: 8px 6px;
    font-size: 11px;
  }

  .intro-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .best-hero-title {
    font-size: 24px;
  }

  .tile-header {
    flex-direction: column;
    text-align: center;
  }

  .tile-rating {
    text-align: center;
  }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0a1f2e 0%, #132f42 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.4s;
}
.page-hero-hero-shield::before { background-image: url('assets/images/hero-shield.svg'); }
.page-hero-comparisons::before { background-image: url('assets/images/category-comparisons.svg'); }
.page-hero-reviews::before { background-image: url('assets/images/category-reviews.svg'); }
.page-hero-guides::before { background-image: url('assets/images/category-guides.svg'); }
.page-hero-tips::before { background-image: url('assets/images/category-tips.svg'); }
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero-subtitle {
  font-size: 17px;
  color: #adb5bd;
  line-height: 1.6;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 17px;
  color: #adb5bd;
  line-height: 1.6;
}

/* PAGE CONTENT */
.page-content-section {
  padding: 48px 0;
  background: #fff;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.page-main h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0a1f2e;
  margin: 32px 0 12px;
}

.page-main h2:first-child {
  margin-top: 0;
}

.page-main h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1f2e;
  margin: 24px 0 10px;
}

.page-main p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-main ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-main li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

.page-sidebar {
  position: sticky;
  top: 24px;
}

.sidebar-card {
  background: #f5f7fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0a1f2e;
  margin-bottom: 16px;
}

.sidebar-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

.sidebar-facts {
  list-style: none;
  padding: 0;
}

.search-no-results {
  text-align: center;
  padding: 60px 20px;
}

.search-no-results p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.search-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #4caf50;
}

.sidebar-facts li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  line-height: 1.5;
}

.sidebar-facts li:last-child {
  border-bottom: none;
}

.sidebar-note {
  font-size: 13px !important;
  color: #888 !important;
  margin-top: 12px;
}

/* Sidebar card entrance animation */
.sidebar-card-animate {
  animation: cardFadeIn 0.6s ease-out both;
}

.sidebar-card-animate:hover {
  border-color: #4caf50;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.12);
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Staggered list item animation */
.sidebar-facts-animate li {
  animation: factSlideIn 0.5s ease-out both;
  animation-delay: calc(var(--i, 0) * 0.15s);
}

.sidebar-facts-animate li .fact-icon {
  color: #4caf50;
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

.sidebar-facts-animate li strong {
  color: #0a1f2e;
}

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

@keyframes factSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4caf50;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a1f2e;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}

.blog-date {
  font-size: 13px;
  color: #999;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #4caf50;
}

.blog-read-more:hover {
  text-decoration: underline;
}

/* CONTACT */
.contact-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-form {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0a1f2e;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}

.form-group textarea {
  resize: vertical;
}

/* LEGAL PAGES */
.page-content-legal {
  max-width: 750px;
  margin: 0 auto;
}

.page-content-legal h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0a1f2e;
  margin: 36px 0 12px;
}

.page-content-legal h2:first-child {
  margin-top: 0;
}

.page-content-legal p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.page-content-legal ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content-legal li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-date {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  font-size: 14px;
  color: #888;
}

/* NAV SIMPLE LINK */
.nav-link-simple {
  cursor: pointer;
}

/* RESPONSIVE PAGES */
@media (max-width: 768px) {
  .page-hero-title {
    font-size: 26px;
  }

  .page-hero {
    padding: 36px 0 28px;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-content-legal h2 {
    font-size: 20px;
  }
}

/* === BLOG REDESIGN === */

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blog hero */
.blog-hero {
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4f 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes heroPulseGlow {
  0%, 100% { box-shadow: inset 0 0 60px rgba(76,175,80,0.08); }
  50% { box-shadow: inset 0 0 120px rgba(76,175,80,0.18); }
}
@keyframes heroShieldDrift {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(8px, -5px) scale(1.02); }
  50% { transform: translate(-4px, 8px) scale(1.01); }
  75% { transform: translate(6px, -3px) scale(1.02); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes scanLine {
  0% { top: -3px; opacity: 1; }
  100% { top: 100%; opacity: 0.6; }
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-220px) scale(0.3); opacity: 0; }
}

.blog-hero {
  animation: heroPulseGlow 4s ease-in-out infinite;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: url('assets/images/hero-shield.svg') center center / cover no-repeat;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  animation: heroShieldDrift 20s ease-in-out infinite;
}
.blog-hero .scan-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76,175,80,0.7), transparent);
  box-shadow: 0 0 12px rgba(76,175,80,0.3);
  pointer-events: none;
  z-index: 2;
  animation: scanLine 4s linear infinite;
}
.blog-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.blog-hero-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(76,175,80,0.8);
  animation: floatUp 8s ease-in infinite;
}
.blog-hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.blog-hero-particles span:nth-child(2) { left: 30%; width: 4px; height: 4px; animation-delay: 2.5s; }
.blog-hero-particles span:nth-child(3) { left: 50%; width: 5px; height: 5px; animation-delay: 1.2s; }
.blog-hero-particles span:nth-child(4) { left: 70%; width: 3px; height: 3px; animation-delay: 3.8s; }
.blog-hero-particles span:nth-child(5) { left: 85%; width: 5px; height: 5px; animation-delay: 0.8s; }
.blog-hero-particles span:nth-child(6) { left: 45%; width: 4px; height: 4px; animation-delay: 5s; }

.blog-hero-inner {
  position: relative;
  z-index: 3;
}
.blog-hero-comparisons::before { background-image: url('assets/images/category-comparisons.svg'); }
.blog-hero-reviews::before { background-image: url('assets/images/category-reviews.svg'); }
.blog-hero-guides::before { background-image: url('assets/images/category-guides.svg'); }
.blog-hero-tips::before { background-image: url('assets/images/category-tips.svg'); }
.blog-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.blog-hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.blog-hero-subtitle {
  font-size: 17px;
  color: #adb5bd;
  line-height: 1.6;
}

/* Blog list section */
.blog-list-section {
  padding: 48px 0;
  background: #f5f7fa;
}

/* Featured post */
.featured-post {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.featured-post:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.featured-post-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
}
.featured-post-image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #1a3a4f 0%, #2a5a6f 100%);
}
.featured-post-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.featured-post-comparisons .featured-post-image::after { background-image: url('assets/images/category-comparisons.svg'); }
.featured-post-reviews .featured-post-image::after { background-image: url('assets/images/category-reviews.svg'); }
.featured-post-guides .featured-post-image::after { background-image: url('assets/images/category-guides.svg'); }
.featured-post-tips .featured-post-image::after { background-image: url('assets/images/category-tips.svg'); }
.featured-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.featured-post-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,46,0.6) 0%, transparent 60%);
}
.featured-post-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-post-title {
  font-size: 24px;
  font-weight: 800;
  color: #0a1f2e;
  line-height: 1.25;
  margin: 12px 0 10px;
}
.featured-post-title:hover {
  color: #4caf50;
}
.featured-post-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.featured-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #1a3a4f 0%, #2a5a6f 100%);
}
.blog-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.blog-card-comparisons .blog-card-image-wrap::after { background-image: url('assets/images/category-comparisons.svg'); }
.blog-card-reviews .blog-card-image-wrap::after { background-image: url('assets/images/category-reviews.svg'); }
.blog-card-guides .blog-card-image-wrap::after { background-image: url('assets/images/category-guides.svg'); }
.blog-card-tips .blog-card-image-wrap::after { background-image: url('assets/images/category-tips.svg'); }
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.blog-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,46,0.5) 0%, transparent 50%);
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0a1f2e;
  line-height: 1.3;
  margin: 10px 0 8px;
}
.blog-card-title:hover {
  color: #4caf50;
}
.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}

/* Category badge */
.blog-category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4caf50;
  background: rgba(76,175,80,0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Author row */
.author-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.author-avatar-xs {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.author-avatar-md {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name-sm {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.author-name-xs {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}
.author-name-md {
  font-size: 14px;
  font-weight: 700;
  color: #0a1f2e;
}
.author-title-sm {
  font-size: 12px;
  color: #888;
}
.author-meta {
  display: flex;
  flex-direction: column;
}

/* Blog meta row */
.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
}
.blog-date {
  font-size: 13px;
  color: #999;
}
.meta-sep {
  color: #ddd;
}
.reading-time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
  font-size: 13px;
  color: #888;
}
.breadcrumbs a {
  color: #4caf50;
  font-weight: 500;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  margin: 0 8px;
  color: #ccc;
}
.breadcrumb-current {
  color: #555;
  font-weight: 600;
}

/* Post hero (single) */
.post-hero {
  position: relative;
  color: #fff;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4f 100%);
}
.post-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.post-hero-comparisons .post-hero-bg::after { background-image: url('assets/images/category-comparisons.svg'); }
.post-hero-reviews .post-hero-bg::after { background-image: url('assets/images/category-reviews.svg'); }
.post-hero-guides .post-hero-bg::after { background-image: url('assets/images/category-guides.svg'); }
.post-hero-tips .post-hero-bg::after { background-image: url('assets/images/category-tips.svg'); }
.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.post-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,46,0.85) 0%, rgba(10,31,46,0.3) 60%, rgba(10,31,46,0.1) 100%);
}
.post-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  max-width: 800px;
}
.post-hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 14px;
}

/* Post meta bar */
.post-meta-bar {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 16px 0;
}
.post-meta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.post-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-meta-divider {
  width: 1px;
  height: 32px;
  background: #e9ecef;
}

/* Social share */
.social-share {
  display: flex;
  align-items: center;
  gap: 6px;
}
.share-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}
.social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7fa;
  color: #555;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.social-share-btn:hover {
  background: #4caf50;
  color: #fff;
}
.share-copy-link svg {
  width: 16px;
  height: 16px;
}

/* Post content layout */
.post-content-section {
  padding: 48px 0;
  background: #fff;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

/* Post content typography */
.post-content {
  max-width: 780px;
}
.post-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0a1f2e;
  margin: 40px 0 14px;
  scroll-margin-top: 100px;
}
.post-content h2:first-child {
  margin-top: 0;
}
.post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1f2e;
  margin: 28px 0 10px;
  scroll-margin-top: 100px;
}
.post-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}
.post-content ul,
.post-content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}
.post-content li {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}
.post-content img {
  border-radius: 10px;
  margin: 24px 0;
}
.post-content blockquote {
  border-left: 4px solid #4caf50;
  padding: 16px 20px;
  margin: 24px 0;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Sticky sidebar TOC */
.post-sidebar {
  position: sticky;
  top: 100px;
}
.toc-sticky {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
}
.toc-sticky-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 12px;
}
.toc-sticky-list {
  list-style: none;
  padding: 0;
}
.toc-sticky-list li {
  margin-bottom: 4px;
}
.toc-sticky-link {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: #555;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  border-left: 3px solid transparent;
}
.toc-sticky-link:hover {
  background: #e9ecef;
  color: #0a1f2e;
}
.toc-sticky-link.active {
  color: #4caf50;
  background: rgba(76,175,80,0.08);
  border-left-color: #4caf50;
  font-weight: 600;
}

/* Related posts */
.related-section {
  background: #f5f7fa;
  padding: 48px 0;
  border-top: 1px solid #e9ecef;
}
.related-title {
  font-size: 24px;
  font-weight: 800;
  color: #0a1f2e;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.related-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.related-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.related-card-image {
  position: relative;
  overflow: hidden;
  height: 180px;
  background: linear-gradient(135deg, #1a3a4f 0%, #2a5a6f 100%);
}
.related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.related-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,46,0.5) 0%, transparent 50%);
}
.related-card-body {
  padding: 16px;
}
.related-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0a1f2e;
  line-height: 1.3;
  margin: 8px 0 0;
}
.related-card-title:hover {
  color: #4caf50;
}
.related-card-body .blog-meta-row {
  margin-top: 8px;
}

/* Newsletter CTA */
.newsletter-cta {
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4f 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.newsletter-cta-inner {
  max-width: 550px;
  margin: 0 auto;
}
.newsletter-cta-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-cta-text {
  font-size: 15px;
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 24px;
}
.newsletter-cta-form {
  display: flex;
  gap: 8px;
}
.newsletter-cta-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-cta-input::placeholder {
  color: #888;
}
.newsletter-cta-input:focus {
  border-color: #4caf50;
}
.newsletter-cta-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: #4caf50;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-cta-btn:hover {
  background: #388e3c;
}

/* Pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: #fff;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pagination .page-numbers:hover {
  background: #f5f7fa;
  border-color: #ccc;
}
.pagination .page-numbers.current {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 13px;
}

/* No posts */
.no-posts {
  text-align: center;
  font-size: 16px;
  color: #888;
  padding: 60px 20px;
}

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-post-link {
    grid-template-columns: 1fr;
  }
  .featured-post-image {
    min-height: 240px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 26px;
  }
  .blog-hero {
    padding: 36px 0 28px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .featured-post-body {
    padding: 24px;
  }
  .featured-post-title {
    font-size: 20px;
  }
  .post-hero-title {
    font-size: 26px;
  }
  .post-hero {
    min-height: 280px;
  }
  .post-hero-content {
    padding: 40px 0 28px;
  }
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }
  .post-meta-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .post-meta-divider {
    display: none;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-title {
    font-size: 20px;
  }
  .newsletter-cta-title {
    font-size: 22px;
  }
  .newsletter-cta-form {
    flex-direction: column;
  }
  .post-content h2 {
    font-size: 22px;
  }
  .post-content h3 {
    font-size: 18px;
  }
  .blog-list-section {
    padding: 32px 0;
  }
}

@media (max-width: 480px) {
  .post-hero-title {
    font-size: 22px;
  }
  .featured-post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-card-image-wrap {
    height: 160px;
  }
  .related-card-image {
    height: 140px;
  }
}

/* === CONTACT PAGE REDESIGN === */

.contact-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4f 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 25% 50%, #4caf50 0%, transparent 50%), radial-gradient(circle at 75% 50%, #4caf50 0%, transparent 50%);
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.contact-hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.contact-hero-subtitle {
  font-size: 17px;
  color: #adb5bd;
  line-height: 1.7;
}

/* Our Mission */
.contact-company {
  padding: 64px 0;
  background: #fff;
}
.contact-company-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}
.contact-company-image {
  display: flex;
  justify-content: center;
}
.contact-company-img-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-company-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}
.contact-company-img-frame {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #4caf50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.contact-company-img-frame:hover {
  transform: scale(1.04);
  border-color: #2e7d32;
  box-shadow: 0 8px 30px rgba(76,175,80,0.25);
}
.contact-company-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.contact-company-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.contact-company-text p:last-child {
  margin-bottom: 0;
}

/* Section title */
.contact-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0a1f2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Our Experts */
.contact-experts {
  padding: 64px 0;
  background: #f5f7fa;
  text-align: center;
}
.contact-experts .contact-section-title {
  text-align: center;
  margin-bottom: 36px;
}
.contact-experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 32px;
}
.contact-expert-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: center;
}
.contact-expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid #e9ecef;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-expert-avatar::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #4caf50;
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-expert-card:hover .contact-expert-avatar {
  border-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(76,175,80,0.15), 0 8px 24px rgba(76,175,80,0.15);
}
.contact-expert-card:hover .contact-expert-avatar::before {
  opacity: 1;
}
.contact-expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.contact-expert-card:hover .contact-expert-avatar img {
  transform: scale(1.08);
}
.contact-expert-name {
  font-size: 20px;
  font-weight: 800;
  color: #0a1f2e;
  margin-bottom: 4px;
}
.contact-expert-role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4caf50;
  margin-bottom: 14px;
}
.contact-expert-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contact-expert-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.contact-stat {
  text-align: center;
}
.contact-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #4caf50;
  line-height: 1;
}
.contact-stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-top: 4px;
}

/* As Featured In */
.contact-featured {
  padding: 48px 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.contact-featured .contact-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.featured-scroll-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.featured-scroll-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: fit-content;
  animation: scrollFeatured 30s linear infinite;
}
.featured-scroll-wrap:hover .featured-scroll-track {
  animation-play-state: paused;
}
@keyframes scrollFeatured {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.contact-logo {
  font-size: 20px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-logo:hover {
  color: #4caf50;
}

/* ===== FLOATING STICKY TOC ===== */
.sticky-toc {
  position: fixed;
  top: 120px;
  right: max(24px, calc((100vw - 1200px) / 2 - 280px));
  width: 220px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.sticky-toc.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sticky-toc-inner {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sticky-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 10px;
}
.sticky-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sticky-toc-list li {
  margin-bottom: 2px;
}
.sticky-toc-link {
  display: block;
  padding: 5px 8px;
  font-size: 12px;
  color: #555;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  border-left: 3px solid transparent;
  line-height: 1.4;
}
.sticky-toc-link:hover {
  background: #f5f7fa;
  color: #0a1f2e;
}
.sticky-toc-link.active {
  color: #4caf50;
  background: rgba(76,175,80,0.08);
  border-left-color: #4caf50;
  font-weight: 600;
}

/* ===== REFINED TOP-PICK CARDS ===== */
.tile-card-refined {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.tile-card-refined:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.tile-card-refined.top {
  border: 2px solid #4caf50;
  position: relative;
}
.tile-card-refined.top::before {
  content: '\2605 TOP PICK';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1b5e20, #388e3c);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px 4px 10px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(27,94,32,0.3);
  white-space: nowrap;
}
.tile-header-refined {
  padding: 24px 24px 0;
  text-align: center;
}
.tile-header-refined .tile-product-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
  display: block;
}
.tile-header-refined .tile-product-name {
  font-size: 20px;
  font-weight: 800;
  color: #0a1f2e;
  display: block;
  margin-bottom: 16px;
}
.tile-header-refined .tile-logo-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: #0a1f2e;
  padding: 12px;
  background: #f5f7fa;
  border-radius: 8px;
  display: inline-block;
}
.tile-body-refined {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tile-rating-refined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.tile-rating-refined .rating-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
}
.tile-rating-refined .rating-value {
  font-size: 14px;
  color: #555;
}
.tile-rating-refined .rating-value strong {
  font-size: 24px;
  color: #f5a623;
  font-weight: 800;
}
.tile-features-refined {
  margin-bottom: 20px;
  flex: 1;
}
.tile-features-refined ul {
  list-style: none;
  padding: 0;
}
.tile-features-refined li {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.tile-features-refined li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
}
.tile-cta-refined {
  text-align: center;
}
.tile-cta-refined .btn-green {
  padding: 12px 32px;
  font-size: 14px;
  width: 100%;
  max-width: 280px;
}

/* Responsive for sticky TOC */
@media (max-width: 1400px) {
  .sticky-toc {
    right: 24px;
  }
}
@media (max-width: 1200px) {
  .sticky-toc {
    display: none;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 64px 0;
  background: #f5f7fa;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-col .contact-section-title {
  margin-bottom: 12px;
}
.contact-form-intro {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Contact info card */
.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
}
.contact-info-heading {
  font-size: 18px;
  font-weight: 700;
  color: #0a1f2e;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #4caf50;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 2px;
}
.contact-info-link {
  font-size: 15px;
  color: #4caf50;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-info-link:hover {
  color: #2e7d32;
  text-decoration: underline;
}
.contact-info-text {
  font-size: 15px;
  color: #555;
}
.contact-info-note {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

/* Override CF7 styles for contact page */
.contact-form-section .wpcf7-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
}
.contact-form-section .wpcf7-form p {
  margin-bottom: 16px;
}
.contact-form-section .wpcf7-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0a1f2e;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-section .wpcf7-form input:focus,
.contact-form-section .wpcf7-form textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.contact-form-section .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form-section .wpcf7-submit {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  background: #4caf50;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.contact-form-section .wpcf7-submit:hover {
  background: #388e3c;
  transform: translateY(-1px);
}
.contact-form-section .wpcf7-submit:active {
  transform: translateY(0);
}
.contact-form-section .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e53935;
  margin-top: 4px;
}
.contact-form-section .wpcf7-response-output {
  font-size: 14px;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0 0;
}

/* ===== CONTACT RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-company-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-company-image {
    order: -1;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 48px 0 40px;
  }
  .contact-hero-title {
    font-size: 26px;
  }
  .contact-company,
  .contact-experts,
  .contact-form-section {
    padding: 48px 0;
  }
  .contact-section-title {
    font-size: 24px;
  }
  .contact-form-section .wpcf7-form {
    padding: 24px;
  }
  .contact-info-card {
    padding: 24px;
  }
  .contact-expert-card {
    padding: 28px 24px;
  }
  .contact-expert-stats {
    gap: 24px;
  }
  .featured-scroll-track {
    gap: 32px;
  }
  .contact-logo {
    font-size: 15px;
  }
}
