/* ============================================
   Livestream Starter Kit — Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #1a1a1a;
  --bg-card: #2a2a2a;
  --bg-card-hover: #333;
  --accent: #E8651A;
  --accent-hover: #d45a15;
  --green: #4CAF50;
  --text: #e0e0e0;
  --text-muted: #999;
  --text-heading: #fff;
  --border: #3a3a3a;
  --radius: 8px;
  --max-width: 1100px;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: .75rem; }

p + p { margin-top: 1rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-card);
}

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, border-color .2s, transform .1s;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn--small {
  padding: .6rem 1.25rem;
  font-size: .95rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nav__logo:hover { color: var(--accent); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav__toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text);
}

/* --- Language switcher --- */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-option {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.lang-option:hover {
  color: #fff;
  background-color: rgba(232, 101, 26, 0.2);
}

.lang-option.active {
  color: #E8651A;
  font-weight: 600;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle { display: block; }

  .lang-switcher {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: .75rem;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.1rem;
    padding: .5rem 0;
  }
}

/* --- Hero --- */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  max-width: 750px;
  margin: 0 auto .75rem;
}

.hero__sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Cards Grid --- */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .2s, transform .2s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}

.card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: .25rem;
}

.card__desc {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* --- Feature Grid --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 101, 26, .15);
  border-radius: var(--radius);
  color: var(--accent);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}

.feature p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* --- Credibility --- */
.credibility {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 700px;
}

.credibility p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.logo-placeholders {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 140px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 750px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--text-heading);
}

.faq-item p {
  color: var(--text-muted);
  font-size: .95rem;
}

/* Accordion (FAQ page) */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  gap: 1rem;
}

.accordion-btn:hover { color: var(--accent); }

.accordion-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform .25s;
}

.accordion-item.is-open .accordion-btn svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-body__inner {
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Product page --- */
.product-toc {
  counter-reset: chapter;
}

.product-toc li {
  counter-increment: chapter;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.product-toc li::before {
  content: counter(chapter, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 2rem;
}

.product-toc .chapter-title {
  font-weight: 600;
  color: var(--text-heading);
}

.product-toc .chapter-desc {
  color: var(--text-muted);
  font-size: .9rem;
}

.price-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto;
}

.price-box__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.price-box__note {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .25rem;
}

/* --- Tiers / Tables --- */
.tier-section {
  padding: 3rem 0;
}

.tier-section + .tier-section {
  border-top: 1px solid var(--border);
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
}

.tier-table th,
.tier-table td {
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.tier-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: var(--text-heading);
  background: rgba(255,255,255,.03);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .05em;
}

.tier-table td {
  color: var(--text);
}

@media (max-width: 600px) {
  .tier-table, .tier-table thead, .tier-table tbody,
  .tier-table th, .tier-table td, .tier-table tr {
    display: block;
  }
  .tier-table thead { display: none; }
  .tier-table tr {
    border-bottom: 2px solid var(--border);
    padding: .75rem 0;
  }
  .tier-table td {
    padding: .35rem 0;
    border: none;
  }
  .tier-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
}

/* --- Upgrade Path --- */
.upgrade-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.upgrade-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 160px;
}

.upgrade-step__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-heading);
}

.upgrade-step__budget {
  font-size: .85rem;
  color: var(--text-muted);
}

.upgrade-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
}

/* --- Draaiboek --- */
.draaiboek-content h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.draaiboek-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.draaiboek-content h3 {
  margin-top: 1.5rem;
}

.draaiboek-content ul,
.draaiboek-content ol {
  margin: .75rem 0 .75rem 1.5rem;
}

.draaiboek-content li {
  margin-bottom: .35rem;
}

.draaiboek-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.draaiboek-content th,
.draaiboek-content td {
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: .95rem;
}

.draaiboek-content th {
  font-weight: 600;
  color: var(--text-heading);
  background: rgba(255,255,255,.03);
}

/* --- Timeline blocks --- */
.timeline-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.timeline-block:hover {
  border-color: var(--accent);
}

.timeline-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .35rem;
}

.timeline-block h3 {
  margin-top: 0;
  margin-bottom: .75rem;
}

.timeline-block ul,
.timeline-block ol {
  margin: .5rem 0 .5rem 1.5rem;
}

.timeline-block li {
  margin-bottom: .3rem;
  font-size: .95rem;
}

.timeline-block p {
  font-size: .95rem;
}

/* --- Hardware checklist (draaiboek) --- */
.hw-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hw-checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}

.hw-checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* --- Nood / emergency box --- */
.nood-block {
  background: rgba(232, 101, 26, .06);
  border: 1px solid rgba(232, 101, 26, .2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.nood-block h3 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.nood-block ol {
  margin: .5rem 0 0 1.5rem;
}

.nood-block li {
  margin-bottom: .25rem;
  font-size: .95rem;
}

/* --- Role cards --- */
.role-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.role-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.role-card p {
  font-size: .95rem;
  color: var(--text-muted);
}

/* --- Closing quote --- */
.closing-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 2rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  max-width: 700px;
}

/* --- Over / About --- */
.about-content {
  max-width: 700px;
}

.about-content p {
  margin-bottom: 1rem;
}

.photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .85rem;
  margin: 2rem 0;
}

/* --- Email capture --- */
.email-capture {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  margin-top: 2rem;
}

.email-capture h3 { margin-bottom: .75rem; }

.email-form {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.email-form input {
  flex: 1;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}

.email-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.email-form button {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .email-form {
    flex-direction: column;
  }
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer__links a { color: var(--text-muted); }
.footer__links a:hover { color: var(--accent); }

/* --- Section heading --- */
.section__heading {
  margin-bottom: 2rem;
}

.section__heading p {
  color: var(--text-muted);
  max-width: 650px;
  margin-top: .5rem;
}

/* --- Checklist style --- */
.checklist {
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .5rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- Warning box --- */
.warning-box {
  background: rgba(232, 101, 26, .08);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.warning-box h3 {
  color: var(--accent);
  margin-bottom: .5rem;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 3rem 0;
}

.cta-banner h2 {
  margin-bottom: .5rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Page header --- */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: .5rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 650px;
  font-size: 1.1rem;
}

/* --- FAQ categories --- */
.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category h2 {
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* --- Downloads list --- */
.downloads-list {
  list-style: none;
}

.downloads-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}

.downloads-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* --- Upsell --- */
.upsell {
  background: rgba(76, 175, 80, .08);
  border: 1px solid rgba(76, 175, 80, .25);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 2rem;
}

.upsell h3 {
  color: var(--green);
  margin-bottom: .5rem;
}

/* --- Credential badges --- */
.credential-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-card);
}

.credential-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Video embed --- */
.video-embed {
  margin-top: 2rem;
  max-width: 640px;
}

.video-embed p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: .75rem;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.video-placeholder:hover {
  background: rgba(232, 101, 26, .1);
  color: var(--accent);
}

/* --- Product previews --- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.preview-card svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
  margin-bottom: .75rem;
}

.preview-card p {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}
