:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: #ccfbf1;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #ffedd5;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --container: 1120px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

body.has-cookie-bar {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  body.has-cookie-bar { padding-bottom: 200px; }
}

a {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

a:hover { color: var(--orange-dark); }
a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Disclosure bar */
.disclosure {
  background: var(--orange-soft);
  border-bottom: 1px solid #fed7aa;
  font-size: 0.875rem;
  color: #9a3412;
}

.disclosure__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  text-align: left;
}

.disclosure__inner p {
  margin: 0;
  line-height: 1.45;
}

.disclosure__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.65);
  color: #c2410c;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #fdba74;
}

.disclosure a { color: #c2410c; font-weight: 700; }

@media (max-width: 560px) {
  .disclosure__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 20px;
  }
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--teal-dark);
}

.logo img { width: 36px; height: 36px; }

.logo span { color: var(--orange); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav a:hover { color: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .nav.is-open { display: flex; }
  .header__inner { flex-wrap: wrap; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #14b8a6 100%);
  color: var(--white);
  padding: 64px 0 72px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn--primary:hover { color: var(--white); background: var(--orange-dark); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.25); color: var(--white); }

.btn--outline {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}

.btn--outline:hover { background: var(--teal-soft); color: var(--teal-dark); }

/* Sections */
.section {
  padding: 56px 0;
}

.section--alt { background: var(--surface); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section__head h2 {
  font-size: 1.75rem;
  margin: 0 0 12px;
  color: var(--text);
}

.section__head p {
  color: var(--text-muted);
  margin: 0;
}

/* Grid cards */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* Criteria list */
.criteria {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.criteria__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.criteria__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Article / prose */
.page-hero {
  background: var(--surface);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.page-hero .meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--teal-dark);
}

.prose h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.prose p, .prose li { color: var(--text); }

.prose ul, .prose ol {
  padding-left: 1.25rem;
  margin: 0 0 16px;
}

.prose li { margin-bottom: 8px; }

.prose .note {
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 0.95rem;
}

.prose .warn {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 0.95rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumb a { font-weight: 500; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal-dark); }

/* Contact */
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 480px;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.footer a { color: #cbd5e1; font-weight: 500; }
.footer a:hover { color: var(--orange); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer__brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand span { color: var(--orange); }

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li { margin-bottom: 8px; }

.footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.footer__disclosure {
  margin-top: 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

.tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Skip link — oculto até receber foco (teclado) */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 24px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  text-align: center;
}

.trust-bar__item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--teal-dark);
  line-height: 1.2;
}

.trust-bar__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Honest copy block */
.honest-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.honest-copy p {
  color: var(--text-muted);
  margin: 0;
}

/* Author / editorial box */
.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.author-box__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  margin: 0 0 8px;
}

.author-box p {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.author-box p:last-child {
  margin-bottom: 0;
}

.author-box__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ accordion-style */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 56px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  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: 1.25rem;
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item__body {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item__body p { margin: 0 0 12px; }
.faq-item__body p:last-child { margin-bottom: 0; }

.footer__updated {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #64748b;
}

.article-disclosure {
  background: var(--orange-soft);
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #9a3412;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  padding: 20px 0;
}

.cookie-bar__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
}

.cookie-bar__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  margin: 0 0 6px;
}

.cookie-bar__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 640px;
}

.cookie-bar__text a {
  color: var(--teal-dark);
  font-weight: 600;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-bar__panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookie-bar__actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-bar__btn {
    width: 100%;
    text-align: center;
  }
}
