/* === PAGE STRUCTURE === */
.token-details-page {
  width: 75%;
  margin: 1.5rem auto 4rem; /* bovenkant verkleind */
  display: flex;
  flex-direction: column;
  text-align: center;
  gap:1rem;
  color: var(--text);
}

/* optioneel iets meer lucht onder breadcrumb */
.info-breadcrumb {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.token-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

/* === FEATURE GRID (TOP 3×3 OR 4×4) === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.feature-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--text);
  transition: all .3s ease;
}
.feature-item i {
  font-size: 1.8rem;
  margin-bottom: .5rem;
  color: var(--muted);
  transition: transform .3s ease, color .3s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  background: #f4f4f4;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.feature-item:hover i {
  transform: scale(1.1);
  color: var(--accent);
}

/* === MEMBERSHIP SPLIT === */
.membership-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.membership-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all .3s ease;
}
.membership-col h2 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

/* FREE COLUMN */
.membership-col.free {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.membership-col.free h2 {
  color: var(--text);
}

/* PREMIUM COLUMN */
.membership-col.premium {
  background: linear-gradient(145deg, #f0f0f0, #e4e4e4);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: scale(1.02);
}
.membership-col.premium h2 {
  color: #333;
  text-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.membership-col.premium:hover {
  transform: scale(1.04);
}

/* TOKEN CARDS INSIDE */
.token-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  padding: 1.5rem;
  text-align: left;
  transition: all .2s ease;
}
.token-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.token-col h3 {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.token-col i {
  color: var(--muted);
  width: 20px;
  text-align: center;
}
.token-col p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA */
.token-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.token-cta .btn-primary,
.token-cta .btn-ghost {
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
}



/* === Base === */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; border-radius: var(--radius); display: block; }
a { color: inherit; text-decoration: none; }

/* === Layout Wrappers === */
.qp-content { max-width: 1200px; margin: 0 auto; }

/* === Breadcrumb === */
.info-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.info-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.4rem;
}
.info-breadcrumb li::after {
  content: "/";
  margin: 0 0.4rem;
  color: var(--accent);
}
.info-breadcrumb li:last-child::after { content: ""; }

/* === Anchor Navigation === */
.info-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}
.info-anchor-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s;
}
.info-anchor-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* === Header Section === */
.token-header {
  text-align: center;
  margin-bottom: 3rem;
}
.token-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.token-header p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* === Icon Grid === */
.token-features {
  margin-bottom: 3rem;
}
.token-features h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--text);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.feature-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 1.4rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-item i {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  display: block;
  color: var(--text);
}

/* === Membership Compare === */
.membership-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.membership-col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
}
.membership-col h2 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.token-col {
  margin-bottom: 1.5rem;
}
.token-col h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.token-col p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* === CTA Section === */
.token-cta {
  text-align: center;
  margin: 3rem 0 4rem;
}
.token-cta a {
  display: inline-block;
  margin: 0.5rem 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: 0.25s;
}
.btn-primary {
  border: 1px solid var(--accent);
  color: var(--text);
  background: none;
}
.btn-primary:hover {
  background: var(--bg-soft);
}
.btn-ghost {
  border: 1px solid var(--accent);
  color: var(--text);
  background: none;
}
.btn-ghost:hover {
  background: var(--bg-soft);
}

/* === Info Columns (Bottom SEO Section) === */
.info-columns {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.info-columns h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.info-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 1rem;
}
.info-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .token-header h1 { font-size: 1.8rem; }
  .membership-compare { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .info-grid { grid-template-columns: 1fr; }
}

/* Breadcrumb */
.info-breadcrumb {
  font-size:0.8rem;
  margin-bottom:0.75rem;
}
.info-breadcrumb ol {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:0.4rem;
  flex-wrap:wrap;
}
.info-breadcrumb a {
  color:#000;
  text-decoration:none;
}
.info-breadcrumb li+li:before {
  content:"/";
  margin:0 0.25rem 0 0.1rem;
  color:#999;
}

/* Anchor nav */
.info-anchor-nav {
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem;
  margin-bottom:1.5rem;
}
.info-anchor-nav a {
  font-size:0.8rem;
  padding:0.4rem 0.7rem;
  border-radius:999px;
  border:1px solid #ddd;
  text-decoration:none;
  color:#000;
  background:#fff;
}

/* ============================================================
   TOKEN DETAILS PAGE STYLING
   ============================================================ */

/* === PAGE STRUCTURE === */
.token-details-page {
  width: 75%;
  margin: 1.5rem auto 4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  color: var(--text);
}

/* === BREADCRUMB === */
.info-breadcrumb {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* === ANCHOR NAVIGATION === */
.info-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.info-anchor-nav a {
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  background: #fff;
  transition: 0.25s ease;
}

.info-anchor-nav a:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
  color: var(--text);
}

/* === HEADER === */
.token-header {
  text-align: center;
  margin-bottom: 3rem;
}

