/* Scoped stylesheet for WordPress Compatibility */
@import url('fonts.css');

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

/* Color Variables */
.wp-custom-landing {
  --wp-font-headings: 'Outfit', sans-serif;
  --wp-font-body: 'Inter', sans-serif;
  
  /* Palette from Logo */
  --wp-color-blue-dark: #0f4c81; /* Shield Blue */
  --wp-color-blue-light: #2563eb;
  --wp-color-flame-orange: #f97316; /* Flame Orange */
  --wp-color-flame-red: #ef4444; /* Flame Red */
  --wp-color-gray-dark: #2a2d34; /* Logo B Dark Gray */
  --wp-color-gray-medium: #6b7280;
  --wp-color-gray-light: #f3f4f6;
  --wp-color-white: #ffffff;
  --wp-color-background: #fafafc;
  
  /* Theme-specific custom properties (Defaults for Light Theme) */
  --wp-color-header-bg: rgba(255, 255, 255, 0.95);
  --wp-color-heading: var(--wp-color-blue-dark);
  
  /* Gradients */
  --wp-grad-flame: linear-gradient(135deg, var(--wp-color-flame-orange) 0%, var(--wp-color-flame-red) 100%);
  --wp-grad-shield: linear-gradient(135deg, var(--wp-color-blue-dark) 0%, var(--wp-color-blue-light) 100%);
  --wp-grad-hero: linear-gradient(135deg, #0f4c81 0%, #1e1b4b 100%);
  
  /* Shadows & Radius */
  --wp-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --wp-shadow-md: 0 8px 16px rgba(15, 76, 129, 0.08);
  --wp-shadow-lg: 0 16px 32px rgba(15, 76, 129, 0.12);
  --wp-radius-sm: 8px;
  --wp-radius-md: 16px;
  --wp-radius-lg: 24px;
  
  /* Layout settings */
  box-sizing: border-box;
  font-family: var(--wp-font-body);
  color: var(--wp-color-gray-dark);
  background-color: var(--wp-color-background);
  line-height: 1.6;
  padding-top: 80px;
}

/* Dark theme overrides */
html[data-theme="dark"] .wp-custom-landing {
  --wp-color-header-bg: rgba(15, 23, 42, 0.95);
  --wp-color-heading: #f8fafc;
  --wp-color-background: #0f172a;
  --wp-color-white: #1e293b;
  --wp-color-gray-light: #334155;
  --wp-color-gray-dark: #f8fafc;
  --wp-color-gray-medium: #94a3b8;
  
  /* Lighter blue for fallback icons and borders in dark mode */
  --wp-color-blue-dark: #38bdf8;
  
  /* Darker shadows */
  --wp-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --wp-shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
  --wp-shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Static Dark Sections (Hero, Contact Card, Footer) must always use light/white variables */
.wp-hero, 
.wp-contact-info, 
.wp-contact-info-centered, 
.wp-footer {
  --wp-color-white: #ffffff !important;
  --wp-color-gray-dark: #f8fafc !important;
  --wp-color-gray-medium: #cbd5e1 !important;
  --wp-color-blue-dark: #38bdf8 !important; /* Lighter blue for better contrast on dark */
}

/* Header Text Logo Visibility by Theme */
html[data-theme="dark"] .logo-text-dark {
  display: none !important;
}
html[data-theme="dark"] .logo-text-light {
  display: block !important;
}
html[data-theme="light"] .logo-text-dark {
  display: block !important;
}
html[data-theme="light"] .logo-text-light {
  display: none !important;
}

.wp-custom-landing *, 
.wp-custom-landing *::before, 
.wp-custom-landing *::after {
  box-sizing: inherit;
}

/* WordPress reset overrides to prevent theme underlines and bullet points */
.wp-custom-landing a {
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.wp-custom-landing ul,
.wp-custom-landing li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

/* Typography helper */
.wp-custom-landing h1, 
.wp-custom-landing h2, 
.wp-custom-landing h3, 
.wp-custom-landing h4 {
  font-family: var(--wp-font-headings);
  font-weight: 700;
  margin-top: 0;
  color: var(--wp-color-heading);
}

/* Container */
.wp-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.wp-section {
  padding: 80px 0;
  position: relative;
}

.wp-section-alt {
  background-color: var(--wp-color-white);
}

/* Header & Nav */
.wp-header {
  background: var(--wp-color-header-bg);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--wp-shadow-sm);
  border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}

.wp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.wp-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.wp-logo-img {
  height: 50px;
  width: auto;
}

.logo-symbol {
  height: 50px;
  width: auto;
}

.logo-text {
  height: 30px;
  width: auto;
}

.wp-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown Sub-Menu */
.wp-menu-item {
  position: relative;
}

.wp-menu-link {
  text-decoration: none;
  color: var(--wp-color-gray-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
}

.wp-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wp-grad-flame);
  transition: width 0.3s ease;
}

.wp-menu-link:hover {
  color: var(--wp-color-flame-orange);
}

.wp-menu-link:hover::after {
  width: 100%;
}

.wp-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-sm);
  box-shadow: var(--wp-shadow-lg);
  border: 1px solid rgba(15, 76, 129, 0.08);
  min-width: 260px;
  padding: 12px 0;
  list-style: none;
  z-index: 1010;
}

