/*
Theme Name: Standard X
Theme URI: https://standardx.me
Description: Custom theme for Standard X — AI-powered platform for implementing and managing ISO standards and compliance regulations. Dark/light toggle. Modern.
Author: Standard X (Mobes Monte)
Version: 1.0
*/

/* ============ DARK THEME (default) ============ */
:root,
:root[data-theme="dark"] {
  --bg: #0B1220;
  --bg-elev: #0F1830;
  --bg-card: #131e3a;
  --bg-card-2: #182650;
  --line: rgba(148, 163, 184, 0.12);
  --line-strong: rgba(148, 163, 184, 0.22);

  --text: #E2E8F0;
  --text-dim: #94A3B8;
  --text-mute: #64748B;
  --text-bright: #F8FAFC;

  --primary: #2563EB;          /* Standard X plava (iz logo-a) */
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --accent: #38BDF8;
  --purple: #A78BFA;
  --purple-dark: #7C3AED;
  --green: #34D399;
  --pink: #F472B6;

  --grad-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  --grad-blue: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --grad-hero: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #38BDF8 100%);
  --grad-purple: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  --grad-green: linear-gradient(135deg, #34D399 0%, #059669 100%);
  --grad-warm: linear-gradient(135deg, #F472B6 0%, #FB923C 100%);

  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.22);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 16px 60px rgba(0, 0, 0, 0.45);

  --hero-gradient-top: #142347;
  --header-bg: rgba(11, 18, 32, 0.55);
  --header-bg-scrolled: rgba(11, 18, 32, 0.85);
  --footer-bg: #070c17;
  --logo-filter: brightness(0) invert(1);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ============ LIGHT THEME ============ */
:root[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-elev: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-2: #F1F5F9;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.16);

  --text: #334155;
  --text-dim: #64748B;
  --text-mute: #94A3B8;
  --text-bright: #0F172A;

  --primary: #2563EB;
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --accent: #0EA5E9;
  --purple: #7C3AED;
  --purple-dark: #6D28D9;
  --green: #059669;
  --pink: #DB2777;

  --grad-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  --grad-blue: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  --grad-hero: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 50%, #F0F9FF 100%);
  --grad-purple: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  --grad-green: linear-gradient(135deg, #059669 0%, #047857 100%);
  --grad-warm: linear-gradient(135deg, #DB2777 0%, #EA580C 100%);

  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.12);
  --shadow-card: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 16px 60px rgba(15, 23, 42, 0.14);

  --hero-gradient-top: #EFF6FF;
  --header-bg: rgba(255, 255, 255, 0.7);
  --header-bg-scrolled: rgba(255, 255, 255, 0.92);
  --footer-bg: #0F172A;
  --logo-filter: none;
}

/* Smooth theme transitions */
html, body, .site-header, .section, .audience-card, .std-card, .feature-card, .step-card, .btn, .site-footer, .hero-meta, .tab-btn {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#wpadminbar { display: none; }

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 18, 32, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-bright);
}

.logo-text { font-size: 1.25rem; letter-spacing: -0.4px; line-height: 1; }
.logo-bold { font-weight: 800; }
.logo-light { font-weight: 400; opacity: 0.95; }

.site-nav {
  display: flex; align-items: center; gap: 28px;
}
.site-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--text-bright); }
.nav-login { padding-left: 8px; border-left: 1px solid var(--line); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text-bright);
  transition: transform 0.2s, opacity 0.2s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-blue);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-bright);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-dim);
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 120px 24px 100px;
  background: radial-gradient(ellipse at top, #142347 0%, var(--bg) 60%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 16s ease-in-out infinite;
}
.hero-orb-1 { width: 380px; height: 380px; background: var(--primary); top: -80px; left: -100px; }
.hero-orb-2 { width: 420px; height: 420px; background: var(--purple); top: 20%; right: -120px; animation-delay: -5s; }
.hero-orb-3 { width: 320px; height: 320px; background: var(--accent); bottom: -100px; left: 40%; animation-delay: -10s; opacity: 0.35; }
:root[data-theme="light"] .hero-orb { opacity: 0.25; }

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-tagline strong { color: var(--text-bright); font-weight: 600; }

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-meta-item {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}
.hero-meta-item strong {
  display: block;
  color: var(--text-bright);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* ============ TRUST BAR ============ */
.trustbar { padding: 50px 24px 30px; }
.trustbar-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.trustbar-items {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  max-width: 1000px; margin: 0 auto;
}
.trustbar-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.trustbar-item .ico { font-size: 1.1rem; }

/* ============ SECTIONS ============ */
.section {
  padding: 100px 24px;
  position: relative;
}
.section-dark { background: var(--bg-elev); }
.section-darker {
  background: linear-gradient(180deg, var(--bg-elev) 0%, #0a1124 100%);
}

.section-head {
  max-width: 700px; margin: 0 auto 60px; text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============ AUDIENCE GRID ============ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
}
.audience-card-featured {
  background: linear-gradient(165deg, #1a1b4b 0%, #131e3a 100%);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 10px 50px rgba(124, 58, 237, 0.18);
}
.card-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--grad-purple);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}
.audience-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.audience-card h3 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.audience-sub {
  font-size: 0.9rem;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.audience-list {
  list-style: none; padding: 0; margin-bottom: 26px;
}
.audience-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.audience-list li:last-child { border-bottom: none; }
.audience-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--green);
  font-weight: 700;
}
.audience-cta {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s;
}
.audience-cta:hover { color: var(--text-bright); }

