/*
Theme Name: Netzspitze
Theme URI: https://netzspitze.de
Author: Netzspitze GmbH
Author URI: https://netzspitze.de
Description: Custom WordPress Theme für Netzspitze - PIM-Experten
Version: 1.0.0
License: Proprietary
Text Domain: netzspitze
*/

/* === CSS Variables === */
:root {
  --background: 0 0% 100%;
  --foreground: 215 25% 15%;
  --card: 0 0% 100%;
  --card-foreground: 215 25% 15%;
  --primary: 197 100% 44%;
  --primary-foreground: 0 0% 100%;
  --primary-dark: 201 100% 29%;
  --brand-orange: 24 95% 53%;
  --brand-orange-foreground: 0 0% 100%;
  --muted: 214 20% 95%;
  --muted-foreground: 215 16% 47%;
  --accent: 197 100% 44%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 214 20% 88%;
  --input: 214 20% 88%;
  --ring: 197 100% 44%;
  --gradient-hero: linear-gradient(135deg, hsl(201 100% 35%), hsl(197 100% 50%));
  --gradient-animated: linear-gradient(135deg, hsl(201 100% 35%) 0%, hsl(197 100% 50%) 50%, hsl(201 100% 35%) 100%);
}

/* === Accessibility === */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: hsl(var(--primary));
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0;
}

.skip-to-content:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* Focus-Styles für Keyboard-Navigation */
*:focus-visible {
  outline: 3px solid hsl(var(--primary));
  outline-offset: 2px;
  border-radius: 2px;
}

/* Kein Outline bei Maus-Klick */
*:focus:not(:focus-visible) {
  outline: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === Typography === */
.font-heading {
  font-family: 'Poppins', sans-serif;
}

.font-sans {
  font-family: 'Work Sans', sans-serif;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* === Scroll Progress Bar === */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: hsl(var(--muted) / 0.3);
  z-index: 60;
}

#scroll-progress-bar {
  height: 100%;
  transition: width 150ms ease-out;
  background: linear-gradient(to right, hsl(197 100% 44%), hsl(197 100% 50%), hsl(201 100% 35%));
  box-shadow: 0 0 10px hsl(197 100% 44% / 0.5);
}

/* === Navigation === */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 300ms;
  background-color: white;
}

.main-nav.scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 200ms;
}

.nav-logo:hover {
  background: rgba(255,255,255,0.9);
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: hsl(var(--foreground));
  font-weight: 500;
  transition: color 200ms;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-cta {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  transition: background-color 200ms;
}

.nav-cta:hover {
  background: hsl(var(--primary) / 0.9);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 200ms;
}

.mobile-menu-btn:hover {
  background: hsl(var(--muted));
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  height: 1.5rem;
  width: 1.5rem;
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === Hero Section === */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 3rem;
  min-height: 25vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-animated);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid hsl(var(--border) / 0.5);
}

.hero-badge svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--brand-orange));
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  font-size: 3rem;
  color: white;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 300ms;
  background: white;
  color: hsl(var(--primary));
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
}

.btn-primary-hero:hover {
  background: rgba(255,255,255,0.9);
}

.btn-primary-hero svg {
  margin-left: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 200ms;
}