.wp-dropdown-menu li {
  width: 100%;
}

.wp-dropdown-link {
  display: block;
  padding: 10px 24px;
  color: var(--wp-color-gray-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.wp-dropdown-link:hover {
  background-color: var(--wp-color-gray-light);
  color: var(--wp-color-flame-orange);
  padding-left: 28px;
}

.wp-dropdown-divider {
  border-top: 1px solid var(--wp-color-gray-light);
  margin: 6px 0;
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 769px) {
  .wp-menu-item:hover .wp-dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease forwards;
  }
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.wp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 48px;
}

.wp-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wp-color-blue-dark);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.wp-hero {
  background: var(--wp-grad-hero);
  color: var(--wp-color-white);
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
}

.wp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wp-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.wp-hero-text {
  padding-bottom: 80px;
}

.wp-hero h1 {
  color: var(--wp-color-white);
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.wp-hero h1 span {
  background: var(--wp-grad-flame);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wp-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 850px;
}

.wp-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  position: relative;
}

/* Trust Badges Bar */
.wp-trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.wp-badge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--wp-radius-sm);
  color: var(--wp-color-white);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.wp-badge-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.wp-badge-card i {
  color: var(--wp-color-flame-orange);
  margin-bottom: 10px;
}

.wp-badge-card h5 {
  font-size: 0.95rem;
  margin: 0;
  color: var(--wp-color-white);
}

/* Buttons */
.wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--wp-radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 48px;
}

.wp-btn-primary {
  background: var(--wp-grad-flame);
  color: var(--wp-color-white);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.wp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.wp-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--wp-color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wp-hero-buttons {
  display: flex;
  gap: 16px;
}

/* Services / Leistungen */
.wp-section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
}

.wp-section-subtitle {
  text-align: center;
  color: var(--wp-color-gray-medium);
  max-width: 850px;
  margin: 0 auto 60px auto;
  font-size: 1.05rem;
}

.wp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wp-service-card {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-md);
  padding: 40px 32px;
  box-shadow: var(--wp-shadow-md);
  border: 1px solid rgba(15, 76, 129, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wp-shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}

.wp-service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--wp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--wp-color-white) !important;
  border: 1.5px solid rgba(15, 76, 129, 0.1);
  box-shadow: var(--wp-shadow-sm);
}

.wp-service-icon-box.brand {
  color: var(--wp-color-flame-orange) !important;
}

.wp-service-icon-box.tablet {
  color: var(--wp-color-blue-dark) !important;
}

.wp-service-icon-box.software {
  color: var(--wp-color-blue-dark) !important;
}

.wp-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.wp-service-card p {
  font-size: 0.95rem;
  color: var(--wp-color-gray-medium);
  margin-bottom: 24px;
  flex-grow: 1;
}

.wp-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.wp-service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.wp-service-list li svg {
  color: var(--wp-color-flame-orange);
  flex-shrink: 0;
}

.wp-service-card .wp-btn {
  width: 100%;
  justify-content: center;
}

/* About Section */
.wp-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wp-about-image-wrapper {
  position: relative;
}

.wp-about-image-frame {
  width: 100%;
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: var(--wp-shadow-lg);
  border: 4px solid var(--wp-color-white);
}

.wp-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--wp-grad-shield);
  color: var(--wp-color-white);
  padding: 24px;
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-lg);
  font-family: var(--wp-font-headings);
  text-align: center;
}

