* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

a {
  color: #2b89ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #b2b6bd;
  margin-bottom: 12px;
}

.topbar {
  background-color: #000000;
  border-bottom: 1px solid #3b3d45;
  position: sticky;
  top: 0;
  z-index: 30;
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

.topbar-logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.topbar-logo span {
  color: #7b42bc;
}

.topbar-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}

.topbar-nav a {
  color: #ffffff;
}

.topbar-nav a:hover {
  color: #b2b6bd;
  text-decoration: none;
}

.topbar-mobile {
  display: none;
  margin-left: auto;
}

.topbar-mobile summary {
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 8px 14px;
}

.topbar-mobile nav {
  position: absolute;
  right: 16px;
  top: 64px;
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 40;
}

.topbar-mobile nav a {
  color: #ffffff;
  padding: 8px 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .topbar-nav { display: none; }
  .topbar-mobile { display: block; }
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  min-height: 60vh;
}

.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13px;
  color: #656a76;
}

.breadcrumb-nav a {
  color: #b2b6bd;
}

.crumb-sep {
  color: #3b3d45;
}

.crumb-active {
  color: #ffffff;
  font-weight: 600;
}

h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: -1.0px;
  margin: 0 0 20px;
}

.hero-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.69;
  color: #b2b6bd;
  max-width: 720px;
  margin-bottom: 48px;
}

.pill {
  display: inline-block;
  background: #15181e;
  color: #b2b6bd;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
}

.analiza-card {
  display: flex;
  flex-direction: column;
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
}

.analiza-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #3b3d45;
}

.analiza-card-body {
  padding: 20px;
}

.analiza-card h2, .analiza-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
}

.analiza-card p {
  font-size: 14px;
  color: #b2b6bd;
  margin: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}

.article-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #3b3d45;
  margin-bottom: 6px;
}

.image-credit {
  font-size: 12px;
  color: #656a76;
  margin-bottom: 24px;
}

.toc-box {
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.toc-box h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #b2b6bd;
  margin: 0 0 10px;
}

.toc-box ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}

.toc-box a {
  color: #ffffff;
  font-weight: 500;
}

.article-body h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -0.6px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 16px;
}

.article-body a {
  font-weight: 600;
}

.disclaimer-box {
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  color: #b2b6bd;
  margin: 24px 0;
}

.reading-sidebar {
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
}

.reading-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reading-sidebar a {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.related-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #3b3d45;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  display: block;
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;
}

.related-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

.related-card p {
  font-size: 13px;
  color: #b2b6bd;
  margin: 0;
}

.faq-item {
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.faq-item p {
  margin-top: 10px;
  color: #b2b6bd;
  font-size: 14px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 32px;
}

.compare-table th, .compare-table td {
  border-bottom: 1px solid #252830;
  padding: 12px 16px;
  text-align: left;
}

.compare-table th {
  color: #b2b6bd;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.compare-table td {
  color: #ffffff;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-secondary {
  background: #1f232b;
  color: #ffffff;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input, .form-field textarea {
  width: 100%;
  background: #15181e;
  color: #ffffff;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
}

.form-field input:focus, .form-field textarea:focus {
  outline: 1px solid #2b89ff;
}

.form-feedback {
  background: #15181e;
  border: 1px solid #3b3d45;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #b2b6bd;
}

.site-footer {
  background: #000000;
  border-top: 1px solid #3b3d45;
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

.footer-grid h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 12px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid a {
  color: #b2b6bd;
  font-size: 13px;
}

.footer-legal {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #252830;
  color: #656a76;
  font-size: 12px;
}

.footer-legal p {
  margin: 0 0 8px;
}

.footer-copy {
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #15181e;
  border-top: 1px solid #3b3d45;
  padding: 16px 24px;
  z-index: 50;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-inner p {
  font-size: 13px;
  color: #b2b6bd;
  margin: 0;
  max-width: 640px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
