/* SEO content block — readable copy for crawlers + users */
.seo-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.seo-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--klikr-white, #fff);
  margin-bottom: 16px;
}

.seo-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}

.seo-content a {
  color: var(--klikr-orange, #ff6a00);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="light"] .seo-content h2 {
  color: #000;
}

[data-theme="light"] .seo-content p {
  color: rgba(0, 0, 0, 0.65);
}

/* Site footer — internal link hub for SEO */
.site-footer {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.site-footer__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__nav a:hover {
  color: var(--klikr-orange, #ff6a00);
}

.site-footer__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
}

.site-footer__meta a {
  color: #e9d5ff;
  text-decoration: none;
}

.site-footer__meta a:hover {
  color: var(--klikr-orange, #ff6a00);
}

.site-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

body.scene-bg .site-footer__nav a,
body.scene-bg .site-footer__copy {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .site-footer__nav a {
  color: rgba(30, 16, 53, 0.72);
}

[data-theme="light"] .site-footer__copy {
  color: rgba(30, 16, 53, 0.45);
}

.seo-inline-link {
  color: var(--klikr-orange, #ff6a00);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mega footer — multi-column (Mozilla-style), Klikr glass theme */
.mega-footer {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, rgba(191, 0, 255, 0.14) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.72) 100%);
  border-top: 1px solid rgba(191, 0, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mega-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mega-footer__intro {
  max-width: 680px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-footer__intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.mega-footer__intro p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 10px;
}

.mega-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-bottom: 36px;
}

.mega-footer__col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.mega-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-footer__col li {
  margin-bottom: 10px;
}

.mega-footer__col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.mega-footer__col a:hover {
  color: var(--klikr-orange, #ff6a00);
}

.mega-footer__col a.is-highlight {
  color: #ffb380;
  font-weight: 600;
}

.mega-footer__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.mega-footer__brand strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.mega-footer__brand span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.mega-footer__legal {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}

.mega-footer__legal a {
  color: #e9d5ff;
  text-decoration: none;
}

.mega-footer__legal a:hover {
  color: var(--klikr-orange, #ff6a00);
}

@media (max-width: 900px) {
  .mega-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .mega-footer__grid {
    grid-template-columns: 1fr;
  }

  .mega-footer__legal {
    text-align: left;
  }
}

/* Widget guide — how-it-works */
.widget-guide {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.widget-guide__card {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(191, 0, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.widget-guide h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0e8ff;
  margin-bottom: 8px;
}

.widget-guide__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  line-height: 1.6;
}

.widget-guide__steps {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.widget-guide__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.widget-guide__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #bf00ff);
}

.widget-guide__step h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f0e8ff;
  margin-bottom: 4px;
}

.widget-guide__step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  margin: 0;
}

.widget-guide__code {
  position: relative;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
}

.widget-guide__code code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #c4b5fd;
  white-space: pre-wrap;
  word-break: break-all;
}

.widget-guide__note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.widget-guide__note a {
  color: var(--klikr-orange, #ff6a00);
}