.wp-about-badge-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.wp-about-badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wp-about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.wp-about-text p {
  margin-bottom: 20px;
  color: var(--wp-color-gray-medium);
}

.wp-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.wp-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wp-highlight-icon {
  color: var(--wp-color-blue-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.wp-highlight-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.wp-highlight-item p {
  margin: 0;
  font-size: 0.85rem;
}

/* FAQ Accordion Styles */
.wp-faq-container {
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.wp-faq-item {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--wp-shadow-sm);
  border: 1px solid rgba(15, 76, 129, 0.06);
  overflow: hidden;
}

.wp-faq-trigger {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--wp-font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wp-color-blue-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 48px;
}

.wp-faq-trigger:hover {
  background-color: rgba(15, 76, 129, 0.02);
}

.wp-faq-trigger .lucide-chevron-down {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.wp-faq-content {
  display: none;
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--wp-color-gray-medium);
  border-top: 1px solid rgba(15, 76, 129, 0.04);
}

.wp-faq-content.active {
  display: block;
  animation: faqFade 0.3s ease forwards;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Form */
.wp-contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.wp-contact-info {
  background: var(--wp-grad-shield);
  color: var(--wp-color-white);
  padding: 32px;
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-lg);
}

.wp-contact-info a {
  color: var(--wp-color-white) !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.wp-contact-info a:hover {
  opacity: 0.85;
}

.wp-contact-info h3 {
  color: var(--wp-color-white);
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.wp-contact-info p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.wp-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wp-contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--wp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-white);
  flex-shrink: 0;
}

.wp-contact-text h5 {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.wp-contact-text p {
  margin: 0;
  color: var(--wp-color-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.wp-contact-form-container {
  background: var(--wp-color-white);
  padding: 48px;
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-md);
  border: 1px solid rgba(15, 76, 129, 0.04);
}

/* Centered Single Contact Layout Styles */
.wp-contact-layout-single {
  max-width: 950px;
  margin: 0 auto;
}

.wp-contact-info-centered {
  background: var(--wp-grad-shield);
  color: var(--wp-color-white);
  padding: 48px;
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-lg);
  text-align: center;
}

.wp-contact-info-centered h3 {
  color: var(--wp-color-white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.wp-contact-info-centered p {
  color: rgba(255,255,255,0.85);
  max-width: 850px;
  margin: 0 auto 40px auto;
}

.wp-contact-grid-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wp-contact-detail-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 16px;
  border-radius: var(--wp-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.wp-contact-detail-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.wp-contact-detail-card .wp-contact-icon {
  margin: 0 auto 12px auto;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--wp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-white);
}

.wp-contact-detail-card h5 {
  margin: 0 0 8px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.wp-contact-detail-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wp-color-white);
  line-height: 1.4;
}

.wp-contact-detail-card a {
  color: var(--wp-color-white) !important;
  text-decoration: none !important;
  font-weight: 600;
}

@media (max-width: 992px) {
  .wp-contact-grid-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wp-contact-grid-details {
    grid-template-columns: 1fr;
  }
  .wp-contact-info-centered {
    padding: 32px 20px;
  }
}

.wp-form-group {
  margin-bottom: 20px;
}

.wp-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.wp-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--wp-color-gray-light);
  border-radius: var(--wp-radius-sm);
  font-family: var(--wp-font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--wp-color-gray-light);
  min-height: 48px;
}

.wp-form-control:focus {
  outline: none;
  border-color: var(--wp-color-blue-dark);
  background-color: var(--wp-color-white);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.wp-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.wp-checkbox-group input {
  margin-top: 4px;
  min-width: 24px;
  min-height: 24px;
}

.wp-checkbox-label {
  font-size: 0.8rem;
  color: var(--wp-color-gray-medium);
}

.wp-checkbox-label a {
  color: var(--wp-color-blue-dark);
  text-decoration: underline;
}

/* Sticky Contact CTA Widget */
.wp-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.wp-sticky-cta-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-white);
  box-shadow: 0 4px 16px rgba(15, 76, 129, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.wp-sticky-cta-btn svg {
  width: 24px;
  height: 24px;
}

.wp-sticky-cta-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.wp-sticky-cta-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae5 90%);
  box-shadow: 0 4px 16px rgba(214, 36, 159, 0.3);
}

.wp-sticky-cta-btn.call {
  background: var(--wp-color-blue-dark);
  box-shadow: 0 4px 16px rgba(15, 76, 129, 0.3);
}

.wp-sticky-cta-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact Form Divider & Instagram Button */
.wp-contact-form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--wp-color-gray-medium);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wp-contact-form-divider::before,
.wp-contact-form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1.5px solid var(--wp-color-gray-light);
}