.btn-primary-hero:hover svg {
  transform: translateX(4px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 300ms;
  border: 2px solid white;
  color: white;
  background: transparent;
  cursor: pointer;
}

.btn-outline-hero:hover {
  background: white;
  color: hsl(var(--primary));
}

.btn-outline-hero svg {
  margin-right: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero-features { flex-direction: row; }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature svg {
  height: 1.25rem;
  width: 1.25rem;
  color: white;
}

.hero-feature span {
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.95);
}

.hero-image-wrapper {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image-wrapper { height: 600px; }
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 1.5rem;
  filter: blur(48px);
}

.hero-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* === Social Proof / Client Logos === */
.social-proof {
  padding: 1.5rem 0;
  background: hsl(var(--muted) / 0.3);
}

.social-proof h2 {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logo-grid { gap: 2rem; }
}

@media (min-width: 1024px) {
  .logo-grid { gap: 3rem; }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.logo-item img {
  height: 4rem;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 300ms;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* === Section Styles === */
.section {
  padding: 6rem 0;
}

.section--muted {
  background: hsl(var(--muted) / 0.3);
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-badge {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.section-badge--danger {
  background: hsl(var(--destructive) / 0.1);
  color: hsl(var(--destructive));
}

.section-badge--primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.section-badge svg {
  height: 1rem;
  width: 1rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Problem/Challenge Cards === */
.problem-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}

.problem-card {
  height: 100%;
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  transition: all 300ms;
}

.problem-card:hover {
  border-color: hsl(var(--destructive) / 0.5);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.problem-card-inner {
  padding: 1.5rem;
}

.problem-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.problem-icon {
  background: hsl(var(--destructive) / 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.problem-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: hsl(var(--destructive));
}

.problem-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.problem-card p {
  color: hsl(var(--muted-foreground));
}

/* === System Comparison Cards === */
.systems-section {
  position: relative;
}

.systems-bg-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}

.systems-bg-blob--left {
  top: 0;
  left: 25%;
  background: rgba(94, 74, 227, 0.05);
}

.systems-bg-blob--right {
  bottom: 0;
  right: 25%;
  background: rgba(0, 102, 204, 0.05);
}

.system-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .system-cards { grid-template-columns: 1fr 1fr; }
}

.system-card {
  position: relative;
  height: 100%;
  border-radius: 1.5rem;
  border: 2px solid hsl(var(--border));
  background: hsl(var(--card));
  overflow: hidden;
  transition: all 500ms;
}

.system-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.system-card-bar {
  height: 6px;
  width: 100%;
  transition: height 500ms;
}

.system-card:hover .system-card-bar {
  height: 8px;
}

.system-card-body {
  padding: 2rem;
  background: hsl(var(--muted) / 0.3);
}

.system-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.system-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: transform 300ms;
  overflow: hidden;
}

.system-card:hover .system-logo {
  transform: scale(1.1);
}

.system-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.system-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.system-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.system-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.system-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
}

.system-ideal {
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.system-ideal-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.system-ideal-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.system-ideal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.system-ideal-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.system-ideal-icon svg {
  height: 1rem;
  width: 1rem;
}

.system-ideal-item span {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.system-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.system-card-cta:hover {
  opacity: 0.85;
  gap: 0.75rem;
}

/* === About/Team Section === */
.about-grid {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.about-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.about-cert-badge svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--primary));
}

.about-cert-badge span {
  font-weight: 600;
  color: hsl(var(--primary));
}

.about-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.about-role {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.about-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  margin-bottom: 1rem;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-check-icon {
  background: hsl(var(--primary) / 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.about-check-icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--primary));
}

.about-check span {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.about-linkedin:hover {
  text-decoration: underline;
}

.about-linkedin svg {
  height: 1.25rem;
  width: 1.25rem;
}

/* Promise Card */
.promise-card {
  border: 2px solid hsl(var(--primary) / 0.2);
  border-radius: 0.75rem;
  background: hsl(var(--card));
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.promise-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.promise-item .check {
  font-size: 1.25rem;
  color: hsl(var(--primary));
}

/* Collaboration Card */
.collab-card {
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--primary) / 0.8));
  padding: 2rem;
}

.collab-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.collab-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.collab-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
}

.collab-item .check {
  font-size: 1.25rem;
  color: white;
}

/* === Process/Steps Section === */

/* -- Mobile first: show mobile, hide desktop -- */
.process-desktop { display: none; }

.process-mobile {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process-desktop { display: block; }
  .process-mobile { display: none; }
}

/* -- Progress bar with numbered circles -- */
.process-progress {
  position: relative;
  margin-bottom: 2.5rem;
}

.process-line {
  position: absolute;
  top: 1.5rem;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 3px;
  background: hsl(var(--border));
  border-radius: 2px;
}

.process-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary)), hsl(var(--primary) / 0.3));
  border-radius: 2px;
}

.process-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-number {
  display: flex;
  justify-content: center;
}

.process-number-circle {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.35);
  border: 3px solid white;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.process-number-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.45);
}

.process-number-circle span {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

/* -- Desktop cards grid -- */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: hsl(var(--primary) / 0.3);
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.process-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.process-duration svg {
  height: 0.8rem;
  width: 0.8rem;
}

.process-duration span {
  font-size: 0.8rem;
  font-weight: 600;
}

.process-card > p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
}

.process-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-card li {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.process-card li::before {
  content: "✓";
  color: hsl(var(--primary));
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* -- Mobile cards -- */
.process-mobile-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.process-mobile-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.process-mobile-card li::before {
  content: "✓";
  color: hsl(var(--primary));
  font-weight: 700;
  flex-shrink: 0;
}

.process-mobile-card li {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.process-mobile-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-mobile-card > p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.process-mobile-card .process-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

/* -- CTA Button -- */
.process-cta {
  text-align: center;
  margin-top: 3rem;
}

.process-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  background: hsl(var(--primary));
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease, gap 200ms ease;
}

.process-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.4);
  gap: 0.875rem;
}

.process-cta svg {
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 200ms;
}

.process-cta a:hover svg {
  transform: translateX(4px);
}

/* === CTA Banner Section === */
/* === CTA Banner – Premium Card Design === */
.cta-banner {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1929 0%, #0a2540 30%, #0d3868 60%, #0c1929 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

/* Decorative floating blobs */
.cta-banner-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.cta-banner-deco-1 {
  width: 400px; height: 400px;
  background: hsl(var(--primary));
  top: -100px; left: -100px;
  animation: float-blob 12s ease-in-out infinite;
}
.cta-banner-deco-2 {
  width: 350px; height: 350px;
  background: hsl(var(--brand-orange));
  bottom: -120px; right: -80px;
  animation: float-blob 10s ease-in-out infinite reverse;
}
@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

/* Central glassmorphism card */
.cta-banner-card {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 0 auto;
}

.cta-banner-card-inner {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-banner-card-inner { padding: 4rem 3.5rem; }
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 2.75rem; }
}

.cta-banner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 38rem;
  margin: 0 auto;
}

.cta-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .cta-banner-buttons { flex-direction: row; }
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, hsl(var(--brand-orange)), hsl(24 95% 58%));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow:
    0 4px 15px rgba(236,125,49,0.4),
    0 1px 3px rgba(0,0,0,0.2);
  text-decoration: none;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(236,125,49,0.5),
    0 2px 6px rgba(0,0,0,0.2);
}

