/* ==========================================================================
   De Slimme Gids (deslimmegids.be) - Unified Design System & Stylesheet
   ========================================================================== */

:root {
  --bg-base: #030712;
  --bg-surface: #090d1a;
  --bg-card: #111827;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(99, 102, 241, 0.4);
  
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent-violet: #8b5cf6;
  --accent-indigo: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --gradient-primary: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-indigo) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-cyan) 100%);
  --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.25);
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background-color: rgba(99, 102, 241, 0.3);
  color: var(--text-primary);
}

/* Ambient Glow Backgrounds */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  right: 0;
  width: 70vw;
  height: 70vw;
  background: var(--gradient-glow);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  top: 45%;
  left: 0;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(3, 7, 18, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Header & Navigation */
body > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 1.15rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-indigo) 100%);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 650;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-1.5px);
  background: linear-gradient(135deg, #9061f9 0%, #7c3aed 100%);
}

/* Responsive adjustments for mid-size screens to prevent overlapping in header */
@media (max-width: 1240px) {
  .nav-container {
    gap: 1.25rem;
  }
  .nav-menu {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 1120px) {
  .nav-container {
    gap: 0.85rem;
  }
  .nav-menu {
    gap: 0.65rem;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-dashboard-item {
    display: none !important;
  }
}

@media (max-width: 950px) {
  .nav-container {
    gap: 0.65rem;
  }
  .nav-menu {
    gap: 0.45rem;
  }
  .nav-link {
    font-size: 0.76rem;
  }
}

/* Reading Progress Bar */
.progress-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  transition: width 0.1s ease;
}

/* Common Layout Components */
.section-container {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  padding: 0 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(6, 182, 212, 0.04);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--accent-cyan);
  color: #67e8f9;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.btn-text-link {
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  padding: 0.9rem 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.btn-text-link:hover {
  color: #67e8f9;
  transform: translateY(-2px);
}

/* ==========================================================================
   Home Page Hub Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
  max-width: 1120px;
  margin: 7.25rem auto 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.15rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 1040px;
  margin: 0 auto 1.25rem auto;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.13rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 1.25rem auto;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-service-list {
  display: grid;
  gap: 0.65rem;
  max-width: 860px;
  margin: 0 auto 1.05rem auto;
  text-align: left;
  width: 100%;
}

.hero-service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(10, 14, 28, 0.72)),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 42%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.85rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-service-row:hover {
  border-color: rgba(6, 182, 212, 0.38);
  box-shadow: 0 18px 42px rgba(6, 182, 212, 0.09);
  transform: translateY(-2px);
}

.hero-service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.18);
}

.hero-service-copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.hero-service-copy strong {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.hero-service-copy small {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-service-arrow {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-buttons--firm {
  margin-top: 0.15rem;
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 9999px;
  padding: 0.36rem 0.8rem;
}

.section-header-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.75rem;
  text-transform: uppercase;
}

.platform-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.platform-path-card,
.course-card {
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.78), rgba(7, 10, 22, 0.94)),
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.13), transparent 48%);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.platform-path-card:hover,
.course-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.path-number {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.platform-path-card h3,
.course-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.platform-path-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.platform-path-card a {
  color: var(--accent-cyan);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.09), rgba(99, 102, 241, 0.05)),
    linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(7, 10, 22, 0.98));
  box-shadow: var(--shadow-xl);
  padding: 2rem;
}

.business-copy p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1rem 0 1.6rem;
}

.business-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.business-services-grid div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  color: #d1d5db;
  font-weight: 650;
  line-height: 1.35;
  min-height: 58px;
  padding: 1rem;
}

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

.course-card span {
  color: var(--accent-emerald);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.course-card h3 {
  margin-bottom: 0;
}

/* Commercial Website Services */
.websites-page-main {
  padding-top: 8.5rem;
  padding-bottom: 2rem;
}

.websites-page .websites-section {
  padding-top: 1.5rem;
}

.websites-section {
  scroll-margin-top: 8rem;
}

.websites-shell {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(7, 10, 22, 0.98)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(245, 158, 11, 0.07));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.websites-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 3.5rem;
  padding: 2.25rem 3rem 2.15rem;
  align-items: center;
}