/* ============ STANDARDI TABS ============ */
.tabs-group {
  max-width: 1100px; margin: 0 auto;
}
.tabs-bar {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}
.tab-btn:hover { color: var(--text-bright); border-color: var(--line-strong); }
.tab-btn.active {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.3);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in 0.4s ease; }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.std-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.std-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.std-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.std-card.std-active { border-color: rgba(56, 189, 248, 0.4); }
.std-card.std-roadmap { opacity: 0.78; }
.std-card.std-roadmap:hover { opacity: 1; }
.std-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--primary);
}
.std-tag-soon { background: rgba(148, 163, 184, 0.1); color: var(--text-dim); }
.std-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.std-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============ STEPS ============ */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step-num {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-feature-settings: 'tnum';
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 16px;
}
.step-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.step-tags span {
  font-size: 0.72rem;
  background: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 500;
}
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-size: 1.4rem;
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--bg-card-2);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-blue { background: rgba(56, 189, 248, 0.14); color: var(--primary); }
.icon-purple { background: rgba(167, 139, 250, 0.14); color: var(--purple); }
.icon-green { background: rgba(52, 211, 153, 0.14); color: var(--green); }
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============ PARTNER TIERS ============ */
.partner-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ptier {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.ptier:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-hover);
}
.ptier-featured {
  background: linear-gradient(165deg, #1f1d4b 0%, #131e3a 100%);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 14px 50px rgba(124, 58, 237, 0.18);
}
.ptier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ptier h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
}
.ptier-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.5px;
  line-height: 1;
}
.ptier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mute);
}
.ptier-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 22px;
  line-height: 1.55;
}
.ptier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}
.ptier-features li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.ptier-features li:last-child { border-bottom: none; }
.ptier-features li::before {
  content: '→';
  position: absolute; left: 0; top: 9px;
  color: var(--purple);
  font-weight: 700;
}
.ptier-features li strong { color: var(--text-bright); font-weight: 600; }
.ptier-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-style: italic;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid var(--purple);
  border-radius: 4px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.ptier-soon {
  margin-top: 4px;
  padding-top: 12px !important;
  border-top: 1px dashed var(--line-strong) !important;
}
.ptier-soon::before { display: none !important; }
.ptier-soon strong { color: var(--text-bright); font-weight: 600; }
.soon-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.18);
  color: var(--purple);
  border: 1px solid rgba(167, 139, 250, 0.35);
  vertical-align: middle;
}

.lib-block {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.06) 0%, rgba(167, 139, 250, 0.06) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.lib-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.lib-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.lib-text p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.lib-text p:last-child { margin-bottom: 0; }
.lib-meta {
  font-size: 0.85rem !important;
  color: var(--text-mute) !important;
  font-style: italic;
}
.lib-meta a { color: var(--primary); text-decoration: none; font-weight: 600; font-style: normal; }
.lib-meta a:hover { text-decoration: underline; }