.cta-btn-primary svg { height: 1.25rem; width: 1.25rem; flex-shrink: 0; }
.cta-btn-primary .cta-btn-arrow { margin-left: 0.25rem; transition: transform 300ms; }
.cta-btn-primary:hover .cta-btn-arrow { transform: translateX(4px); }

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.cta-btn-outline svg { height: 1.25rem; width: 1.25rem; flex-shrink: 0; }

.cta-banner-footer {
  padding-top: 1rem;
}

.cta-banner-footer p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* === Contact Section === */
.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form-card {
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  transition: all 300ms;
}

.contact-form-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.contact-form-inner {
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 200ms;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px hsl(var(--primary));
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  background: hsl(var(--primary));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: background-color 200ms;
}

.btn-submit:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-submit svg {
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 200ms;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Contact Info Sidebar */
.contact-info-card {
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  background: hsl(var(--card));
  transition: all 300ms;
  margin-bottom: 1.5rem;
}

.contact-info-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.contact-info-inner {
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 300ms;
}

.contact-link:hover {
  background: hsl(var(--muted) / 0.5);
}

.contact-link-icon {
  background: hsl(var(--primary) / 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 200ms;
}

.contact-link:hover .contact-link-icon {
  background: hsl(var(--primary) / 0.2);
}

.contact-link-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: hsl(var(--primary));
}

.contact-link p {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-link span {
  color: hsl(var(--primary));
}

.contact-link:hover span {
  text-decoration: underline;
}

/* Benefits Card */
.benefits-card {
  border: 2px solid hsl(var(--primary) / 0.2);
  background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
  border-radius: 0.75rem;
  padding: 2rem;
}

.benefits-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.benefits-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits-item .check {
  font-size: 1.25rem;
  color: hsl(var(--primary));
  transition: transform 200ms;
}

.benefits-item:hover .check {
  transform: scale(1.1);
}

/* === Calendly Section === */
.calendly-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.calendly-section .bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.calendly-section .grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.calendly-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calendly-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  margin: 0 auto 1rem;
}

.calendly-icon svg {
  height: 2rem;
  width: 2rem;
  color: white;
}

.calendly-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .calendly-content h2 { font-size: 3rem; }
}

.calendly-content > p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto;
}

.calendly-features {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .calendly-features { grid-template-columns: repeat(3, 1fr); }
}

.calendly-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.calendly-feature svg {
  height: 2rem;
  width: 2rem;
  color: white;
  margin: 0 auto 0.75rem;
}

.calendly-feature h3 {
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.calendly-feature p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.calendly-widget {
  padding-top: 2rem;
}

.calendly-inline-widget {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  background: white;
  min-width: 320px;
  height: 1050px;
}

/* === FAQ Section === */
.faq-section {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.faq-badge svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--primary));
}

.faq-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-title { font-size: 2.25rem; }
}

.faq-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

.faq-accordion {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  background: hsl(var(--card));
  transition: box-shadow 200ms;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.5rem 0;
  text-align: left;
  font-weight: 600;
  list-style: none;
  transition: color 200ms;
}

.faq-item summary:hover {
  color: hsl(var(--primary));
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 200ms;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  padding-bottom: 1.5rem;
}

.faq-cta {
  margin-top: 3rem;
  text-align: center;
}

.faq-cta p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.faq-cta a:hover {
  color: hsl(var(--primary) / 0.8);
}

.faq-cta svg {
  height: 1.25rem;
  width: 1.25rem;
}

/* === Footer === */
.site-footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 4rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-col p {
  color: hsl(var(--background) / 0.8);
  line-height: 1.625;
}

.footer-address {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: hsl(var(--background) / 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsl(var(--background) / 0.8);
  transition: color 200ms;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: hsl(var(--background));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--background) / 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: hsl(var(--background) / 0.6);
  transition: color 200ms;
}

.footer-legal a:hover {
  color: hsl(var(--background));
}

/* === Floating Buttons === */
.btn-back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 50;
  border-radius: 9999px;
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(var(--primary));
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(4rem);
  pointer-events: none;
  transition: all 300ms;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back-to-top:hover {
  background: hsl(var(--primary) / 0.9);
}

.btn-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-back-to-top svg {
  height: 1.5rem;
  width: 1.5rem;
}

.btn-whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 300ms;
}

.btn-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: scale(1.1);
}

