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

:root {
  --red: #FF3A20;
  --dark: #1A1A2E;
  --yellow: #F5C518;
  --white: #FFFFFF;
  --gray: #F0F0F0;
  --muted: #888;
  --text: #1A1A2E;
  --font: 'Barlow Condensed', system-ui, -apple-system, sans-serif;
  --body-font: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1100px;
  --aside-w: 220px;
}

html { font-size: 16px; line-height: 1.6; scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: underline; }
a:hover { opacity: .8; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--dark);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  text-decoration: none;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
}
.brand-logo { height: 40px; width: auto; }

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header CTA */
.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.cta:hover { opacity: .85; }
.cta-signup {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.cta-login {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

/* Main nav */
.main-nav {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.main-nav.is-open {
  max-height: 600px;
}
.main-nav p {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 2px;
}
.main-nav p a {
  color: var(--white);
  text-decoration: none;
  font-size: .95rem;
  padding: 10px 12px;
  border-radius: 4px;
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background .15s;
}
.main-nav p a:hover,
.main-nav p a[aria-current="page"] {
  background: rgba(255,58,32,.2);
  color: var(--yellow);
}

/* Desktop nav */
@media (min-width: 769px) {
  .nav-toggle { display: none; }
  .main-nav {
    max-height: none;
    border-top: none;
  }
  .main-nav p {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 16px;
    gap: 0;
  }
  .main-nav p a {
    font-size: .82rem;
    padding: 10px 10px;
    min-height: 40px;
  }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--dark);
  color: var(--white);
  padding: 36px 16px 28px;
  border-bottom: 4px solid var(--yellow);
}
.page-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-banner h1 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.stage-label {
  display: inline-block;
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.stage-awareness { background: var(--yellow); color: var(--dark); }
.stage-consideration { background: #4A90D9; color: var(--white); }
.stage-decision { background: var(--red); color: var(--white); }

.byline {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.byline strong { color: var(--yellow); }

.hero-img {
  margin-top: 20px;
  border-radius: 6px;
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

/* ===== LAYOUT WRAP (sidebar + main) ===== */
.layout-wrap {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 16px;
  min-width: 0;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: var(--aside-w);
  flex-shrink: 0;
  order: -1;
}
.aside-inner {
  background: var(--gray);
  border-left: 4px solid var(--red);
  padding: 20px 16px;
  border-radius: 0 6px 6px 0;
  position: sticky;
  top: 80px;
}
.aside-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.aside-links {
  font-size: .85rem;
  line-height: 1.8;
}
.aside-links a {
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding: 6px 0;
}
.aside-links a:hover { color: var(--red); }
.aside-cta-block { margin-top: 16px; }
.aside-cta {
  width: 100%;
  font-size: .82rem;
  padding: 10px 8px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.body-section {
  max-width: 100%;
}

/* Body copy styles */
.main-content h2,
.main-content h3 {
  font-family: var(--font);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: 28px 0 12px;
  line-height: 1.15;
}
.main-content h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
.main-content h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

.main-content h2 > span,
.main-content h3 > span {
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}

.main-content p { margin-bottom: 14px; }
.main-content ul, .main-content ol {
  margin: 0 0 16px 20px;
}
.main-content li { margin-bottom: 6px; }
.main-content a {
  color: var(--red);
  text-decoration: underline;
}
.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .92rem;
  overflow-x: auto;
  display: block;
  max-width: 100%;
}
.main-content th {
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--font);
  text-transform: uppercase;
  padding: 10px 12px;
  text-align: left;
}
.main-content td {
  padding: 9px 12px;
  border-bottom: 1px solid #ddd;
}
.main-content tr:nth-child(even) td { background: var(--gray); }

.main-content blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  margin: 20px 0;
  background: #fff5f3;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 24px 16px;
  border-top: 4px solid var(--red);
  text-align: center;
}
.site-footer p {
  margin-bottom: 8px;
}
.footer-trust a {
  color: var(--yellow);
  text-decoration: underline;
  font-size: .9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-trust a:hover { opacity: .8; }
.footer-rg {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-copy {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ===== HOME LAYOUT ===== */
.home-hero {
  background: var(--dark);
  color: var(--white);
  padding: 48px 16px 36px;
  border-bottom: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: var(--red);
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.home-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.home-hero .hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin-bottom: 20px;
}
.home-hero .hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-verdict {
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  font-family: var(--font);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
}

.home-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 16px;
  min-width: 0;
}
.home-main {
  flex: 1;
  min-width: 0;
}
.home-sidebar {
  width: var(--aside-w);
  flex-shrink: 0;
  order: -1;
}

/* Child cards on home/category */
.child-cards-section {
  margin-top: 36px;
}
.child-cards-heading {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 6px;
}
.child-cards-section > div {
  background: var(--gray);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: transform .15s;
}
.child-cards-section > div:hover { transform: translateX(4px); }
.child-cards-section > div h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.child-cards-section > div h3 a {
  color: var(--dark);
  text-decoration: none;
}
.child-cards-section > div h3 a:hover { color: var(--red); }
.child-cards-section > div p { margin: 0 0 8px; font-size: .9rem; }
.card-meta { font-size: .78rem; color: var(--muted); }
.card-readmore {
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font);
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  letter-spacing: .04em;
}
.card-readmore:hover { text-decoration: underline; }

/* ===== FAQ LAYOUT ===== */
.faq-list {
  margin-top: 8px;
}
.faq-item {
  border-bottom: 2px solid var(--gray);
  padding: 16px 0;
}
.faq-q {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-q > span {
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}
.faq-a { font-size: .95rem; }

/* ===== ABOUT LAYOUT ===== */
.author-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 32px;
  border-left: 6px solid var(--yellow);
}
.author-card h2 {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}
.author-credentials {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  font-style: italic;
}
.author-bio { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ===== CONTACT LAYOUT ===== */
.contact-form-wrap {
  background: var(--gray);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 24px;
}
.contact-form-wrap h2 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--dark);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--body-font);
  background: var(--white);
  color: var(--dark);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
  transition: opacity .15s;
}
.form-submit:hover { opacity: .85; }

/* ===== PRIVACY / SIMPLE INNER ===== */
.inner-content {
  max-width: 720px;
}
.inner-content h2 {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 24px 0 10px;
  color: var(--dark);
}
.inner-content h2 > span {
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .layout-wrap,
  .home-layout {
    flex-direction: column;
    padding: 20px 12px;
    gap: 20px;
  }
  .sidebar,
  .home-sidebar {
    width: 100%;
    order: 1;
  }
  .aside-inner {
    position: static;
  }
  .home-hero {
    padding: 28px 12px 24px;
  }
  .page-banner {
    padding: 24px 12px 20px;
  }
  .header-cta .cta-login {
    display: none;
  }
  .main-content table {
    font-size: .82rem;
  }
  .main-content table th,
  .main-content table td {
    padding: 7px 8px;
  }
}

@media (max-width: 480px) {
  .header-row { gap: 6px; padding: 0 10px; }
  .cta { font-size: .78rem; padding: 8px 10px; }
}

/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&display=swap');

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}.tbl-scroll{overflow-x:auto;max-width:100%}