.partner-cta {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.partner-cta a { color: var(--primary); text-decoration: none; font-weight: 600; }
.partner-cta a:hover { text-decoration: underline; }

/* ============ TRUST GRID ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.price-card-featured {
  background: linear-gradient(165deg, #1a1b4b 0%, #131e3a 100%);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.15);
}
.price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.price-sub {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 22px;
  letter-spacing: -1px;
  line-height: 1;
}
.price-amount .per {
  font-size: 0.9rem;
  color: var(--text-mute);
  font-weight: 500;
}
.price-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  flex: 1;
}
.price-features li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 9px;
  color: var(--green);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.pricing-note a { color: var(--primary); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }
.pricing-note-soft {
  display: inline-block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 0.85rem;
  font-style: italic;
}
.plan-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-style: italic;
  margin-bottom: 14px;
  padding: 8px 10px;
  background: rgba(167, 139, 250, 0.06);
  border-left: 2px solid var(--purple);
  border-radius: 4px;
  line-height: 1.5;
}
.audience-list li.muted-note {
  font-size: 0.82rem;
  color: var(--text-mute);
  border-bottom: none;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.audience-list li.muted-note::before { display: none; }
.audience-list li.muted-note em { font-style: italic; }

/* ============ FINAL CTA ============ */
.cta {
  position: relative; overflow: hidden;
  padding: 100px 24px;
  background: radial-gradient(ellipse at bottom, #1a1f4d 0%, var(--bg) 60%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: pulse-bg 8s ease-in-out infinite;
}
@keyframes pulse-bg {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #060b1a;
  padding: 70px 24px 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo img { filter: brightness(0) invert(1); }
.footer-logo span { font-size: 1.15rem; color: var(--text-bright); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 380px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-mini {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--text-dim);
}
.footer-col h4 {
  font-size: 0.82rem;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-col a, .footer-static {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-bright); }
.footer-static { cursor: default; }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-mute);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .audience-grid, .features-grid, .trust-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .std-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-tiers-grid { grid-template-columns: 1fr; }
  .steps-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 68px 0 0 0;
    flex-direction: column;
    background: rgba(11, 18, 32, 0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 20px;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 99;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  .site-nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-login { border: none; padding: 10px 0; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 70px 24px 60px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta-item { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); }
  .hero-meta-item:last-child { border-bottom: none; }

  .section { padding: 70px 24px; }
  .section-head { margin-bottom: 40px; }

  .audience-grid, .features-grid, .trust-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .std-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .partner-tiers-grid { grid-template-columns: 1fr; }
  .lib-block { flex-direction: column; gap: 16px; padding: 24px; }
  .lib-icon { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trustbar-items { gap: 16px; }
  .trustbar-item { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; letter-spacing: -1px; }
  .hero-eyebrow { font-size: 0.75rem; padding: 5px 12px; }
  .btn-lg { padding: 12px 20px; font-size: 0.95rem; }
}

/* ===== Additions for "new concept" 2-audience + Magic Button bundle section (25.05.2026) ===== */

/* Two-audience variant of audience grid */
.audience-grid.audience-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .audience-grid.audience-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Bundle section — "Šta tačno dobijate u jednom kliku" */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }
}

.bundle-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009EF7, #7C3AED);
  opacity: 0.6;
}

.bundle-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}

.bundle-card h4 {
  color: var(--text-bright);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}

.bundle-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.bundle-card p:last-child {
  margin-bottom: 0;
}

.bundle-card p strong {
  color: var(--text-bright);
  font-weight: 600;
}

.bundle-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.bundle-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.bundle-list li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: 4px;
  color: #009EF7;
  font-weight: 700;
}

.bundle-list li strong {
  color: var(--text-bright);
  font-weight: 600;
}

.bundle-note {
  margin-top: 32px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(0,158,247,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,158,247,0.18);
  border-radius: 14px;
  text-align: center;
}

.bundle-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.bundle-note p strong {
  color: var(--text-bright);
}

.bundle-note code {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #00E5BF;
  margin: 0 2px;
}

/* ============ THEME TOGGLE BUTTON ============ */
.theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--text-bright);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
  font-family: inherit;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: rotate(15deg);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