.btn-whatsapp svg {
  height: 1.75rem;
  width: 1.75rem;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -10px 15px -3px rgba(0,0,0,0.1);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-content > svg {
  height: 1.5rem;
  width: 1.5rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cookie-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-header p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.625;
}

.cookie-close {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.cookie-close:hover {
  background: hsl(var(--muted));
}

.cookie-close svg {
  height: 1rem;
  width: 1rem;
}

.cookie-details {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.cookie-details.visible {
  display: flex;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-option p:first-child {
  font-weight: 600;
  font-size: 0.875rem;
}

.cookie-option p:last-child {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.cookie-option input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
  accent-color: hsl(var(--primary));
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.cookie-btn-primary {
  padding: 0.5rem 1rem;
  background: hsl(var(--primary));
  color: white;
  border-radius: 0.375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 200ms;
}

.cookie-btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
}

.cookie-btn-secondary {
  padding: 0.5rem 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.375rem;
  font-weight: 500;
  background: none;
  cursor: pointer;
  transition: background-color 200ms;
}

.cookie-btn-secondary:hover {
  background: hsl(var(--muted));
}

.cookie-btn-text {
  padding: 0.5rem 1rem;
  color: hsl(var(--muted-foreground));
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms;
}

.cookie-btn-text:hover {
  color: hsl(var(--foreground));
}

.cookie-privacy {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  padding-top: 0.5rem;
}

.cookie-privacy a {
  text-decoration: underline;
}

.cookie-privacy a:hover {
  color: hsl(var(--primary));
}

/* === Coming Soon Page === */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.coming-soon-content {
  max-width: 32rem;
}

.coming-soon .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.coming-soon h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.coming-soon-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* =====================================================
   SSO Plugin Landing Page
   ===================================================== */

/* --- SSO Hero --- */
.sso-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(210 40% 4%) 0%, hsl(215 30% 12%) 50%, hsl(201 60% 15%) 100%);
  color: #fff;
}
.sso-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, hsla(197, 100%, 44%, 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 100%, hsla(197, 100%, 44%, 0.1), transparent);
}
.sso-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: hsla(197, 100%, 44%, 0.15);
  border: 1px solid hsla(197, 100%, 44%, 0.3);
  color: hsl(197, 100%, 70%);
  margin-bottom: 1.5rem;
}
.sso-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sso-gradient-text {
  background: linear-gradient(135deg, hsl(197, 100%, 55%), hsl(197, 100%, 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sso-hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: hsl(215, 20%, 70%);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.sso-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sso-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.sso-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sso-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: hsl(197, 100%, 65%);
}
.sso-stat-label {
  font-size: 0.8rem;
  color: hsl(215, 20%, 60%);
  margin-top: 0.25rem;
}
.sso-stat-divider {
  width: 1px;
  height: 40px;
  background: hsla(215, 20%, 50%, 0.3);
}

/* --- SSO Section Common --- */
.sso-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.sso-section-subtitle {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* --- SSO Problem Section --- */
.sso-problem {
  padding: 5rem 0;
  background: hsl(var(--muted));
}
.sso-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.sso-problem-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: transform 0.2s;
}
.sso-problem-card:hover {
  transform: translateY(-4px);
}
.sso-problem-enterprise {
  border-color: hsl(0, 84%, 85%);
}
.sso-problem-solution {
  border-color: hsl(197, 100%, 80%);
  box-shadow: 0 0 0 1px hsla(197, 100%, 44%, 0.1), 0 8px 32px hsla(197, 100%, 44%, 0.08);
}
.sso-problem-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sso-problem-card-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}
.sso-problem-enterprise .sso-problem-card-header svg { color: hsl(0, 84%, 60%); }
.sso-problem-solution .sso-problem-card-header svg { color: hsl(var(--primary)); }
.sso-price-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: hsl(0, 84%, 50%);
}
.sso-price-tag span {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}
.sso-price-good {
  color: hsl(var(--primary));
}
.sso-problem-list, .sso-solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sso-problem-list li, .sso-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}
.sso-problem-list li::before {
  content: "\2717";
  color: hsl(0, 84%, 60%);
  font-weight: 700;
  flex-shrink: 0;
}
.sso-solution-list li::before {
  content: "\2713";
  color: hsl(var(--primary));
  font-weight: 700;
  flex-shrink: 0;
}

/* --- SSO Workflow Section --- */
.sso-workflow {
  padding: 5rem 0;
}
.sso-infographic {
  max-width: 1000px;
  margin: 0 auto;
}
.sso-workflow-svg {
  width: 100%;
  height: auto;
}
.sso-workflow-mobile {
  display: none;
}

/* --- SSO Workflow Flow Cards (CSS version) --- */
.sso-infographic-css {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.sso-infographic-css .sso-flow-arrow {
  flex-shrink: 0;
  padding: 0 0.25rem;
  display: flex;
  align-items: center;
}
.sso-flow-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 220px;
  min-width: 0;
  box-shadow: 0 4px 16px hsla(215, 25%, 15%, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sso-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px hsla(215, 25%, 15%, 0.1);
}
.sso-flow-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 1rem 1rem 0 0;
  background: var(--accent, hsl(var(--primary)));
}
.sso-flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb, 0, 119, 182), 0.08);
  color: var(--accent, hsl(var(--primary)));
  margin: 0 auto 1rem;
}
.sso-flow-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.sso-flow-card-text {
  font-size: 0.82rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.sso-flow-card-label {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb, 0, 119, 182), 0.08);
  color: var(--accent, hsl(var(--primary)));
  border: 1px solid rgba(var(--accent-rgb, 0, 119, 182), 0.2);
}
@media (max-width: 768px) {
  .sso-infographic-css {
    display: none;
  }
  .sso-workflow-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 360px;
    margin: 2rem auto 0;
  }
  .sso-workflow-mobile .sso-flow-arrow {
    padding: 0.25rem 0;
  }
  .sso-workflow-mobile .sso-flow-card {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .sso-workflow-mobile {
    display: none;
  }
}

