@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f1b2d;
  --navy-mid: #1a2d45;
  --teal: #0d9e8f;
  --teal-light: #12c4b2;
  --gold: #f0a500;
  --cream: #faf8f3;
  --white: #ffffff;
  --gray-100: #f4f4f0;
  --gray-200: #e8e8e2;
  --gray-400: #9a9a94;
  --gray-600: #5a5a54;
  --gray-800: #2a2a24;
  --text: #1a1a16;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(15,27,45,0.08);
  --shadow-lg: 0 8px 40px rgba(15,27,45,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-light); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--teal);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.5px;
}
.navbar__logo span { color: var(--teal); }
.navbar__nav { display: flex; gap: 32px; list-style: none; }
.navbar__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.3px; transition: color .2s;
}
.navbar__nav a:hover { color: var(--teal-light); }
.navbar__cta {
  background: var(--teal); color: var(--white) !important;
  padding: 8px 20px; border-radius: var(--radius);
  font-weight: 600 !important;
}
.navbar__cta:hover { background: var(--teal-light); color: var(--white) !important; }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.navbar__hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: .3s; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,158,143,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero__label {
  display: inline-block;
  background: rgba(13,158,143,0.15);
  border: 1px solid rgba(13,158,143,0.4);
  color: var(--teal-light);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title em { color: var(--teal-light); font-style: normal; }
.hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem; max-width: 560px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px;
  border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.2px;
  transition: all .2s; cursor: pointer; border: none;
  font-family: var(--font-body);
}
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(13,158,143,0.4); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #f5b020; color: var(--navy); transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.trust-bar__inner {
  display: flex; gap: 40px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--gray-600);
  letter-spacing: 0.2px;
}
.trust-item__icon { font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); }
.section__header { margin-bottom: 48px; }
.section__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px;
}
.section__title { margin-bottom: 14px; }
.section__subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--teal); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card__title { margin-bottom: 10px; font-size: 1.2rem; }
.card__text { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 20px; }
.card__meta { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.card__tag {
  font-size: 0.75rem; font-weight: 500;
  background: var(--gray-100); color: var(--gray-600);
  padding: 3px 10px; border-radius: 20px;
}
.card__link {
  font-size: 0.875rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.card__link:hover { color: var(--teal-light); }

/* ── RATING ── */
.rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.rating__score { font-weight: 700; font-size: 0.9rem; }
.rating__count { font-size: 0.8rem; color: var(--gray-400); }

/* ── ARTICLE ── */
.article-hero {
  background: var(--navy); padding: 64px 0 56px;
}
.article-hero__breadcrumb {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 16px; display: flex; gap: 8px; align-items: center;
}
.article-hero__breadcrumb a { color: rgba(255,255,255,0.5); }
.article-hero__breadcrumb a:hover { color: var(--teal-light); }
.article-hero__title { color: var(--white); margin-bottom: 16px; }
.article-hero__meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.article-hero__date { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.article-hero__rating { display: flex; align-items: center; gap: 8px; }

.article-body { padding: 56px 0; }
.article-body h2 { margin: 40px 0 16px; padding-top: 8px; border-top: 2px solid var(--gray-200); }
.article-body h3 { margin: 28px 0 12px; color: var(--navy); }
.article-body p { color: var(--gray-800); line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.5rem; }
.article-body li { margin-bottom: 6px; color: var(--gray-800); }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pros-cons__box { padding: 24px; border-radius: var(--radius-lg); }
.pros-cons__box--pros { background: rgba(13,158,143,0.06); border: 1px solid rgba(13,158,143,0.2); }
.pros-cons__box--cons { background: rgba(240,165,0,0.06); border: 1px solid rgba(240,165,0,0.2); }
.pros-cons__title { font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; font-size: 1rem; }
.pros-cons__title--pros { color: var(--teal); }
.pros-cons__title--cons { color: #c47a00; }
.pros-cons__list { list-style: none; margin: 0; }
.pros-cons__list li { padding: 6px 0; font-size: 0.9rem; display: flex; gap: 8px; color: var(--gray-800); }
.pros-cons__list li::before { flex-shrink: 0; }
.pros-cons__box--pros .pros-cons__list li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.pros-cons__box--cons .pros-cons__list li::before { content: '−'; color: #c47a00; font-weight: 700; }

/* ── VERDICT BOX ── */
.verdict-box {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 36px;
  margin: 40px 0;
}
.verdict-box__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 10px; }
.verdict-box__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.verdict-box__text { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* ── COMPARISON TABLE ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.9rem; }
.comparison-table th {
  background: var(--navy); color: var(--white);
  padding: 14px 16px; text-align: left;
  font-family: var(--font-display); font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.comparison-table tr:nth-child(even) td { background: var(--gray-100); }
.comparison-table tr:hover td { background: rgba(13,158,143,0.05); }
.check { color: var(--teal); font-weight: 700; }
.cross { color: #c0392b; }

/* ── SCORE WIDGET ── */
.score-widget {
  background: var(--cream); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; margin: 32px 0;
}
.score-widget__title { font-family: var(--font-display); font-weight: 700; margin-bottom: 20px; }
.score-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.score-row__label { width: 160px; font-size: 0.85rem; font-weight: 500; flex-shrink: 0; }
.score-row__bar { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.score-row__fill { height: 100%; background: var(--teal); border-radius: 4px; }
.score-row__value { width: 36px; text-align: right; font-size: 0.85rem; font-weight: 700; color: var(--teal); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer__logo span { color: var(--teal); }
.footer__tagline { font-size: 0.875rem; line-height: 1.6; margin-bottom: 0; }
.footer__heading { font-family: var(--font-display); font-weight: 700; color: var(--white); margin-bottom: 16px; font-size: 0.95rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer__links a:hover { color: var(--teal-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.8rem; }
.footer__disclaimer { font-size: 0.75rem; max-width: 500px; color: rgba(255,255,255,0.4); text-align: right; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--navy); padding: 72px 0; }
.about-hero__title { color: var(--white); margin-bottom: 16px; }
.about-hero__text { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }
.team-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
}
.team-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
}
.team-card__name { font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 0.8rem; color: var(--teal); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.team-card__bio { font-size: 0.875rem; color: var(--gray-600); }

/* ── CONTACT PAGE ── */
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s; background: var(--white);
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,158,143,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ── POLICY PAGES ── */
.policy-body { padding: 60px 0; }
.policy-body h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.policy-body h3 { margin: 24px 0 10px; font-size: 1.1rem; color: var(--navy); }
.policy-body p, .policy-body li { color: var(--gray-800); }
.policy-body ul { margin: 0 0 1rem 1.5rem; }

/* ── INLINE NOTICE ── */
.notice {
  padding: 16px 20px; border-radius: var(--radius);
  margin: 24px 0; font-size: 0.875rem;
}
.notice--affiliate {
  background: rgba(240,165,0,0.08); border-left: 3px solid var(--gold); color: var(--gray-800);
}
.notice--info {
  background: rgba(13,158,143,0.08); border-left: 3px solid var(--teal); color: var(--gray-800);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__disclaimer { text-align: left; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
  .cards-grid { grid-template-columns: 1fr; }
}
