/* Gadgetry — Gadgets, honestly tested
   Brand colors: Tech teal #0D9488, Dark navy #0F172A, Bright orange #FB923C, Light gray #F1F5F9, White #FFFFFF
   Typography: Outfit (display), Inter (body)
*/

:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #14B8A6;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --orange: #FB923C;
  --orange-dark: #F97316;
  --gray-light: #F1F5F9;
  --gray: #94A3B8;
  --gray-dark: #475569;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --max-width: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

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

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

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}

.logo:hover { color: var(--navy); }

.logo svg { width: 36px; height: 36px; flex-shrink: 0; }

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

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover {
  background: var(--gray-light);
  color: var(--teal);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .accent { color: var(--teal-light); }

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 136, 0.15);
  color: var(--teal-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================== SECTION HEADERS ==================== */
.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-light { background: var(--gray-light); }

/* ==================== FEATURED REVIEW ==================== */
.featured-review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-review .featured-img {
  background: linear-gradient(135deg, var(--gray-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 320px;
}

.featured-review .featured-img svg { max-width: 100%; }

.featured-review .featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-review .category-tag {
  align-self: flex-start;
  background: var(--teal);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.featured-review h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-review h3 a { color: var(--navy); }
.featured-review h3 a:hover { color: var(--teal); }

.featured-review .excerpt {
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.featured-review .verdict-box {
  background: var(--gray-light);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
}

.verdict-box .verdict-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.verdict-box p { font-size: 0.95rem; color: var(--navy-light); margin: 0; }

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ==================== ARTICLE CARDS ==================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--gray-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img svg { width: 80px; height: 80px; }

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

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.card-meta .tag {
  background: var(--gray-light);
  color: var(--teal);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.card-meta .date { color: var(--gray); }

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.card-body h3 a { color: var(--navy); }
.card-body h3 a:hover { color: var(--teal); }

.card-body p {
  color: var(--gray-dark);
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex: 1;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
}

.card-link::after { content: ' →'; transition: var(--transition); }
.card-link:hover::after { margin-left: 4px; }

/* ==================== COMPARISON CARDS ==================== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.compare-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.compare-card .vs-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.compare-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.compare-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.compare-card .winner {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 16px;
}

/* ==================== BUYING GUIDE SECTION ==================== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.guide-card .icon {
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.guide-card .icon svg { width: 28px; height: 28px; }

.guide-card h3 {
  font-size: 1.1rem;
}

.guide-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* ==================== CATEGORY PILLS ==================== */
.category-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy-light);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-display);
  transition: all var(--transition);
  cursor: pointer;
}

.category-pill:hover, .category-pill.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
}

.newsletter p {
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.newsletter form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.newsletter input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter input::placeholder { color: var(--gray); }

.newsletter input:focus {
  border-color: var(--teal-light);
  background: rgba(255,255,255,0.12);
}

.newsletter .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.3);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--navy);
  color: var(--gray);
  padding: 64px 0 32px;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo:hover { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: var(--gray); max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--gray);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.85rem; color: var(--gray); }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { font-size: 0.85rem; color: var(--gray); }
.footer-bottom .legal-links a:hover { color: var(--teal-light); }

/* ==================== ARTICLE PAGE ==================== */
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 50px;
}

.article-hero .container { max-width: 800px; }

.article-hero .breadcrumb {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.article-hero .breadcrumb a { color: var(--teal-light); }
.article-hero .breadcrumb a:hover { color: var(--white); }

.article-hero .category-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.article-hero .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--gray);
}

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

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

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
}

.article-body .lead-img {
  margin: -56px auto 32px;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.article-body .lead-img svg { width: 100%; height: auto; }

.article-body p {
  font-size: 1.05rem;
  color: var(--navy-light);
  margin-bottom: 22px;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.article-body ul, .article-body ol {
  margin: 0 0 22px 24px;
}

.article-body li {
  font-size: 1.05rem;
  color: var(--navy-light);
  margin-bottom: 8px;
  line-height: 1.8;
}

.article-body blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--gray-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
}

.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.3);
  text-underline-offset: 3px;
}
.article-body a:hover { text-decoration-color: var(--teal); }

.article-body strong { font-weight: 700; color: var(--navy); }

/* Pros & Cons table */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

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

.pros-cons .pros {
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.pros-cons .cons {
  background: rgba(251, 146, 60, 0.08);
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.pros-cons h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-cons .pros h4 { color: var(--teal); }
.pros-cons .cons h4 { color: var(--orange-dark); }

.pros-cons ul {
  margin: 0;
  list-style: none;
}

.pros-cons li {
  font-size: 0.95rem;
  padding: 4px 0;
}

.pros-cons .pros li::before { content: '✓ '; color: var(--teal); font-weight: 700; }
.pros-cons .cons li::before { content: '✗ '; color: var(--orange-dark); font-weight: 700; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--navy-light);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-light); }

.comparison-table .winner-cell {
  color: var(--teal);
  font-weight: 600;
}

/* Verdict box in article */
.article-verdict {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.article-verdict::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251,146,60,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.article-verdict h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
}

.article-verdict p {
  color: var(--gray);
  margin-bottom: 0;
  position: relative;
  font-size: 1.05rem;
}

.article-verdict .score-large {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
  position: relative;
}

/* Article footer */
.article-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tag-list a {
  background: var(--gray-light);
  color: var(--gray-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}
.tag-list a:hover { background: var(--teal); color: var(--white); }

.related-articles {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.related-articles h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.related-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.related-card .tag {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 6px;
  display: block;
}

.related-card h4 {
  font-size: 1rem;
  line-height: 1.35;
}

.related-card h4 a { color: var(--navy); }
.related-card h4 a:hover { color: var(--teal); }

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 48px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--teal-light); }

/* ==================== ABOUT PAGE ==================== */
.about-section {
  padding: 72px 0;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--navy-light);
  margin-bottom: 22px;
  line-height: 1.8;
}

.about-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--teal);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--gray-dark);
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal-dark);
  font-size: 0.9rem;
  margin-top: 16px;
}

.form-message.show { display: block; }

/* ==================== LEGAL PAGES ==================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.legal-content p {
  font-size: 1rem;
  color: var(--navy-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 0 0 16px 24px;
}

.legal-content li {
  font-size: 1rem;
  color: var(--navy-light);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==================== SITEMAP PAGE ==================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.sitemap-col h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  color: var(--navy);
}

.sitemap-col ul {
  list-style: none;
}

.sitemap-col li {
  margin-bottom: 8px;
}

.sitemap-col a {
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.sitemap-col a:hover { color: var(--teal); }

/* ==================== 404 PAGE ==================== */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
}

.error-content { max-width: 500px; }

.error-content .error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 9rem);
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-content h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.error-content p {
  color: var(--gray-dark);
  margin-bottom: 28px;
}

/* ==================== COMPARE PAGE ==================== */
.compare-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 600px;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-family: var(--font-display);
}

.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.compare-table tr:nth-child(even) td { background: var(--gray-light); }

.compare-table .check { color: var(--teal); font-weight: 700; }
.compare-table .cross { color: var(--orange-dark); font-weight: 700; }

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .featured-review { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; }

  .hero { padding: 56px 0 72px; }
  .section { padding: 48px 0; }
  .newsletter { padding: 36px 24px; }
  .newsletter form { flex-direction: column; }

  .pros-cons { grid-template-columns: 1fr; }
  .article-body { padding: 40px 24px; }
  .article-body .lead-img { margin: -40px auto 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