/* --- SSO Features Section --- */
.sso-features {
  padding: 5rem 0;
  background: hsl(var(--muted));
}
.sso-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.sso-feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: transform 0.2s, box-shadow 0.2s;
}
.sso-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px hsla(215, 25%, 15%, 0.08);
}
.sso-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(197, 100%, 95%);
  color: hsl(var(--primary));
  margin-bottom: 1.25rem;
}
.sso-feature-icon svg {
  width: 24px;
  height: 24px;
}
.sso-feature-icon-azure { background: hsl(210, 100%, 95%); color: #0078d4; }
.sso-feature-icon-green { background: hsl(150, 60%, 95%); color: #10b981; }
.sso-feature-icon-orange { background: hsl(24, 95%, 95%); color: hsl(var(--brand-orange)); }
.sso-feature-icon-purple { background: hsl(270, 60%, 95%); color: #7c3aed; }
.sso-feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}
.sso-feature-card p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* --- SSO IdP Section --- */
.sso-idps {
  padding: 5rem 0;
}
.sso-idp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.sso-idp-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sso-idp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px hsla(215, 25%, 15%, 0.08);
}
.sso-idp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.sso-idp-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}
.sso-idp-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.sso-idp-card-more {
  border-style: dashed;
}

/* --- SSO Benefits Section --- */
.sso-benefits {
  padding: 5rem 0;
  background: hsl(var(--muted));
}
.sso-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.sso-benefit {
  text-align: center;
  padding: 2rem 1.5rem;
}
.sso-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(197, 100%, 95%);
  color: hsl(var(--primary));
  margin: 0 auto 1.25rem;
}
.sso-benefit-icon svg {
  width: 28px;
  height: 28px;
}
.sso-benefit-icon-green { background: hsl(150, 60%, 95%); color: #10b981; }
.sso-benefit-icon-orange { background: hsl(24, 95%, 95%); color: hsl(var(--brand-orange)); }
.sso-benefit h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}
.sso-benefit p {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* --- SSO CTA Section --- */
.sso-cta {
  padding: 5rem 0;
}
.sso-cta-card {
  background: linear-gradient(135deg, hsl(210 40% 4%) 0%, hsl(215 30% 12%) 50%, hsl(201 60% 15%) 100%);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sso-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, hsla(197, 100%, 44%, 0.15), transparent);
}
.sso-cta-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.sso-cta-card p {
  color: hsl(215, 20%, 70%);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}
.sso-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* --- SSO FAQ Section --- */
.sso-faq {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sso-hero {
    padding: 6rem 0 3rem;
  }
  .sso-problem-grid {
    grid-template-columns: 1fr;
  }
  .sso-infographic {
    display: none;
  }
  .sso-workflow-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .sso-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    width: 100%;
    max-width: 400px;
  }
  .sso-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: hsl(197, 100%, 95%);
    color: hsl(var(--primary));
    flex-shrink: 0;
  }
  .sso-step-azure { background: hsl(210, 100%, 95%); color: #0078d4; }
  .sso-step-green { background: hsl(150, 60%, 95%); color: #10b981; }
  .sso-step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
  }
  .sso-step-content p {
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
  }
  .sso-step-arrow {
    color: hsl(var(--primary));
  }
  .sso-features-grid {
    grid-template-columns: 1fr;
  }
  .sso-idp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sso-benefits-grid {
    grid-template-columns: 1fr;
  }
  .sso-cta-card {
    padding: 2.5rem 1.5rem;
  }
  .sso-hero-stats {
    gap: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sso-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sso-idp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================================
   Reference Entities Plugin Landing Page
   ===================================================== */

/* --- RE Hero --- */
.re-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(270 30% 6%) 0%, hsl(265 25% 14%) 50%, hsl(260 40% 18%) 100%);
  color: #fff;
}
.re-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, hsla(270, 60%, 50%, 0.12), transparent),
              radial-gradient(ellipse 60% 40% at 80% 100%, hsla(270, 60%, 50%, 0.08), transparent);
}
.re-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.re-gradient-text {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.re-stat-accent {
  color: #a78bfa !important;
}

/* --- RE Use Cases Section --- */
.re-usecases {
  padding: 5rem 0;
}
.re-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.re-usecase-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: transform 0.2s, box-shadow 0.2s;
}
.re-usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px hsla(215, 25%, 15%, 0.08);
}
.re-usecase-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.re-usecase-icon svg {
  width: 24px;
  height: 24px;
}
.re-usecase-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}
.re-usecase-card p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
}
.re-usecase-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.re-usecase-attrs span {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

/* --- RE Responsive --- */
@media (max-width: 768px) {
  .re-hero {
    padding: 6rem 0 3rem;
  }
  .re-usecase-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .re-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Plugin Feature Grid Block
   ========================================================================== */

.plugin-features {
  padding: 5rem 0;
}

.plugin-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.plugin-feature-card {
  background: white;
  border: 1px solid hsl(var(--muted));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.plugin-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px hsla(var(--primary), 0.15);
}

.plugin-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: hsl(197 100% 95%);
  color: hsl(197 100% 44%);
}

.plugin-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.plugin-feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.plugin-feature-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .plugin-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .plugin-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Plugin Hero Block (dynamic accent color via CSS custom properties)
   ========================================================================== */

.plugin-hero {
  --accent: #0077b6;
  --accent-rgb: 0, 119, 182;
  --accent-light: rgb(141, 196, 227);
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(210 40% 4%) 0%, hsl(215 30% 12%) 50%, hsl(201 60% 15%) 100%);
  color: #fff;
}