.wp-contact-form-divider:not(:empty)::before {
  margin-right: .5em;
}

.wp-contact-form-divider:not(:empty)::after {
  margin-left: .5em;
}

.wp-btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae5 90%);
  color: var(--wp-color-white);
  border: none;
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.25);
}

.wp-btn-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae5 90%);
  color: var(--wp-color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.35);
}

/* Interactive Calculator Styles */
.wp-calc-card {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-md);
  border: 2px solid rgba(15, 76, 129, 0.08);
  padding: 40px;
  box-shadow: var(--wp-shadow-lg);
  margin-top: 40px;
}

.wp-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.wp-calc-results {
  background: var(--wp-grad-shield);
  color: var(--wp-color-white);
  padding: 32px;
  border-radius: var(--wp-radius-sm);
  text-align: center;
}

.wp-calc-number {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--wp-grad-flame);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* News Section Cards */
.wp-news-card {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-md);
  overflow: hidden;
  border: 1px solid rgba(15,76,129,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wp-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wp-shadow-lg);
}

.wp-news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wp-news-meta {
  padding: 24px 24px 0 24px;
  font-size: 0.8rem;
  color: var(--wp-color-gray-medium);
  display: flex;
  gap: 12px;
}

.wp-news-content {
  padding: 16px 24px 24px 24px;
  flex-grow: 1;
}

.wp-news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.wp-news-content p {
  font-size: 0.9rem;
  color: var(--wp-color-gray-medium);
  margin-bottom: 20px;
}

/* App Screenshot Layouts */
.wp-app-screenshot-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9/19;
  background: #111827;
  border-radius: 36px;
  border: 12px solid #374151;
  box-shadow: var(--wp-shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.wp-app-screenshot-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #374151;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.wp-app-screenshot-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e1b4b 0%, #0f172a 100%);
  color: #fff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--wp-font-body);
}

.wp-app-widget {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--wp-radius-sm);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

/* Collapsible Legal Modals */
.wp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 45, 52, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.wp-modal.active {
  display: flex;
}

.wp-modal-content {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--wp-shadow-lg);
}

.wp-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--wp-color-gray-medium);
  transition: color 0.3s ease;
  min-height: 48px;
  min-width: 48px;
}

.wp-modal-close:hover {
  color: var(--wp-color-flame-red);
}

/* Scroll Animation Reveal Classes */
.wp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wp-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.wp-footer {
  background: #2a2d34 !important;
  color: var(--wp-color-white);
  padding: 60px 0 30px 0;
  border-top: 4px solid var(--wp-color-blue-dark);
}