:root[data-theme="light"] .theme-toggle {
  background: rgba(15, 23, 42, 0.04);
  border-color: var(--line-strong);
}
:root[data-theme="light"] .theme-toggle:hover {
  background: rgba(37, 99, 235, 0.08);
}
/* Show sun in dark mode, moon in light mode */
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ============ LOGO ============ */


/* Logo in dark mode: white version */


/* ============ HERO BG (theme-aware) ============ */
.hero { background: radial-gradient(ellipse at top, var(--hero-gradient-top) 0%, var(--bg) 60%); }

/* Header (theme-aware) */
.site-header { background: var(--header-bg); }
.site-header.scrolled { background: var(--header-bg-scrolled); }

/* ============ WP PAGE TEMPLATE (za /rjesenja/, /standardi/ itd) ============ */
.wp-page-wrapper {
  padding: 100px 24px 80px;
  min-height: 60vh;
}
.wp-page-inner {
  max-width: 900px;
  margin: 0 auto;
}
.wp-page-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 32px;
  text-align: center;
}
.wp-page-content {
  color: var(--text);
  line-height: 1.75;
  font-size: 1.05rem;
}
.wp-page-content h1, .wp-page-content h2, .wp-page-content h3, .wp-page-content h4 {
  color: var(--text-bright);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 700;
  letter-spacing: -0.4px;
}
.wp-page-content h2 { font-size: 1.8rem; }
.wp-page-content h2:first-child { margin-top: 0; }
.wp-page-content h3 { font-size: 1.35rem; color: var(--primary); }
.wp-page-content h4 { font-size: 1.05rem; }
.wp-page-content p { margin-bottom: 1.2em; color: var(--text-dim); }
.wp-page-content strong { color: var(--text-bright); font-weight: 600; }
.wp-page-content a { color: var(--primary); text-decoration: none; }
.wp-page-content a:hover { text-decoration: underline; }
.wp-page-content ul, .wp-page-content ol { margin: 0 0 1.4em 1.5em; }
.wp-page-content li { margin-bottom: 0.5em; color: var(--text-dim); }
.wp-page-content .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.wp-page-content .wp-block-column {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.wp-page-content .wp-block-group {
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.wp-page-content .wp-block-separator {
  border: 0;
  height: 1px;
  background: var(--line-strong);
  margin: 40px 0;
}
.wp-page-content .wp-block-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.wp-page-content .wp-block-button__link {
  background: var(--grad-blue) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
}
.wp-page-content .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.42);
}
.wp-page-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--text-bright) !important;
  border: 2px solid var(--text-bright) !important;
  box-shadow: none !important;
}

/* Page content H1 (kad je H1 u sadržaju, ne kao title template) */
.wp-page-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 20px 0 40px;
  text-align: center;
}
.wp-page-content h1:first-child { margin-top: 0; }

/* ============ LIGHT THEME OVERRIDES za hardcoded darker elemente ============ */
:root[data-theme="light"] .audience-card-featured {
  background: linear-gradient(165deg, #F5F3FF 0%, #EDE9FE 100%);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 10px 50px rgba(124, 58, 237, 0.08);
}
:root[data-theme="light"] .audience-card-featured h3,
:root[data-theme="light"] .audience-card-featured .audience-sub {
  color: var(--text-bright);
}
:root[data-theme="light"] .audience-card-featured .audience-list li {
  color: var(--text);
  border-bottom-color: rgba(124, 58, 237, 0.14);
}
:root[data-theme="light"] .audience-card-featured .audience-list li strong {
  color: var(--text-bright);
}

/* Section-darker (koji koristi #0a1124 hardcoded) u light temi */
:root[data-theme="light"] .section-darker {
  background: linear-gradient(180deg, var(--bg-elev) 0%, #EEF2FF 100%);
}

/* Trust bar cleaner u light */
:root[data-theme="light"] .trustbar-item {
  color: var(--text);
}

/* Feature icons bg subtle u light */
:root[data-theme="light"] .icon-blue { background: rgba(37, 99, 235, 0.1); }
:root[data-theme="light"] .icon-purple { background: rgba(124, 58, 237, 0.1); }
:root[data-theme="light"] .icon-green { background: rgba(5, 150, 105, 0.1); }

/* Btn-ghost u light temi */
:root[data-theme="light"] .btn-ghost {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-bright);
  border-color: var(--line-strong);
}
:root[data-theme="light"] .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.08);
  border-color: var(--primary);
}

