@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Source+Serif+4:wght@400;600&display=swap');
@import url('seo.css');

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

:root {
  --navy: #0D1B2A;
  --adriatic: #1E3A5F;
  --white: #ffffff;
  --slate-bg: #F0F4F8;
  --gold: #C8A951;
  --border-light: #E2E8F0;
  --text-body: #2D3748;
  --text-muted: #718096;
  --text-light: #A0AEC0;
  --green: #2F855A;
  --red: #C53030;
}

body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; }

a { color: inherit; }

.site-wrap { max-width: 100%; overflow-x: hidden; }

.site-header {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-wave { width: 28px; height: 28px; }
.logo-text {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-dot { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.site-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.nav-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.container { max-width: 880px; margin: 0 auto; padding: 0 2rem; }

.breadcrumb {
  background: var(--slate-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--adriatic); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 7px; color: var(--text-light); }

.p-hero {
  background: var(--navy);
  padding: 40px 0 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.p-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,81,0.4), transparent);
}
.p-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.p-hero-logo {
  width: 140px;
  height: 90px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.p-hero-logo.logo-dark { background: #11233a; border: 1px solid rgba(255,255,255,0.12); }
.p-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.p-hero-info { flex: 1; min-width: 240px; }
.p-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.p-hero-title {
  font-family: 'Source Serif 4', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.p-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.p-rating { display: flex; align-items: center; gap: 6px; }
.p-rating .stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 15px; }
.star-empty { color: rgba(255,255,255,0.2); font-size: 15px; }
.p-rating .num {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.p-rating .of { font-size: 12px; color: rgba(255,255,255,0.4); }
.tag-licensed {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9AE6B4;
  background: rgba(47,133,90,0.18);
  border: 1px solid rgba(154,230,180,0.3);
  padding: 3px 9px;
  border-radius: 3px;
}

.p-hero-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.p-hero-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,169,81,0.25); }

.p-section { padding: 40px 0; }
.p-section + .p-section { border-top: 1px solid var(--border-light); }
.p-section.alt { background: var(--slate-bg); border-top: 1px solid var(--border-light); }

.p-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.p-h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 23px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.p-h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 18px 0 8px;
}
.p-text { font-size: 14.5px; color: var(--text-body); margin-bottom: 14px; }
.p-text:last-child { margin-bottom: 0; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}
.fact {
  background: var(--white);
  padding: 16px 18px;
}
.fact-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.fact-value { font-size: 14px; font-weight: 500; color: var(--navy); }

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pc-box {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.pc-box.pros { border-top: 3px solid var(--green); }
.pc-box.cons { border-top: 3px solid var(--red); }
.pc-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pc-box.pros .pc-title { color: var(--green); }
.pc-box.cons .pc-title { color: var(--red); }
.pc-list { list-style: none; }
.pc-list li {
  font-size: 13.5px;
  color: var(--text-body);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--slate-bg);
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before {
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: 700;
}
.pc-box.pros .pc-list li::before { content: '+'; color: var(--green); }
.pc-box.cons .pc-list li::before { content: '−'; color: var(--red); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px;
  border-left: 3px solid var(--adriatic);
}
.feature-card h4 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

.ratings-list { display: grid; gap: 14px; }
.rating-row { display: grid; grid-template-columns: 160px 1fr 38px; align-items: center; gap: 14px; }
.rating-row .label { font-size: 13.5px; color: var(--text-body); }
.rating-bar { height: 8px; background: var(--border-light); border-radius: 4px; overflow: hidden; }
.rating-bar > span { display: block; height: 100%; background: linear-gradient(to right, var(--adriatic), var(--gold)); border-radius: 4px; }
.rating-row .val { font-size: 13px; font-weight: 600; color: var(--navy); text-align: right; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12.5px;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 14px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--adriatic);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.disclaimer {
  background: var(--slate-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.disclaimer strong { color: var(--adriatic); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px 12px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.related-card:hover { border-color: var(--adriatic); transform: translateY(-2px); }
.related-logo {
  width: 84px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.related-logo.logo-dark { background: var(--navy); border-color: var(--navy); }
.related-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.related-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.related-rating { font-size: 12px; color: var(--gold); font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--adriatic);
  text-decoration: none;
  font-weight: 500;
}
.back-link:hover { text-decoration: underline; }

.site-footer { background: var(--navy); padding: 32px 0 20px; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 880px; margin: 0 auto; padding: 0 2rem; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Source Serif 4', serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-responsible {
  margin: 18px 0 14px; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 12px 14px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }
  .container { padding: 0 1.25rem; }
  .footer-inner { padding: 0 1.25rem; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 14px 28px rgba(0,0,0,0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.open { max-height: 340px; }
  .site-nav li { width: 100%; }
  .site-nav a {
    display: block;
    padding: 15px 1.25rem;
    font-size: 14.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-divider { display: none; }

  .p-hero { padding: 32px 0 30px; }
  .p-hero-inner { gap: 18px; }
  .p-hero-logo { width: 110px; height: 72px; }
  .p-section { padding: 32px 0; }
}

@media (max-width: 600px) {
  .pc-grid { grid-template-columns: 1fr; }
  .rating-row { grid-template-columns: 110px 1fr 34px; gap: 10px; }
  .p-hero-title { font-size: 24px; }
  .p-hero-inner { flex-direction: column; align-items: flex-start; }
  .facts-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