.plugin-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(var(--accent-rgb), 0.1), transparent);
}

.plugin-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.plugin-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.plugin-hero-badge svg {
  width: 18px;
  height: 18px;
}

.plugin-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.plugin-gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plugin-gradient-text-dark {
  background: linear-gradient(135deg, var(--accent, hsl(197, 100%, 44%)), var(--accent-light, hsl(197, 100%, 65%)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plugin-hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: hsl(215, 20%, 70%);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.plugin-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.plugin-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.plugin-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plugin-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-light);
}

.plugin-stat-label {
  font-size: 0.8rem;
  color: hsl(215, 20%, 60%);
  margin-top: 0.25rem;
}

.plugin-stat-divider {
  width: 1px;
  height: 40px;
  background: hsla(215, 20%, 50%, 0.3);
}

/* Dynamic accent for solution list checkmarks */
.sso-solution-list[style] li::before {
  color: var(--check-color, hsl(var(--primary)));
}

@media (max-width: 768px) {
  .plugin-hero {
    padding: 6rem 0 3rem;
  }
  .plugin-hero-stats {
    gap: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════
   Plugin Grid (Hub Pages – /akeneo, /viamedici)
   ═══════════════════════════════════════════════════ */
.akeneo-plugin-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 2), 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.akeneo-plugin-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.akeneo-plugin-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  border: 2px solid var(--card-accent, hsl(var(--primary)));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.akeneo-plugin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -4px hsla(215, 25%, 15%, 0.1);
}

.akeneo-plugin-card:hover::before {
  opacity: 1;
}

.akeneo-plugin-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.akeneo-plugin-card-icon svg {
  width: 24px;
  height: 24px;
}

.akeneo-plugin-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.akeneo-plugin-card-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.akeneo-plugin-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.akeneo-plugin-card:hover .akeneo-plugin-card-link {
  gap: 0.625rem;
}

@media (max-width: 640px) {
  .akeneo-plugin-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .akeneo-plugin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .akeneo-plugin-grid {
    grid-template-columns: repeat(var(--grid-cols, 2), 1fr);
  }
}

/* ==========================================================================
   Content Section Block
   ========================================================================== */

.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.content-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.content-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: hsl(var(--text-primary));
  margin-bottom: 2rem;
}

.content-section-title .gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--brand-orange)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section-body {
  text-align: left;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: hsl(var(--text-secondary));
}

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

.content-section-body p:last-child {
  margin-bottom: 0;
}

.content-section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: hsl(var(--text-primary));
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.content-section-body strong {
  color: hsl(var(--text-primary));
  font-weight: 600;
}

.content-section-body a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-section-body a:hover {
  color: hsl(var(--brand-orange));
}

@media (max-width: 768px) {
  .content-section {
    padding: 3rem 0;
  }

  .content-section .container {
    padding: 0 1.25rem;
  }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* --- Centered helper --- */
.cp-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: hsl(var(--text-primary));
  margin-bottom: 1rem;
  text-align: center;
}

.cp-section-subtitle {
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  text-align: center;
}

/* --- Person Section --- */
.cp-person {
  padding: 5rem 0 4rem;
  background: hsl(var(--muted) / 0.4);
}

.cp-person .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-person-card {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cp-portrait-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cp-portrait-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--brand-orange)));
  box-shadow:
    0 0 0 6px hsl(var(--background)),
    0 20px 40px -12px hsl(var(--primary) / 0.25);
}

.cp-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.cp-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: hsl(var(--text-primary));
  margin-bottom: 0.25rem;
}

.cp-role {
  font-size: 1.0625rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.cp-bio {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.75rem;
}

.cp-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}

.cp-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
}

.cp-check svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.cp-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
}

.cp-linkedin:hover {
  background: hsl(var(--primary));
  color: white;
}

/* --- Channels Section --- */
.cp-channels {
  padding: 5rem 0;
}

.cp-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.cp-channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 300ms ease;
  background: hsl(var(--card));
}

a.cp-channel-card:hover {
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 12px 32px -8px hsl(var(--primary) / 0.12);
  transform: translateY(-4px);
}

.cp-channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 300ms ease;
}

a.cp-channel-card:hover .cp-channel-icon {
  transform: scale(1.1);
}

.cp-channel-icon--blue {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.cp-channel-icon--green {
  background: hsl(142 72% 45% / 0.1);
  color: hsl(142 72% 40%);
}

.cp-channel-icon--whatsapp {
  background: hsl(142 70% 45% / 0.1);
  color: #20BD5A;
}

.cp-channel-icon--orange {
  background: hsl(var(--brand-orange) / 0.1);
  color: hsl(var(--brand-orange));
}

.cp-channel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--text-primary));
  margin-bottom: 0.375rem;
}

.cp-channel-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.cp-channel-hint {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

/* --- Form Section --- */
.cp-form-section {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.4);
}

.cp-form-card {
  max-width: 680px;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.cp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.cp-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--text-primary));
  margin-bottom: 0.5rem;
}

.cp-form .form-group input,
.cp-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.625rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9375rem;
  color: hsl(var(--text-primary));
  background: hsl(var(--background));
  transition: border-color 200ms ease, box-shadow 200ms ease;
  box-sizing: border-box;
}