/* Tab-btn u light temi */
:root[data-theme="light"] .tab-btn {
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
}
:root[data-theme="light"] .tab-btn:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text-bright);
  border-color: var(--primary);
}

/* Hero eyebrow badge u light */
:root[data-theme="light"] .hero-eyebrow {
  background: rgba(37, 99, 235, 0.06);
  color: var(--text);
  border-color: rgba(37, 99, 235, 0.2);
}

/* Std tag styles */
:root[data-theme="light"] .std-tag { background: rgba(37, 99, 235, 0.1); }
:root[data-theme="light"] .std-tag-soon { background: rgba(148, 163, 184, 0.15); color: var(--text-dim); }

/* Step number u light */
:root[data-theme="light"] .step-num { color: var(--primary); }
:root[data-theme="light"] .step-tags span {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

/* Muted note u light */
:root[data-theme="light"] .muted-note {
  color: var(--text-mute);
}

/* Hero meta u light */
:root[data-theme="light"] .hero-meta {
  background: rgba(37, 99, 235, 0.03);
  border-color: rgba(37, 99, 235, 0.12);
}

/* Site header u light */
:root[data-theme="light"] .site-header.scrolled {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

/* Nav link colors u light */
:root[data-theme="light"] .site-nav a {
  color: var(--text-dim);
}
:root[data-theme="light"] .site-nav a:hover {
  color: var(--text-bright);
}
:root[data-theme="light"] .nav-login {
  border-left-color: var(--line);
}

/* Footer u light temi (uvijek dark za konzistentan look) */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
}
.site-footer h4 { color: white; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: white; }

/* ============ BUTTON POLISH ============ */
.btn-primary {
  background: var(--grad-blue);
  color: white !important;
  border: none;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}
.btn-primary svg { color: white; }

/* Light theme: smanjena senka intenziteta */
:root[data-theme="light"] .btn-primary {
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}
:root[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.38);
}

/* Osiguraj visible text u svim temama */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:visited {
  color: white !important;
}

/* Std-card blue border u active state — zamijeni cyan sa Standard X plavom */
.std-card.std-active { border-color: rgba(37, 99, 235, 0.4); }
:root[data-theme="light"] .std-card.std-active { border-color: rgba(37, 99, 235, 0.4); background: rgba(37, 99, 235, 0.02); }

/* Std-tag boje na Standard X plavu (bilo cyan) */
.std-tag { background: rgba(37, 99, 235, 0.14); color: var(--primary); }

/* Hero eyebrow badge u dark ostane suptilna */
.hero-eyebrow { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.2); }

/* Section bar hero — dodaj primary color light halo (Standard X plava) */
.hero-orb-1 { background: #2563EB; }
.hero-orb-2 { background: #7C3AED; }
.hero-orb-3 { background: #38BDF8; }

/* ============ FORCE THEME-AWARE COLORS ZA WP SADRŽAJ ============ */
/* Override bilo koje hardcoded boje u page sadržaju da nasleđuje tema */
.wp-page-content h1[style],
.wp-page-content h2[style],
.wp-page-content h3[style],
.wp-page-content h4[style],
.wp-page-content h5[style],
.wp-page-content h6[style] {
  color: var(--text-bright) !important;
}
.wp-page-content p[style],
.wp-page-content li[style],
.wp-page-content span[style] {
  color: inherit;
}
.wp-page-content h3[style] {
  color: var(--primary) !important;
}
/* Wp-block-group background overrides — koristi bg-elev umjesto hardcoded */
.wp-page-content .wp-block-group.has-background {
  background: var(--bg-elev) !important;
}


/* ============ LOGO TOGGLE (dark/light) ============ */
.site-logo { position: relative; display: inline-flex; align-items: center; }
.site-logo img { filter: none !important; }
.site-logo .logo-light,
.site-logo .logo-dark { display: none; }
.site-footer .footer-logo .logo-light,
.site-footer .footer-logo .logo-dark { display: none; }

:root[data-theme="dark"] .site-logo .logo-dark,
:root[data-theme="dark"] .footer-logo .logo-dark { display: block; }
:root[data-theme="light"] .site-logo .logo-light,
:root[data-theme="light"] .footer-logo .logo-light { display: block; }