.websites-copy,
.website-preview {
  min-width: 0;
}

.websites-copy {
  max-width: 620px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 9999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
}

.service-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--accent-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.websites-title {
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 3.4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 620px;
  margin-bottom: 1.25rem;
}

.websites-desc {
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 680px;
}

.websites-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
}

.websites-proof-row span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 9999px;
  color: #e5e7eb;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
}

.websites-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.websites-actions .btn-primary,
.websites-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding-left: 1.45rem;
  padding-right: 1.45rem;
}

.website-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
  max-width: 560px;
  justify-self: end;
}

.browser-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: #070a16;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
}

.browser-top span:nth-child(2) { background: #f59e0b; }
.browser-top span:nth-child(3) { background: #10b981; margin-right: 0.45rem; }

.browser-top strong {
  font-family: var(--font-mono);
  font-weight: 500;
}

.browser-hero {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(99, 102, 241, 0.08)),
    #0b1020;
}

.browser-label {
  color: #a7f3d0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.browser-hero h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.browser-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.browser-cta-row span {
  background: #f9fafb;
  color: #0f172a;
  border-radius: 0.7rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-dashboard,
.preview-chat {
  margin: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
}

.preview-dashboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-dashboard p,
.preview-chat p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.preview-dashboard strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.35;
}

.dashboard-status {
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.65rem;
  white-space: nowrap;
}

.preview-chat {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.preview-chat span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  color: #a7f3d0;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-chat p {
  color: #d1d5db;
  line-height: 1.55;
  margin: 0;
}

.website-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.25rem 3rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 8.5rem;
}

.website-package {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.35rem;
}

.packages-intro {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 0.25rem;
}

.packages-intro span {
  color: #a7f3d0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.packages-intro h2,
.packages-intro h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  margin-top: 0.35rem;
}

.packages-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.45rem;
}

.featured-package {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.13), rgba(255, 255, 255, 0.045));
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  border-radius: 9999px;
  background: #fbbf24;
  color: #111827;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.package-topline {
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.website-package h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 0.35rem;
}