.token-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.token-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--muted);
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.feature-item:hover {
  transform: translateY(-4px);
  background: #f4f4f4;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* === MEMBERSHIP COMPARE === */
.membership-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.membership-col {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: 0.3s ease;
}

.membership-col h2 {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

/* Premium */
.membership-col.premium {
  background: linear-gradient(145deg, #f0f0f0, #e4e4e4);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: scale(1.02);
}

.membership-col.premium:hover {
  transform: scale(1.04);
}

/* Token rows */
.token-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  padding: 1.5rem;
  text-align: left;
  transition: 0.2s ease;
}

.token-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.token-col h3 {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

/* === INFO COLUMNS === */
.info-columns {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.info-columns h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}

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

.info-card h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.4rem;
}

.info-card p {
  color: var(--muted);
}

/* ============================================================
   SEO LONGFORM BLOCKS
   ============================================================ */

.seo-longform {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.seo-longform h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.seo-longform p,
.seo-longform li {
  font-size: 1rem;
  color: var(--muted);
}

.seo-longform ul {
  padding-left: 1.2rem;
  margin: 0.8rem 0;
}

/* ============================================================
   KEYWORD CLOUD
   ============================================================ */

/* Make keywords extremely subtle but crawlable */
.keyword-box span {
  padding: 0.2rem 0.4rem;
  background: transparent;
  border: none;
  font-size: 0.55rem;     /* very small text */
  color: rgba(0,0,0,0.25); /* low contrast */
  box-shadow: none;
  opacity: 0.55;           /* extra subtle */
  transition: none;
}

.keyword-box span:hover {
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.35);
  transform: none;
}

/* ============================================================
   2-COLUMN SEO CONTENT LAYOUT
   ============================================================ */

/* Wrap alle SEO blokken in grid */
.seo-block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
}

/* Zorg dat elk item in grid precies hetzelfde styled blijft */
.seo-block-grid .seo-longform,
.seo-block-grid .seo-intro {
  margin: 0; /* margin reset zodat de grid spacing het werk doet */
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Title styling binnen grid–items */
.seo-block-grid h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Typography */
.seo-block-grid p,
.seo-block-grid li {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.seo-block-grid ul {
  padding-left: 1.2rem;
  margin-top: 0.6rem;
}

/* Interactive hover */
.seo-block-grid .seo-longform:hover,
.seo-block-grid .seo-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: 0.3s ease;
}

/* Special accent container (.seo-intro) */
.seo-block-grid .seo-intro {
  border-left: 4px solid var(--accent);
  background: var(--bg);
}

/* ============================================================
   RESPONSIVE FIX – SWITCH NAAR 1 KOLOM OP MOBIEL
   ============================================================ */
@media (max-width: 900px) {
  .seo-block-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.token-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .token-details-page { width: 92%; }
  .token-header h1 { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  .token-details-page { width: 95%; }
  .seo-longform,
  .seo-intro,
  .keyword-cloud { padding: 1.3rem; }
}

@media (max-width: 430px) {
  .token-header h1 { font-size: 1.45rem; }
}


   ============================================================ */
/* ============================
   TABLET (≤ 900px)
============================ */
@media (max-width: 900px) {

  .token-details-page {
    width: 92%;
    margin: 1rem auto 3rem;
  }

  .token-header h1 {
    font-size: 1.9rem;
  }

  .token-header p {
    font-size: 0.95rem;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .feature-item i {
    font-size: 1.4rem;
  }

  .membership-compare {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .membership-col {
    padding: 1.4rem;
  }

  .membership-col h2 {
    font-size: 1.3rem;
  }

  .token-col {
    padding: 1.2rem;
  }

  .token-col h3 {
    font-size: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   MOBILE (≤ 600px)
============================ */
@media (max-width: 600px) {

  .token-details-page {
    width: 95%;
  }

  .token-header h1 {
    font-size: 1.6rem;
  }

  .token-header p {
    font-size: 0.9rem;
  }

  .info-breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
  }

  .info-breadcrumb ol {
    gap: 0.3rem;
  }

  .info-anchor-nav {
    gap: 0.4rem;
    padding-bottom: 0.5rem;
  }

  .info-anchor-nav a {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  }

  .feature-item {
    padding: 0.8rem 0.6rem;
    font-size: 0.85rem;
  }

  .feature-item i {
    font-size: 1.25rem;
  }

  .membership-col {
    padding: 1.2rem;
  }

  .membership-col h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .token-col {
    padding: 1rem;
    border-radius: 10px;
  }

  .token-col h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .token-col p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .token-cta {
    margin: 2.5rem 0 3rem;
    gap: 1rem;
  }

  .token-cta a {
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
    margin: 0.4rem;
  }

  .info-columns {
    padding-top: 2rem;
  }

  .info-grid {
    gap: 1.6rem;
  }

  .info-card {
    padding: 1.2rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.85rem;
  }
}


/* ============================
   SMALL MOBILE (≤ 430px)
============================ */
@media (max-width: 430px) {

  .token-header h1 {
    font-size: 1.45rem;
  }

  .token-header p {
    font-size: 0.85rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .feature-item {
    padding: 0.7rem 0.5rem;
  }

  .feature-item i {
    font-size: 1.15rem;
  }

  .token-col {
    padding: 0.9rem;
  }

  .token-col h3 {
    font-size: 0.9rem;
  }

  .token-col p {
    font-size: 0.8rem;
  }

  .token-cta a {
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
  }

  .info-card h3 {
    font-size: 0.95rem;
  }
}