.wp-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.wp-footer-brand {
  font-family: var(--wp-font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wp-color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-footer-links {
  display: flex;
  gap: 24px;
}

.wp-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  min-height: 44px;
}

.wp-footer-link:hover {
  color: var(--wp-color-flame-orange);
}

.wp-footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .wp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-hero h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 992px) {
  .wp-contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wp-about-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  .wp-hero {
    padding: 60px 0 0 0 !important;
  }
  .wp-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    align-items: center;
  }
  .wp-hero-text {
    padding-bottom: 0 !important;
  }
  .wp-hero-buttons {
    justify-content: center;
  }
  .wp-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .wp-hero-portrait-frame {
    margin: 0 auto !important;
    max-width: 280px !important;
  }
  
  /* Font size reductions for mobile readability */
  .wp-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  .wp-section-title, .wp-about-text h2 {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
  }
  .wp-services-grid .wp-service-card h3,
  .wp-services-grid .wp-service-card h4 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  
  /* Horizontal swipeable layout for cards on mobile */
  .wp-services-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 4px 20px 4px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .wp-services-grid::-webkit-scrollbar {
    display: none;
  }
  .wp-services-grid .wp-service-card {
    flex: 0 0 82% !important;
    scroll-snap-align: start !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 5px !important;
    padding: 24px 20px !important;
  }
  
  .wp-about-image-wrapper {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .wp-calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wp-about-highlights {
    grid-template-columns: 1fr !important;
  }
  
  /* Trust Badges Column Layout */
  .wp-trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wp-trust-badges-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Sticky Call Widget Adjustments */
  .wp-sticky-cta {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .wp-sticky-cta-btn {
    width: 50px;
    height: 50px;
  }
  .wp-sticky-cta-btn svg {
    width: 22px;
    height: 22px;
  }
  
  /* Mobile Navigation Adjustments */
  .wp-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--wp-color-white);
    flex-direction: column;
    padding: 24px 48px;
    box-shadow: var(--wp-shadow-lg);
    border-bottom: 1px solid var(--wp-color-gray-light);
    gap: 16px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .wp-menu.active {
    display: flex;
  }
  
  .wp-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 10px 0 0 32px;
    background: transparent;
  }
  .wp-dropdown-menu.active {
    display: block;
  }
  .wp-dropdown-link {
    padding: 8px 0;
  }
  
  .wp-menu-link {
    width: 100%;
    justify-content: space-between;
  }
  
  .wp-mobile-toggle {
    display: block;
  }
  .wp-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .wp-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .wp-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Dennis Portrait Styling for Hero Visual */
.wp-hero-portrait-frame {
  max-width: 380px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0;
}

.wp-hero-portrait {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

/* Brandschutzhelfer training photos grid */
.wp-praxis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .wp-praxis-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Premium Custom Bullet List Style */
.wp-bullet-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 24px;
}

.wp-bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--wp-color-gray-medium);
  line-height: 1.8;
  font-size: 0.95rem;
}

.wp-bullet-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp-color-flame-orange);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.8);
}

/* Horizontal Swipe indicator dots styling */
.wp-scroll-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .wp-scroll-dots {
    display: flex;
  }
}

.wp-scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--wp-color-gray-light);
  border: 1px solid var(--wp-color-gray-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.wp-scroll-dot.active {
  background-color: var(--wp-color-flame-orange);
  border-color: var(--wp-color-flame-orange);
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.6);
}

/* Theme Switcher Header Dropdown */
.wp-theme-switcher-wrapper {
  position: relative;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  z-index: 1005;
}

.wp-theme-btn {
  background: none;
  border: 1px solid rgba(15, 76, 129, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--wp-color-gray-dark);
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.wp-theme-btn:hover {
  background-color: var(--wp-color-gray-light);
  border-color: var(--wp-color-flame-orange);
  color: var(--wp-color-flame-orange);
}

/* Hide non-active theme icons based on dataset on html */
html[data-theme-setting="light"] .theme-icon-dark,
html[data-theme-setting="light"] .theme-icon-auto,
html[data-theme-setting="dark"] .theme-icon-light,
html[data-theme-setting="dark"] .theme-icon-auto,
html[data-theme-setting="auto"] .theme-icon-light,
html[data-theme-setting="auto"] .theme-icon-dark {
  display: none;
}

/* Default state for icons if not specified */
.wp-theme-btn svg {
  width: 18px;
  height: 18px;
}

.wp-theme-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--wp-color-white);
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: var(--wp-radius-sm);
  box-shadow: var(--wp-shadow-lg);
  padding: 8px 0;
  list-style: none !important;
  min-width: 140px;
  z-index: 1010;
}

.wp-theme-dropdown.active {
  display: block;
  animation: dropdownSlide 0.2s ease forwards;
}

.wp-theme-dropdown li {
  width: 100%;
}