.cp-form .form-group input:focus,
.cp-form .form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.12);
}

.cp-form .form-group input::placeholder,
.cp-form .form-group textarea::placeholder {
  color: hsl(var(--muted-foreground) / 0.6);
}

.cp-form-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.cp-form-footer .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, hsl(var(--brand-orange)), hsl(24 95% 45%));
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 4px 15px hsl(var(--brand-orange) / 0.3);
}

.cp-form-footer .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsl(var(--brand-orange) / 0.4);
}

.cp-form-hint {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cp-person {
    padding: 3rem 0;
  }

  .cp-portrait-ring {
    width: 140px;
    height: 140px;
  }

  .cp-name {
    font-size: 1.5rem;
  }

  .cp-channels {
    padding: 3rem 0;
  }

  .cp-channel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cp-channel-card {
    padding: 1.5rem 1rem;
  }

  .cp-channel-icon {
    width: 52px;
    height: 52px;
  }

  .cp-channel-icon svg {
    width: 22px;
    height: 22px;
  }

  .cp-form-section {
    padding: 3rem 0;
  }

  .cp-form-card {
    padding: 1.5rem;
  }

  .cp-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cp-channel-grid {
    grid-template-columns: 1fr;
  }

  .cp-checks {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   BLOG STYLES
   ============================================= */

/* --- Blog Index Header --- */
.blog-index {
  padding: 8rem 0 4rem;
}

.blog-index-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.blog-index-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 1.25rem;
}

.blog-index-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.blog-index-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* --- Blog Category Filter --- */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.blog-cat-link {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.blog-cat-link:hover,
.blog-cat-link.active {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- Blog Card --- */
.blog-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 30px hsl(var(--primary) / 0.08);
  transform: translateY(-4px);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: hsl(var(--muted));
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground) / 0.3);
}

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

.blog-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.blog-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.blog-card-readtime {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground) / 0.7);
}

/* --- Blog Pagination --- */
.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}

.blog-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

/* --- Blog Empty State --- */
.blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: hsl(var(--muted-foreground));
}

.blog-empty svg {
  margin: 0 auto 1.5rem;
  opacity: 0.3;
}

.blog-empty h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

/* =============================================
   SINGLE POST STYLES
   ============================================= */

/* --- Breadcrumbs --- */
.blog-breadcrumbs {
  padding: 6.5rem 0 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  list-style: none;
}

.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: hsl(var(--border));
}

.breadcrumb-list a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: hsl(var(--primary));
}

.breadcrumb-list li[aria-current="page"] {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* --- Single Post Layout --- */
.blog-single {
  padding: 2rem 0 4rem;
}

.blog-single-content {
  max-width: 760px;
  margin: 0 auto;
}

/* --- Single Post Header --- */
.blog-single-header {
  margin-bottom: 2rem;
}

.blog-single-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin: 0.75rem 0 1.25rem;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-single-meta-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-single-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-single-author {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
}

.blog-single-meta time {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

/* --- Featured Image --- */
.blog-single-image {
  margin: 0 0 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.blog-single-image img {
  width: 100%;
  height: auto;
}

.blog-single-image figcaption {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* --- Post Body Typography --- */
.blog-single-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: hsl(var(--foreground));
}

.blog-single-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  color: hsl(var(--foreground));
}

.blog-single-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  color: hsl(var(--foreground));
}

.blog-single-body p {
  margin-bottom: 1.25rem;
}

.blog-single-body a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-single-body a:hover {
  color: hsl(var(--brand-orange));
}

.blog-single-body ul,
.blog-single-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
}

.blog-single-body ul {
  list-style: disc;
}

.blog-single-body ol {
  list-style: decimal;
}

.blog-single-body li {
  margin-bottom: 0.5rem;
}

.blog-single-body blockquote {
  border-left: 3px solid hsl(var(--primary));
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: hsl(var(--muted));
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.blog-single-body pre {
  background: hsl(215 25% 12%);
  color: hsl(0 0% 90%);
  padding: 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-single-body code {
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.875em;
  background: hsl(var(--muted));
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
}

.blog-single-body pre code {
  background: none;
  padding: 0;
}

.blog-single-body img {
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}

.blog-single-body strong {
  font-weight: 600;
}

/* --- Tabellen --- */
.blog-single-body table,
.blog-single-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.blog-single-body table thead {
  background: hsl(var(--primary) / 0.08);
}

.blog-single-body table thead th {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: left;
  padding: 0.875rem 1rem;
  color: hsl(var(--foreground));
  border-bottom: 2px solid hsl(var(--primary) / 0.2);
  white-space: nowrap;
}

.blog-single-body table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  vertical-align: top;
  color: hsl(var(--foreground));
}

.blog-single-body table tbody tr:last-child td {
  border-bottom: none;
}

.blog-single-body table tbody tr:nth-child(even) {
  background: hsl(var(--muted) / 0.5);
}

.blog-single-body table tbody tr:hover {
  background: hsl(var(--primary) / 0.04);
}

/* Fettgedruckte letzte Zeile (Summen) */
.blog-single-body table tbody tr:last-child td strong {
  font-weight: 700;
  color: hsl(var(--foreground));
}

/* Responsive Tabelle */
.blog-single-body figure.wp-block-table {
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
}

.blog-single-body figure.wp-block-table table {
  margin: 0;
  border: none;
  border-radius: 0;
}

/* Emoji-Checkmarks in Tabellen */
.blog-single-body table td:nth-child(n+2) {
  text-align: center;
  white-space: nowrap;
}

.blog-single-body table th:nth-child(n+2) {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-single-body table {
    font-size: 0.8125rem;
  }

  .blog-single-body table thead th,
  .blog-single-body table tbody td {
    padding: 0.625rem 0.625rem;
  }

  .blog-single-body table thead th:first-child,
  .blog-single-body table tbody td:first-child {
    position: sticky;
    left: 0;
    background: hsl(var(--card));
    z-index: 1;
    min-width: 140px;
  }

  .blog-single-body table tbody tr:nth-child(even) td:first-child {
    background: hsl(var(--muted) / 0.8);
  }
}

/* --- Tags --- */
.blog-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.blog-tag {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  transition: all 0.2s ease;
}

.blog-tag:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.3);
}