.package-copy {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.website-package ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.website-package li {
  color: #d1d5db;
  display: flex;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.website-package li::before {
  content: "✓";
  color: var(--accent-emerald);
  font-weight: 800;
}

.package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.package-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.package-action-primary {
  border-color: rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #031014;
}

.package-action-primary:hover {
  border-color: rgba(167, 243, 208, 0.7);
  background: linear-gradient(135deg, #34d399, #22d3ee);
}

.website-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.website-process div {
  background: rgba(7, 10, 22, 0.92);
  padding: 1.5rem 1.75rem;
}

.website-process span {
  color: #fbbf24;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.website-process strong {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.website-process p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 0.45rem;
}

/* Symmetric Article Grid & Cards (Like agentos.guide) */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.card {
  background: linear-gradient(180deg, var(--bg-surface), #0b1020);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.4);
}

.card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-base);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Beautiful dynamic CSS gradient graphics for cards */
.card .thumb .pattern {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.card:hover .thumb .pattern {
  transform: scale(1.05);
}

/* Specific Thumbnail Graphic Overlays */
.card .thumb .pattern.claude-code {
  background: radial-gradient(circle at 30% 30%, #4c1d95 0%, #030712 100%);
}
.card .thumb .pattern.antigravity-ai {
  background: radial-gradient(circle at 30% 30%, #1e1b4b 0%, #030712 100%);
}
.card .thumb .pattern.v0-vercel {
  background: radial-gradient(circle at 30% 30%, #064e3b 0%, #030712 100%);
}
.card .thumb .pattern.top10-tools {
  background: radial-gradient(circle at 30% 30%, #78350f 0%, #030712 100%);
}

/* Abstract Vector elements inside thumbnail */
.card .thumb .pattern::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  pointer-events: none;
}

.card .thumb .pattern::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.card .thumb .pattern.claude-code::after {
  background: var(--accent-violet);
}
.card .thumb .pattern.antigravity-ai::after {
  background: var(--accent-indigo);
}
.card .thumb .pattern.v0-vercel::after {
  background: var(--accent-cyan);
}
.card .thumb .pattern.top10-tools::after {
  background: #f59e0b; /* Amber/Gold */
}

.card .thumb .thumb-icon {
  position: relative;
  z-index: 5;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
}

.card .thumb .thumb-icon svg {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.card .thumb .thumb-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.card .meta {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card .tag {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card .tag.fresh {
  color: var(--accent-emerald);
}

.card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card .read {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-indigo);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: color 0.2s ease;
}

.card .read::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card:hover .read {
  color: var(--text-primary);
}

.card:hover .read::after {
  transform: translateX(4px);
}

/* Interactive UI Widget: AI Tool Selector */
.tool-selector-widget {
  background: radial-gradient(circle at bottom left, #0e172e, var(--bg-surface));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 2.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.selector-progress {
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  position: relative;
}

.selector-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--gradient-accent);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.selector-question {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.selector-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.selector-option {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.selector-option:hover {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.03);
}

.selector-option.selected {
  border-color: var(--accent-indigo);
  background: rgba(99, 102, 241, 0.08);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.option-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.selector-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.selector-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.8rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.selector-btn:hover:not(:disabled) {
  box-shadow: var(--shadow-glow);
}

.selector-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--text-muted);
}

.selector-btn.back-btn-widget {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.selector-btn.back-btn-widget:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* Result Panel */
.result-panel {
  text-align: center;
  display: none;
}

.result-panel.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.result-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-tool-name {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  text-align: left;
}

.result-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.result-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.result-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
}

@media (max-width: 980px) {
  .platform-paths-grid,
  .business-panel,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .business-services-grid {
    grid-template-columns: 1fr;
  }

  .websites-grid,
  .website-packages,
  .website-process {
    grid-template-columns: 1fr;
  }

  .websites-grid {
    padding: 2rem;
  }

  .websites-copy,
  .website-preview {
    max-width: none;
  }

  .website-preview {
    justify-self: stretch;
  }

  .website-packages {
    padding: 0 2rem 2rem;
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
    margin-top: 7rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-service-row {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.85rem;
  }

  .hero-service-copy small {
    font-size: 0.84rem;
  }

  .hero-service-arrow {
    display: none;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn-text-link {
    justify-content: center;
    width: 100%;
  }

  .platform-path-card,
  .business-panel,
  .course-card {
    border-radius: 1rem;
    padding: 1.2rem;
  }

  .websites-shell {
    border-radius: 1.1rem;
  }

  .websites-grid,
  .website-packages {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .websites-grid {
    gap: 2rem;
    padding-top: 1rem;
  }

  .websites-copy {
    max-width: 100%;
    width: 100%;
  }

  .service-kicker {
    max-width: 100%;
    white-space: normal;
  }

  .websites-actions .btn-primary,
  .websites-actions .btn-secondary,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .website-preview {
    padding: 0.65rem;
  }

  .browser-hero {
    padding: 1.4rem;
  }

  .browser-cta-row span {
    width: 100%;
    text-align: center;
  }

  .preview-dashboard {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-process div {
    padding: 1.25rem;
  }
}


/* ==========================================================================
   Article Pages Styles
   ========================================================================== */

/* Main Container & Layout */
.main-wrapper {
  max-width: 1200px;
  margin: 7rem auto 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 3rem;
}

/* Left Sidebar: Table of Contents */
.left-sidebar {
  position: sticky;
  top: 9rem;
  height: fit-content;
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-item a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}

.toc-item a:hover, .toc-item.active a {
  color: var(--text-primary);
  border-left-color: var(--accent-indigo);
  font-weight: 500;
}

/* Right Sidebar: Sticky Widgets */
.right-sidebar {
  position: sticky;
  top: 9rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  overflow: hidden;
}

.widget-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.author-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.author-widget > * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
}

.author-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  opacity: 0.7;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.author-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-widget {
  background: linear-gradient(to bottom, var(--bg-surface), #0e162b);
  border: 1px solid rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-widget::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-indigo);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

/* Core Article Elements */
article {
  max-width: 760px;
}

.article-header {
  margin-bottom: 2.5rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-btn:hover {
  color: var(--text-primary);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Styled Blockquote Intro */
.intro-quote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cbd5e1;
  border-left: 4px solid var(--accent-indigo);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

/* Article Content Markup */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Interactive Comparison Table */
.table-container {
  overflow-x: auto;
  margin: 2.5rem 0;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  background: var(--bg-surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

th, td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* Custom Highlights & Code Blocks */
code {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  color: #f43f5e;
}

pre {
  background: #0b0f19;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  position: relative;
}

pre code {
  background: none;
  padding: 0;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.code-lang {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Pro / Con Card Grid */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.pro-con-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid transparent;
}

.pro-card {
  background: rgba(16, 185, 129, 0.03);
  border-color: rgba(16, 185, 129, 0.15);
}

.con-card {
  background: rgba(239, 68, 68, 0.03);
  border-color: rgba(239, 68, 68, 0.15);
}

.pro-con-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pro-title { color: var(--accent-emerald); }
.con-title { color: #f87171; }

.pro-con-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pro-con-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pro-con-list li::before {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pro-list li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: bold;
}

.con-list li::before {
  content: '✗';
  color: #f87171;
  font-weight: bold;
}

/* Score Badge Layout */
.score-banner {
  background: var(--bg-surface);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.score-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.score-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.score-max {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.score-content h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.score-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   Newsletter & Footer (Global)
   ========================================================================== */

/* Newsletter Box */
.newsletter-box {
  margin-top: 4rem;
  background: radial-gradient(circle at top right, #0e172e, var(--bg-surface));
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.newsletter-box h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.newsletter-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-input:focus {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.newsletter-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  box-shadow: var(--shadow-glow);
}

/* Footer Styling */
footer {
  border-top: var(--border-color);
  padding: 4rem 1.5rem 3rem 1.5rem;
  background: #02050d;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Code Copy Button
   ========================================================================== */
pre {
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 4rem; /* Place it next to the code language tag */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  user-select: none;
  z-index: 10;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.copy-btn.copied {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border-color: rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1100px) {
  .main-wrapper {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
  .right-sidebar {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .selector-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .main-wrapper {
    grid-template-columns: 1fr;
    margin-top: 6rem;
  }
  .left-sidebar {
    display: none;
  }
  h1 {
    font-size: 2.25rem;
  }
  .pro-con-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    margin-top: 5.4rem;
    padding: 0 1rem;
  }

  #ai-pulse-badge {
    display: none;
  }

  .hero-tag {
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
    padding: 0.28rem 0.7rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.06;
    margin-bottom: 0.58rem;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-service-list {
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .hero-service-row {
    gap: 0.65rem;
    padding: 0.58rem 0.7rem;
    border-radius: 0.65rem;
  }

  .hero-service-index {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 0.55rem;
    font-size: 0.66rem;
  }

  .hero-service-copy {
    gap: 0;
  }

  .hero-service-copy strong {
    font-size: 0.9rem;
  }

  .hero-service-copy small {
    display: none;
  }

  .hero-buttons {
    gap: 0.55rem;
  }

  .hero-buttons--firm .btn-primary,
  .hero-buttons--firm .btn-secondary {
    padding-bottom: 0.68rem;
    padding-top: 0.68rem;
  }

  .hero-trust-row {
    gap: 0.38rem;
    margin-top: 0.58rem;
  }

  .hero-trust-row span {
    min-height: 1.72rem;
    font-size: 0.72rem;
    padding: 0.24rem 0.58rem;
  }
}

/* ==========================================================================
   Premium Light Theme Skin
   ========================================================================== */
body.light-theme {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #f1f5f9;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(79, 70, 229, 0.4);
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --accent-violet: #6d28d9;
  --accent-indigo: #4f46e5;
  --accent-cyan: #0891b2;
  --accent-emerald: #059669;
  
  --gradient-glow: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
}

body.light-theme input,
body.light-theme textarea,
body.light-theme select {
  background: #ffffff !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
}

body.light-theme .card,
body.light-theme .website-package,
body.light-theme .faq-item,
body.light-theme .msg--bot .msg-bubble,
body.light-theme .selector-option,
body.light-theme .preview-dashboard,
body.light-theme .preview-chat {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.07);
}

body.light-theme .ticker-bar {
  background: #f1f5f9;
  color: #334155;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.light-theme body > header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.05);
}

body.light-theme .logo span {
  color: var(--accent-indigo);
}

body.light-theme pre {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme code {
  color: #6d28d9 !important;
}

body.light-theme #dsg-chat-panel {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

body.light-theme .chat-header {
  background: #f8fafc;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .chat-header-name {
  color: #0f172a;
}

body.light-theme .chat-input-area {
  background: #ffffff;
  border-top-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .chat-input {
  background: #f1f5f9;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.1);
}

body.light-theme .chat-input::placeholder {
  color: #94a3b8;
}

body.light-theme .chip {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.08);
  color: #475569;
}

body.light-theme .chip:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.3);
  color: #4f46e5;
}

body.light-theme #dsg-chat-trigger {
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.25), 0 1px 3px rgba(15, 23, 42, 0.1);
}

/* ==========================================================================
   Cmd+K Spotlight Search UI
   ========================================================================== */
#search-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#search-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-box {
  width: 100%;
  max-width: 600px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-theme .search-box {
  box-shadow: 0 20px 60px rgba(15,23,42,0.15), 0 1px 0 rgba(0,0,0,0.04);
}

#search-modal.is-open .search-box {
  transform: translateY(0) scale(1);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.search-input-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-primary) !important;
  padding: 0 !important;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-kbd-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  font-family: var(--font-mono);
}

body.light-theme .search-kbd-hint {
  background: rgba(0,0,0,0.04);
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.search-result-item:hover,
.search-result-item.selected {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.25);
}

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(99,102,241,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-indigo);
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.search-result-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.15);
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.search-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Header Theme Toggle & Search Button
   ========================================================================== */
.header-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-icon-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  outline: none;
}

.action-icon-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.18);
}

body.light-theme .action-icon-btn:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
  border-color: rgba(0,0,0,0.12);
}

.theme-toggle-btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn:hover svg {
  transform: rotate(30deg);
}

@media (max-width: 640px) {
  .nav-container {
    gap: 0.55rem;
    padding: 1rem;
  }

  .logo {
    gap: 0.55rem;
    font-size: clamp(1.18rem, 5.8vw, 1.38rem);
    min-width: 0;
  }

  .header-actions-wrapper {
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .header-actions-wrapper .auth-dashboard-btn {
    display: none;
  }

  .action-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 0.6rem;
  }

  .hamburger {
    flex: 0 0 auto;
    margin-left: 0.05rem;
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1rem;
    width: 100%;
  }
}

/* ==========================================================================
   Media Print Stylesheets (PDF Booklet)
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }
  
  body > header,
  footer,
  #dsg-chat-trigger,
  #back-to-top,
  .left-sidebar,
  .social-share-bar,
  .newsletter-box,
  #newsletter,
  .action-icon-btn,
  .preview-chat,
  .browser-frame,
  .comments-section,
  .article-meta-actions,
  #cookie-banner {
    display: none !important;
  }
  
  .main-wrapper {
    grid-template-columns: 1fr !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  
  article {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  h1, h2, h3 {
    color: #000000 !important;
    page-break-after: avoid;
  }
  
  h2 {
    page-break-before: always;
    margin-top: 2rem !important;
  }
  
  pre, code {
    background: #f3f4f6 !important;
    color: #000000 !important;
    border: 1px solid #d1d5db !important;
    font-size: 9.5pt !important;
  }
  
  a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}

/* ==========================================================================
   Premium Custom Video Player & Embeds
   ========================================================================== */
.dsg-video-container {
  width: 100%;
  max-width: 100%;
  background: var(--bg-surface);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2rem 0;
  line-height: 0; /* Verwijder ongewenste witruimte onder video */
}

.dsg-video-container:hover {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15), var(--shadow-lg);
  transform: translateY(-2px);
}

.dsg-video-container video {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  display: block;
}

/* Responsive 16:9 Embeds (YouTube, Vimeo, Loom) */
.video-ratio-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2rem 0;
}

.video-ratio-wrapper:hover {
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15), var(--shadow-lg);
  transform: translateY(-2px);
}

.video-ratio-wrapper iframe,
.video-ratio-wrapper object,
.video-ratio-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
  display: block;
}

body.light-theme .dsg-video-container,
body.light-theme .video-ratio-wrapper {
  background: #ffffff;
  border-color: rgba(6, 182, 212, 0.15);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

body.light-theme .dsg-video-container:hover,
body.light-theme .video-ratio-wrapper:hover {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.1), 0 10px 20px rgba(15, 23, 42, 0.04);
}

@keyframes dsg-spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: dsg-spin 1s linear infinite;
  display: inline-block;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.partner-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

.dashboard-page .partner-shell {
  padding-top: 8.5rem;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.partner-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.partner-hero p,
.partner-section p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.partner-panel,
.partner-card,
.partner-dashboard-card,
.partner-auth-card,
.dashboard-user-bar {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.partner-auth-card {
  max-width: 620px;
  margin: 1rem auto 3rem;
  padding: 1.5rem;
}

.partner-auth-card h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.partner-auth-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.2rem 0 1rem;
}

.auth-tab {
  border: 1px solid var(--border-color);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 800;
  padding: 0.75rem 1rem;
}

.auth-tab.active {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.32);
  color: var(--accent-cyan);
}

.auth-form {
  display: grid;
  gap: 0.85rem;
}

.auth-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
}

.auth-form input {
  border: 1px solid var(--border-color);
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-primary);
  font: inherit;
  padding: 0.85rem 1rem;
}

.auth-message {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.dashboard-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
}

.dashboard-user-bar strong {
  color: var(--text-primary);
}

.dashboard-user-bar .btn-secondary {
  cursor: pointer;
  padding: 0.55rem 1rem;
}

.partner-panel {
  padding: 1.5rem;
}

.partner-grid,
.partner-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.partner-card,
.partner-dashboard-card {
  padding: 1.25rem;
}

.partner-card h3,
.partner-dashboard-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.partner-card p,
.partner-dashboard-card p {
  font-size: 0.88rem;
  margin: 0;
}

.partner-section {
  margin-bottom: 3rem;
}

.partner-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.partner-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.partner-list li,
.partner-event-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.partner-list li:last-child,
.partner-event-list li:last-child {
  border-bottom: 0;
}

.partner-list strong,
.partner-event-list strong {
  color: var(--text-primary);
}

.partner-invite-box {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.partner-invite-box input {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-primary);
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.partner-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.partner-metric {
  font-size: 1.6rem;
  font-weight: 800;
  color: #10b981;
  font-family: var(--font-heading);
}

.partner-note {
  border-left: 3px solid var(--accent-cyan);
  padding: 1rem 1.25rem;
  background: rgba(6, 182, 212, 0.06);
  color: var(--text-secondary);
  border-radius: 0.75rem;
}

@media (max-width: 768px) {
  .referral-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .partner-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-user-bar {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Webdesigners & Developers Collaboration Form */
.collab-box-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.collab-box-grid > * {
  min-width: 0;
}

.collab-box-grid h2,
.collab-box-grid p,
.collab-bullets span {
  overflow-wrap: anywhere;
}

.collab-form input:focus,
.collab-form select:focus,
.collab-form textarea:focus {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

@media (max-width: 900px) {
  .collab-box-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .collab-box-grid {
    gap: 1.5rem;
  }

  .collab-box-grid > div[style] {
    padding: 1.25rem !important;
  }

  .collab-form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