.wp-theme-dropdown button {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 16px;
  text-align: left;
  font-family: var(--wp-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wp-color-gray-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.wp-theme-dropdown button:hover {
  background-color: var(--wp-color-gray-light);
  color: var(--wp-color-flame-orange);
}

html[data-theme="dark"] .wp-theme-btn {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Premium Cookie Consent Banner */
.wp-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  width: calc(100% - 48px);
  background: var(--wp-color-white);
  border: 1px solid rgba(15, 76, 129, 0.1);
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-lg);
  padding: 24px;
  z-index: 3000;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

html[data-theme="dark"] .wp-cookie-banner {
  border-color: rgba(255, 255, 255, 0.1);
}

.wp-cookie-title {
  font-family: var(--wp-font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--wp-color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-cookie-text {
  font-size: 0.85rem;
  color: var(--wp-color-gray-medium);
  line-height: 1.5;
  margin: 0;
}

.wp-cookie-buttons {
  display: flex;
  gap: 12px;
}

.wp-cookie-btn-accept {
  flex: 1;
  background: var(--wp-grad-flame);
  color: var(--wp-color-white) !important;
  border: none;
  border-radius: var(--wp-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.wp-cookie-btn-decline {
  flex: 1;
  background: none;
  border: 1px solid rgba(15, 76, 129, 0.2);
  color: var(--wp-color-gray-dark);
  border-radius: var(--wp-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-cookie-btn-decline:hover {
  background-color: var(--wp-color-gray-light);
  border-color: var(--wp-color-flame-orange);
  color: var(--wp-color-flame-orange);
}

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

@media (max-width: 576px) {
  .wp-cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
    max-width: none;
    padding: 20px;
  }
  .wp-cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Rauchmelder Marketing Landing Page Custom Styles
   ========================================================================== */

/* Interactive Poster Grid */
.wp-poster-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.wp-poster-card {
  background: var(--wp-color-white);
  border: 1px solid rgba(15, 76, 129, 0.06);
  border-radius: var(--wp-radius-md);
  box-shadow: var(--wp-shadow-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

/* Glassmorphism variation for dark mode/highlights */
.wp-poster-card.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
html[data-theme="dark"] .wp-poster-card.glass {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wp-poster-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--wp-shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}

/* Specific Grid Spans for Poster Layout */
.wp-col-12 { grid-column: span 12; }
.wp-col-8 { grid-column: span 8; }
.wp-col-6 { grid-column: span 6; }
.wp-col-4 { grid-column: span 4; }

@media (max-width: 992px) {
  .wp-col-8, .wp-col-4 { grid-column: span 6; }
}
@media (max-width: 768px) {
  .wp-col-8, .wp-col-6, .wp-col-4 { grid-column: span 12; }
}

/* Card Decorative Accents */
.wp-poster-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--wp-grad-shield);
  transition: height 0.3s ease;
}

.wp-poster-card.orange-accent::before {
  background: var(--wp-grad-flame);
}

.wp-poster-card:hover::before {
  height: 6px;
}

.wp-poster-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--wp-color-blue-light);
}

.wp-poster-card.orange-accent .wp-poster-badge {
  background: rgba(249, 115, 22, 0.1);
  color: var(--wp-color-flame-orange);
}

.wp-poster-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(15, 76, 129, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-blue-dark);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.wp-poster-card:hover .wp-poster-icon {
  background: var(--wp-color-blue-dark);
  color: var(--wp-color-white);
  transform: rotate(5deg);
}

.wp-poster-card.orange-accent:hover .wp-poster-icon {
  background: var(--wp-color-flame-orange);
}

.wp-poster-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.wp-poster-card p {
  color: var(--wp-color-gray-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.wp-poster-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wp-color-blue-light);
  margin-top: auto;
  transition: all 0.3s ease;
}

.wp-poster-card:hover .wp-poster-action {
  color: var(--wp-color-flame-orange);
}

.wp-poster-card:hover .wp-poster-action svg {
  transform: translateX(4px);
}

.wp-poster-action svg {
  transition: transform 0.3s ease;
}

/* Interactive Configurator / Finder */
.wp-finder-container {
  max-width: 800px;
  margin: 40px auto;
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-lg);
  box-shadow: var(--wp-shadow-lg);
  border: 1px solid rgba(15, 76, 129, 0.05);
  overflow: hidden;
}

.wp-finder-header {
  background: var(--wp-grad-hero);
  color: var(--wp-color-white);
  padding: 40px;
  text-align: center;
  position: relative;
}

.wp-finder-header h3 {
  color: var(--wp-color-white);
  margin: 0 0 10px 0;
  font-size: 1.75rem;
}

.wp-finder-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.wp-finder-body {
  padding: 40px;
}

/* Progress bar */
.wp-finder-progress-container {
  width: 100%;
  height: 6px;
  background: var(--wp-color-gray-light);
  border-radius: 3px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.wp-finder-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--wp-grad-flame);
  transition: width 0.4s ease;
}

.wp-finder-step {
  display: none;
}

.wp-finder-step.active {
  display: block;
  animation: stepFadeIn 0.4s ease forwards;
}

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

.wp-finder-step h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: center;
}

/* Option Cards styling */
.wp-finder-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.wp-finder-option {
  border: 2px solid var(--wp-color-gray-light);
  border-radius: var(--wp-radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wp-finder-option:hover {
  border-color: var(--wp-color-blue-light);
  background-color: rgba(37, 99, 235, 0.02);
}

.wp-finder-option.selected {
  border-color: var(--wp-color-flame-orange);
  background-color: rgba(249, 115, 22, 0.05);
}

.wp-finder-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-blue-dark);
}

.wp-finder-option.selected .wp-finder-option-icon {
  background: var(--wp-color-flame-orange);
  color: var(--wp-color-white);
}

.wp-finder-option span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Navigation buttons */
.wp-finder-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

/* Result View */
.wp-finder-result-card {
  text-align: center;
  animation: resultReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes resultReveal {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wp-finder-result-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wp-finder-result-badge.lupus {
  background: rgba(15, 76, 129, 0.1);
  color: var(--wp-color-blue-dark);
}

.wp-finder-result-badge.xsense {
  background: rgba(249, 115, 22, 0.1);
  color: var(--wp-color-flame-orange);
}

.wp-finder-result-image {
  max-height: 160px;
  width: auto;
  margin-bottom: 24px;
}

.wp-finder-result-features {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
  background: var(--wp-color-gray-light);
  padding: 24px;
  border-radius: var(--wp-radius-md);
}

/* Interactive Interactive Poster Modal Detail View */
.wp-poster-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wp-poster-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.wp-poster-modal-content {
  background: var(--wp-color-white);
  border-radius: var(--wp-radius-lg);
  box-shadow: var(--wp-shadow-lg);
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.wp-poster-modal.active .wp-poster-modal-content {
  transform: translateY(0);
}

.wp-poster-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--wp-color-gray-medium);
  transition: color 0.2s ease;
}

.wp-poster-modal-close:hover {
  color: var(--wp-color-flame-red);
}

.wp-poster-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(15, 76, 129, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-blue-dark);
  margin-bottom: 24px;
}

.wp-poster-modal.active .wp-poster-detail-icon {
  animation: bounceSlow 2s infinite;
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wp-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.wp-detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.wp-detail-list-item svg {
  color: var(--wp-color-flame-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Zielgruppen-Auswahl Startseite */
.wp-target-groups-section {
  padding: 60px 0;
  background-color: var(--wp-color-white);
  border-bottom: 1px solid rgba(15, 76, 129, 0.04);
}

.wp-target-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .wp-target-groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wp-target-groups-grid {
    grid-template-columns: 1fr;
  }
}

.wp-target-group-card {
  background: var(--wp-color-background);
  border: 1.5px solid rgba(15, 76, 129, 0.05);
  border-radius: var(--wp-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--wp-shadow-sm);
  position: relative;
  overflow: hidden;
}

.wp-target-group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--wp-grad-shield);
  opacity: 0.8;
  transition: width 0.3s ease;
}

.wp-target-group-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--wp-shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.wp-target-group-card:hover::before {
  width: 6px;
}

/* Give fire brigade card a custom theme look */
.wp-target-group-card.fire::before {
  background: var(--wp-grad-flame);
}
.wp-target-group-card.fire:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.wp-target-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.wp-target-group-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--wp-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-color-blue-dark);
  box-shadow: var(--wp-shadow-sm);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wp-target-group-card:hover .wp-target-group-icon {
  background: var(--wp-color-blue-dark);
  color: var(--wp-color-white);
}

.wp-target-group-card.fire:hover .wp-target-group-icon {
  background: var(--wp-color-flame-orange);
  color: var(--wp-color-white);
}

.wp-target-group-title {
  font-family: var(--wp-font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wp-color-heading);
  margin: 0;
}

.wp-target-group-desc {
  font-size: 0.9rem;
  color: var(--wp-color-gray-medium);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.wp-target-group-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wp-color-blue-light);
  transition: all 0.3s ease;
}

.wp-target-group-card:hover .wp-target-group-link-btn {
  color: var(--wp-color-flame-orange);
}

.wp-target-group-card:hover .wp-target-group-link-btn svg {
  transform: translateX(4px);
}