/* --- Author Box --- */
.blog-author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: hsl(var(--muted));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  margin: 2.5rem 0;
}

.blog-author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  display: block;
}

.blog-author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.blog-author-bio {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.blog-author-links {
  display: flex;
  gap: 0.75rem;
}

.blog-author-links a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.blog-author-links a:hover {
  color: hsl(var(--primary));
}

/* --- Blog CTA --- */
.blog-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--brand-orange) / 0.05));
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary) / 0.15);
  margin: 2rem 0;
}

.blog-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.blog-cta p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.blog-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-cta-btn.primary {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
}

.blog-cta-btn.primary:hover {
  background: hsl(var(--primary-dark));
}

.blog-cta-btn.secondary {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
}

.blog-cta-btn.secondary:hover {
  background: hsl(var(--primary) / 0.15);
}

/* --- Related Posts --- */
.blog-related {
  padding: 4rem 0;
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
}

.blog-related-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  text-align: center;
}

/* =============================================
   BLOG PREVIEW (Homepage)
   ============================================= */
.blog-preview {
  padding: 5rem 0;
  background: hsl(var(--muted));
}

.blog-preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 1.25rem;
}

.blog-preview-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.blog-preview-subtitle {
  font-size: 1.0625rem;
  color: hsl(var(--muted-foreground));
}

.blog-preview-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.blog-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--primary));
  transition: gap 0.2s ease;
}

.blog-preview-link:hover {
  gap: 0.75rem;
}

/* --- Responsive Blog --- */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-index {
    padding: 6rem 0 3rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .blog-cat-link {
    white-space: nowrap;
  }

  .blog-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-author-links {
    justify-content: center;
  }

  .blog-single-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-cta-buttons {
    flex-direction: column;
  }

  .blog-cta-btn {
    justify-content: center;
  }

  .blog-preview {
    padding: 3rem 0;
  }

  .breadcrumb-list {
    font-size: 0.75rem;
  }
}

/* === 404 Error Page === */
.error-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  background: hsl(var(--muted));
}

.error-404-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.error-404-code {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.error-404-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.error-404-text {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.error-404-links {
  text-align: left;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
}

.error-404-links h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.error-404-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.error-404-links a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.error-404-links a:hover {
  color: hsl(var(--primary-dark));
  text-decoration: underline;
}

@media (max-width: 640px) {
  .error-404-code {
    font-size: 5rem;
  }

  .error-404-title {
    font-size: 1.5rem;
  }

  .error-404-links ul {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   Plugin Screenshots / Swiper Carousel
   ===================================================== */

.plugin-screenshots-section {
  padding: 5rem 0;
  background: hsl(var(--muted));
  overflow: hidden;
}

.plugin-screenshots-swiper {
  max-width: 1000px;
  margin: 2rem auto 0;
  padding-bottom: 3rem;
}

.plugin-screenshot-slide {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px hsla(215, 25%, 15%, 0.1);
  border: 1px solid hsl(var(--border));
  background: #fff;
}

.plugin-screenshot-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Swiper navigation overrides */
.plugin-screenshots-swiper .swiper-button-prev,
.plugin-screenshots-swiper .swiper-button-next {
  color: var(--accent, hsl(var(--primary)));
  background: hsla(0, 0%, 100%, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 12px hsla(215, 25%, 15%, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.plugin-screenshots-swiper .swiper-button-prev:hover,
.plugin-screenshots-swiper .swiper-button-next:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px hsla(215, 25%, 15%, 0.18);
}

.plugin-screenshots-swiper .swiper-button-prev::after,
.plugin-screenshots-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

/* Swiper pagination overrides */
.plugin-screenshots-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: hsl(var(--muted-foreground));
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.plugin-screenshots-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent, hsl(var(--primary)));
  transform: scale(1.3);
}

/* Empty state */
.plugin-screenshots-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: hsl(var(--muted-foreground));
}

.plugin-screenshots-empty p {
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Screenshots wrapper (from the_content) */
.uf-screenshots-wrapper {
  padding: 0;
}

.uf-screenshots-wrapper:empty {
  display: none;
}

@media (max-width: 768px) {
  .plugin-screenshots-swiper .swiper-button-prev,
  .plugin-screenshots-swiper .swiper-button-next {
    display: none;
  }
}
