@charset "UTF-8";
/* ============================================
   Tailwind Custom Utilities - Front Page
   ============================================ */
/* All styles converted to Tailwind classes in front-page.php */
/* Only complex animations, pseudo-elements, and JavaScript-triggered states remain here */
/* ============================================
   Front Page SCSS Styles
   ============================================ */
/* Font family definition for Cormorant Garamond */
.font-cormorant {
  font-family: "Cormorant Garamond", serif;
}

/* Title background gradient text effect - complex background clip */
h1, h2 {
  will-change: transform;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.8235294118);
  background-image: url(../img/title-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Stat item decorative circle (pseudo-element) */
.stat-item::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  z-index: -10;
  background: radial-gradient(circle at center, rgba(100, 150, 255, 0.15) 0%, rgba(41, 54, 131, 0.1) 50%, transparent 70%);
  border: 2px solid rgba(100, 150, 255, 0.3);
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.4), 0 0 40px rgba(100, 150, 255, 0.2), inset 0 0 30px rgba(100, 150, 255, 0.1);
  animation: pulseGlow 3s ease-in-out infinite;
}

.stat-item:nth-child(2)::before {
  animation-delay: 1.5s;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.4), 0 0 40px rgba(100, 150, 255, 0.2), inset 0 0 30px rgba(100, 150, 255, 0.1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 1;
    box-shadow: 0 0 30px rgba(100, 150, 255, 0.6), 0 0 60px rgba(100, 150, 255, 0.3), inset 0 0 40px rgba(100, 150, 255, 0.2);
  }
}
/* ROI Stat Card */
.roi-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .roi-stat-card {
    padding: 30px;
  }
}

.roi-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

/* ROI Card top border animation */
.roi-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.roi-stat-card:hover::before {
  transform: scaleX(1);
}

/* Filament stat card top border */
.filament-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #293683, #195AFC);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.roi-stat-card:hover .filament-stat-card::before {
  opacity: 1;
}

/* Float animation for icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Tech category section animation */
section.visible .tech-category-section {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Testimonials swiper animation */
section.visible .testimonials-swiper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Integration flow animation */
section.visible .integration-flow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* CTA banner animation */
.cta-banner.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Footer fade in animation */
@keyframes footerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Pulse ring animation for integration hub */
@keyframes pulseRing {
  0% {
    width: 180px;
    height: 180px;
    opacity: 1;
  }
  100% {
    width: 320px;
    height: 320px;
    opacity: 0;
  }
}
/* API Card base styles */
.api-card {
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.25);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
}

.api-card:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.5);
  box-shadow: 0 8px 25px rgba(100, 150, 255, 0.2);
}

/* API Card positioning - complex absolute positioning */
.api-card[style*="--card-index: 0"] {
  top: 50%;
  left: calc(50% + 280px);
  transform: translate(-50%, -50%);
}

.api-card[style*="--card-index: 1"] {
  top: calc(50% - 240px);
  left: calc(50% + 140px);
  transform: translate(-50%, -50%);
}

.api-card[style*="--card-index: 2"] {
  top: calc(50% - 240px);
  left: calc(50% - 140px);
  transform: translate(-50%, -50%);
}

.api-card[style*="--card-index: 3"] {
  top: 50%;
  left: calc(50% - 280px);
  transform: translate(-50%, -50%);
}

.api-card[style*="--card-index: 4"] {
  top: calc(50% + 240px);
  left: calc(50% - 140px);
  transform: translate(-50%, -50%);
}

.api-card[style*="--card-index: 5"] {
  top: calc(50% + 240px);
  left: calc(50% + 140px);
  transform: translate(-50%, -50%);
}

.api-card:hover {
  transform: translate(-50%, calc(-50% - 5px)) scale(1.05) !important;
}

/* Swiper navigation buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #4da6ff;
  width: 50px;
  height: 50px;
  background: rgba(100, 150, 255, 0.1);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
  transform: scale(1.1);
}

/* Swiper pagination */
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(100, 150, 255, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #4da6ff;
  width: 30px;
  border-radius: 6px;
}

/* CRM Showcase Grid animation */
section.visible .crm-showcase-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* CRM Showcase Card */
.showcase-card {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(100, 150, 255, 0.15);
}

/* #canvas and .content styles moved to Tailwind in front-page.php */
/* Section, h1, h2, p, hero-description styles moved to Tailwind in front-page.php */
/* Section with stats, stat-item styles moved to Tailwind in front-page.php */
/* stat-number, stat-label, content-column styles moved to Tailwind in front-page.php */
/* Tech Stack Category Section - styles moved to Tailwind in front-page.php */
/* Only animation kept in PHP <style> tag */
/* Legacy Tech Stack Showcase Grid - styles moved to Tailwind in front-page.php */
/* Only animations kept in PHP <style> tag if needed */
/* Tech Item Card - for large vertical logo cards (WordPress, WooCommerce) */
.tech-item-card {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.tech-item-card:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.2);
}

/* Tech Card Compact - for horizontal logo cards */
.tech-card-compact {
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-card-compact:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(100, 150, 255, 0.2);
}

/* Integration Flow - Hub & Spoke Layout - styles moved to Tailwind in front-page.php */
/* Only complex positioning and animations kept in PHP <style> tag */
/* API Cards - positioning moved to PHP <style> tag, base styles converted to Tailwind */
/* Legacy integration grid - styles moved to Tailwind in front-page.php */
/* Only animations and pseudo-elements kept if needed */
/* Features Grid (CRM) - styles moved to Tailwind in front-page.php */
/* Only animations and pseudo-elements kept if needed */
/* CRM Showcase Grid - styles moved to Tailwind in front-page.php */
/* Only animation kept in PHP <style> tag */
/* Dashboard Hero Section - styles moved to Tailwind in front-page.php */
/* Only animation kept for section.visible state */
section.visible .dashboard-hero {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Analytics Compact Grid - styles moved to Tailwind in front-page.php */
/* Only animation kept for section.visible state */
section.visible .analytics-compact-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Analytics Compact Card */
.analytics-compact-card {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.analytics-compact-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-5px);
}

/* ERP Modules - styles moved to Tailwind in front-page.php */
/* Only animation and pseudo-elements kept */
section.visible .erp-modules {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Module Card */
.module-card {
  background: rgba(100, 150, 255, 0.05);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
}

.module-card:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-5px);
}

.module-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4da6ff;
  font-size: 20px;
}

/* Analytics Grid - styles moved to Tailwind in front-page.php */
/* Only animation and pseudo-elements kept if needed */
section.visible .analytics-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.analytics-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4da6ff;
  font-size: 20px;
}

/* Architecture Diagram - converted to Tailwind in front-page.php */
/* Only JavaScript-triggered animation kept */
section.visible .architecture-diagram {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Architecture Layer */
.arch-layer {
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.25);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.arch-layer:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
}

.arch-layer.highlight {
  background: rgba(100, 150, 255, 0.1);
  border-color: rgba(100, 150, 255, 0.4);
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.15);
}

/* Scalability Grid - styles moved to Tailwind in front-page.php */
/* Only animation kept for section.visible state */
section.visible .scalability-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Scalability Block */
.scalability-block {
  background: rgba(100, 150, 255, 0.05);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
}

.scalability-block:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-5px);
}

/* FAQ Section - styles moved to Tailwind in front-page.php */
/* Only JavaScript-triggered states and complex transitions kept */
section.visible .faq-container {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* FAQ Item */
.faq-item {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-item:hover {
  background: rgba(100, 150, 255, 0.05);
  border-color: rgba(100, 150, 255, 0.3);
}

.faq-item.active {
  background: rgba(100, 150, 255, 0.08) !important;
  border-color: rgba(100, 150, 255, 0.4) !important;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
  opacity: 1;
}

/* Footer - styles moved to Tailwind in front-page.php */
/* Only animation keyframes kept in PHP <style> tag */
/* ROI Section with Charts - Base styles moved to Tailwind in front-page.php */
/* Keeping only complex hover effects and pseudo-elements */
.roi-benefit {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.roi-stat-card:hover .roi-benefit {
  background: rgba(59, 130, 246, 0.1);
  border-top-color: rgba(59, 130, 246, 0.3);
}

/* benefit-icon display and font-size moved to Tailwind in front-page.php */
/* Keeping only animation */
.benefit-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
/* benefit-text removed - not used in front-page.php */
/* ROI Stats Container - Filament Style */
.roi-stats-container.filament-style {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 8px;
}

.filament-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .filament-stat-card {
    padding: 16px;
  }
}

.filament-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #293683, #195AFC);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.roi-stat-card:hover .filament-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(41, 54, 131, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roi-stat-card:hover .filament-stat-card::before {
  opacity: 1;
}

.filament-stat-content {
  width: 100%;
  text-align: center;
}

/* filament-stat styles moved to Tailwind in front-page.php */
/* Keeping only non-Tailwind properties if any complex ones remain */
.card-chart {
  height: 220px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  width: 100%;
}

.card-chart canvas {
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
  pointer-events: auto;
}

/* roi-icon, roi-metric, roi-title, roi-description, roi-note styles moved to Tailwind in front-page.php */
/* Responsive */
@media (max-width: 768px) {
  .content {
    padding: 60px 20px;
  }
  section {
    padding: 30px 20px;
    margin-bottom: 60vh;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 36px;
  }
  p {
    font-size: 18px;
  }
  .section-with-stats {
    flex-direction: column;
    gap: 40px;
  }
  .stats-column {
    flex-direction: row;
    gap: 40px;
    min-width: auto;
    justify-content: center;
  }
  .stat-item::before {
    width: 120px;
    height: 120px;
    top: -10px;
  }
  .stat-number {
    font-size: 48px;
    margin-top: 35px;
  }
  .stat-label {
    font-size: 13px;
  }
  /* Responsive grids */
  .tech-grid,
  .tech-grid-wrap,
  .tech-showcase-grid,
  .features-grid,
  .crm-showcase-grid,
  .analytics-compact-grid,
  .erp-modules,
  .analytics-grid,
  .scalability-grid {
    grid-template-columns: 1fr;
  }
  .tech-category-title {
    font-size: 22px;
  }
  .tech-category-icon {
    width: 22px;
    height: 22px;
  }
  .tech-item-card {
    padding: 15px;
  }
  .tech-svg {
    width: 36px;
    height: 36px;
  }
  .tech-name {
    font-size: 15px;
  }
  .tech-desc {
    font-size: 12px;
  }
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Integration flow responsive - switch to grid on mobile */
  .integration-flow {
    min-height: auto;
    margin: 30px 0;
  }
  .integration-hub,
  .pulse-ring {
    display: none;
  }
  .api-cards-container {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .api-card {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
  }
  .api-card:hover {
    transform: translateY(-5px) !important;
  }
  /* Dashboard responsive */
  .dashboard-main-video {
    aspect-ratio: 16/9;
  }
  .dashboard-description {
    padding: 15px 20px;
  }
  .dashboard-description h3 {
    font-size: 22px;
  }
  .dashboard-description p {
    font-size: 17px;
  }
  /* Architecture diagram responsive */
  .architecture-diagram {
    max-width: 100%;
    margin: 30px 0;
  }
  .arch-layer {
    padding: 15px;
  }
  .layer-header h3 {
    font-size: 18px;
  }
  .layer-components {
    justify-content: center;
  }
  .arch-component {
    min-width: 90px;
    padding: 10px;
  }
  .component-icon {
    font-size: 24px;
  }
  .arch-component span:last-child {
    font-size: 13px;
  }
  .layer-connector {
    height: 35px;
  }
  .connector-label {
    font-size: 11px;
    padding: 3px 8px;
  }
  .category-title,
  .integration-title,
  .feature-title,
  .module-title,
  .analytics-title,
  .block-title {
    font-size: 20px;
  }
  .tech-badge,
  .integration-list li,
  .feature-list li,
  .module-features li,
  .analytics-list li,
  .scalability-features li {
    font-size: 16px;
  }
  .module-icon,
  .feature-icon,
  .block-icon {
    font-size: 36px;
  }
  /* FAQ responsive */
  .faq-question {
    padding: 20px;
    gap: 12px;
  }
  .faq-icon {
    font-size: 24px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-toggle {
    font-size: 28px;
  }
  .faq-item.active .faq-answer {
    padding: 20px 20px 20px 20px;
    opacity: 1 !important;
  }
  .faq-answer p {
    font-size: 17px;
  }
  /* Footer responsive */
  .footer {
    margin-top: 80px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px 30px;
  }
  .footer-stats {
    gap: 20px;
  }
  .stat-value {
    font-size: 28px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* CTA Banners responsive */
  .cta-banner {
    padding: 35px 25px;
    margin: 60vh 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-description {
    font-size: 18px;
  }
  .cta-guarantees {
    flex-direction: column;
    gap: 10px;
  }
  /* Badge Assistenza responsive */
  .assistance-highlight-badge {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .badge-icon-large {
    font-size: 56px;
  }
  .assistance-highlight-badge h3 {
    font-size: 26px;
  }
  .assistance-highlight-badge p {
    font-size: 17px;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* ROI responsive */
  .roi-grid {
    grid-template-columns: 1fr;
  }
  .roi-metric {
    font-size: 48px;
  }
}
/* CTA BANNERS - styles moved to Tailwind in front-page.php */
/* Only animation kept in PHP <style> tag */
/* ========================================
   BADGE ASSISTENZA 12 MESI
   ======================================== */
.assistance-highlight-badge {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 40px;
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.15) 0%, rgba(100, 150, 255, 0.05) 100%);
  border: 2px solid rgba(100, 150, 255, 0.4);
  border-radius: 20px;
  margin: 40px 0 50px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease;
}

section.visible .assistance-highlight-badge {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

.badge-icon-large {
  font-size: 72px;
  flex-shrink: 0;
}

.badge-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: #4da6ff;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
}

.badge-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #c7cdd8;
  margin: 0;
  opacity: 1;
  transform: none;
}

/* ========================================
   DEMO SECTION
   ======================================== */
/* Demo Swiper Container */
.demo-swiper {
  padding: 20px 5px 60px 5px;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (min-width: 768px) {
  .demo-swiper {
    padding: 20px 40px 60px 40px;
  }
}

section.visible .demo-swiper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.demo-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.demo-card {
  max-width: 500px;
}
@media (min-width: 768px) {
  .demo-card {
    max-width: 550px;
  }
}

/* Demo Swiper Navigation Buttons */
.demo-swiper .swiper-button-next,
.demo-swiper .swiper-button-prev {
  display: none;
  color: #4da6ff;
  width: 40px;
  height: 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .demo-swiper .swiper-button-next,
  .demo-swiper .swiper-button-prev {
    display: flex;
    width: 50px;
    height: 50px;
  }
}

.demo-swiper .swiper-button-next::after,
.demo-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .demo-swiper .swiper-button-next::after,
  .demo-swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}

.demo-swiper .swiper-button-next:hover,
.demo-swiper .swiper-button-prev:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
  transform: scale(1.1);
}

/* Demo Swiper Pagination */
.demo-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.demo-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(100, 150, 255, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.demo-swiper .swiper-pagination-bullet-active {
  background: #4da6ff;
  width: 30px;
  border-radius: 6px;
}

/* ========================================
   TESTIMONIANZE
   ======================================== */
/* Swiper Container */
.testimonials-swiper {
  padding: 20px 5px 60px 5px;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (min-width: 768px) {
  .testimonials-swiper {
    padding: 20px 40px 60px 40px;
  }
}

section.visible .testimonials-swiper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  width: 100%;
  max-width: 100%;
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .testimonial-card {
    max-width: 450px;
    padding: 30px;
  }
}

.testimonial-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(100, 150, 255, 0.15);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #FFD700;
  font-size: 20px;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.8;
  color: #c7cdd8;
  margin: 0 0 25px 0;
  opacity: 1;
  transform: none;
}
@media (min-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(100, 150, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #4da6ff;
  border: 2px solid rgba(100, 150, 255, 0.3);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-info strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #fff;
}

.author-info span {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #a0a8b8;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  display: none;
  color: #4da6ff;
  width: 40px;
  height: 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: flex;
    width: 50px;
    height: 50px;
  }
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
  transform: scale(1.1);
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(100, 150, 255, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #4da6ff;
  width: 30px;
  border-radius: 6px;
}

.client-logos-section {
  margin-top: 60px;
  text-align: center;
}

.logos-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #4da6ff;
  margin: 0 0 30px 0;
  opacity: 1;
  transform: none;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.client-logo-placeholder {
  height: 80px;
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  color: #a0a8b8;
  transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-3px);
}

/* ========================================
   PROCESSO DI SVILUPPO
   ======================================== */
.step-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .step-visual {
    flex-direction: column;
    gap: 0;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(100, 150, 255, 0.25) 0%, rgba(41, 54, 131, 0.15) 70%);
  border: 3px solid rgba(100, 150, 255, 0.5);
  padding-bottom: 10px;
  color: #4da6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 40px rgba(100, 150, 255, 0.4);
  z-index: 10;
}

.step-connector {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(100, 150, 255, 0.5) 0%, transparent 100%);
  margin-top: 0;
}
@media (min-width: 768px) {
  .step-connector {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(100, 150, 255, 0.5) 0%, transparent 100%);
    margin-top: 20px;
  }
}

.step-content {
  flex: 1;
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.step-content:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.15);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.step-description {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.8;
  color: #c7cdd8;
  margin: 0 0 20px 0;
  opacity: 1;
  transform: none;
}

.step-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .step-deliverables {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.step-deliverables li {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: #a0a8b8;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border-left: 3px solid rgba(100, 150, 255, 0.4);
}

/* ========================================
   ROI E METRICHE
   ======================================== */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

section.visible .roi-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.roi-card {
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.roi-card:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(100, 150, 255, 0.2);
}

.roi-icon-wrapper {
  margin-bottom: 20px;
}

.roi-icon {
  font-size: 32px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .roi-icon {
    font-size: 56px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.roi-metric {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(to bottom right, #3b82f6, #9333ea);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1;
}
@media (min-width: 768px) {
  .roi-metric {
    font-size: 64px;
  }
}

.roi-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: #4da6ff;
  margin: 0 0 15px 0;
  opacity: 1;
  transform: none;
}

.roi-description {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #c7cdd8;
  margin: 0;
  opacity: 1;
  transform: none;
}

.roi-note {
  margin-top: 60px;
  padding: 20px 25px;
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}
@media (min-width: 768px) {
  .roi-note {
    padding: 30px 40px;
  }
}

.roi-note p {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.625;
  color: #e0e0e0;
  margin: 0;
}
@media (min-width: 768px) {
  .roi-note p {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* ========================================
   CASI STUDIO
   ======================================== */
/* Swiper Container */
.case-studies-swiper {
  padding: 20px 5px 60px 5px;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (min-width: 768px) {
  .case-studies-swiper {
    padding: 40px 60px;
  }
}

section.visible .case-studies-swiper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.case-studies-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.case-study-card {
  width: 100%;
  max-width: 100%;
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .case-study-card {
    max-width: 650px;
    padding: 35px;
  }
}

.case-study-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(100, 150, 255, 0.2);
}

.case-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(100, 150, 255, 0.2);
}

.case-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #4da6ff;
  margin: 0 0 15px 0;
  opacity: 1;
  transform: none;
}
@media (min-width: 768px) {
  .case-title {
    font-size: 28px;
  }
}

.case-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.case-tag.success {
  background: rgba(76, 217, 100, 0.15);
  color: #4CD964;
  border: 1px solid rgba(76, 217, 100, 0.3);
}

.case-tag.time {
  background: rgba(255, 149, 0, 0.15);
  color: #FF9500;
  border: 1px solid rgba(255, 149, 0, 0.3);
}

.case-section {
  padding: 15px 0;
}

.case-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
  opacity: 1;
  transform: none;
}

.case-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #c7cdd8;
  margin: 0;
  opacity: 1;
  transform: none;
}

.case-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-results li {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #c7cdd8;
  padding-left: 25px;
  position: relative;
}

.case-results li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CD964;
  font-weight: bold;
  font-size: 20px;
}

.case-tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-badge-mini {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  padding: 5px 12px;
  background: rgba(100, 150, 255, 0.08);
  border: 1px solid rgba(100, 150, 255, 0.25);
  border-radius: 15px;
  color: #4da6ff;
}

.case-testimonial {
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border-left: 3px solid rgba(100, 150, 255, 0.5);
}

.case-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: #c7cdd8;
  margin: 0 0 12px 0;
  opacity: 1;
  transform: none;
}

.case-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #a0a8b8;
}

.case-author strong {
  color: #fff;
}

/* Swiper Navigation Buttons */
.case-studies-swiper .swiper-button-next,
.case-studies-swiper .swiper-button-prev {
  display: none;
  color: #4da6ff;
  width: 40px;
  height: 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .case-studies-swiper .swiper-button-next,
  .case-studies-swiper .swiper-button-prev {
    display: flex;
    width: 50px;
    height: 50px;
  }
}

.case-studies-swiper .swiper-button-next::after,
.case-studies-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .case-studies-swiper .swiper-button-next::after,
  .case-studies-swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}

.case-studies-swiper .swiper-button-next:hover,
.case-studies-swiper .swiper-button-prev:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.5);
  transform: scale(1.1);
}

/* Swiper Pagination */
.case-studies-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.case-studies-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(100, 150, 255, 0.3);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-studies-swiper .swiper-pagination-bullet-active {
  background: #4da6ff;
  width: 30px;
  border-radius: 6px;
}

/* ============================================================
   ASSISTENZA POST-VENDITA SECTION
   ============================================================ */
.support-section {
  margin-bottom: 80vh;
}

/* Hero Badge - styles moved to Tailwind in front-page.php */
/* Only animations kept */
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Support Packages Grid - styles moved to Tailwind in front-page.php */
/* Only animations kept if needed */
/* Support Package Card */
.support-package-card {
  position: relative;
  padding: 35px;
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.support-package-card:hover {
  transform: translateY(-10px);
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  box-shadow: 0 20px 60px rgba(77, 166, 255, 0.25);
}

/* Support Package Card Premium (first one with border-2) */
.support-package-card.premium {
  border: 2px solid rgba(77, 166, 255, 0.5);
  box-shadow: 0 10px 40px rgba(77, 166, 255, 0.2);
}

/* SLA Guarantees */
.sla-guarantees {
  margin-top: 60px;
}

.sla-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sla-metric-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sla-metric-card:hover {
  transform: translateY(-5px);
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
}

.sla-metric {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #4da6ff, #80c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.sla-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #c7cdd8;
  margin: 0;
}

/* Responsive Support Section */
@media (max-width: 768px) {
  .support-hero-badge {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  .support-hero-icon {
    font-size: 56px;
  }
  .support-packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .package-features {
    min-height: auto;
  }
  .sla-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .sla-metric {
    font-size: 36px;
  }
  .sla-label {
    font-size: 16px;
  }
}
/* ============================================================
   LEAD MAGNET SECTION
   ============================================================ */
.lead-magnet-section {
  margin-bottom: 80vh;
}

/* Lead Magnet Section - styles moved to Tailwind in front-page.php */
/* Only animations kept if needed */
/* Responsive Lead Magnet - styles moved to Tailwind in front-page.php */
/* ============================================
   SECURITY SECTION - Sicurezza e Conformità
   ============================================ */
/* Security Section - styles moved to Tailwind in front-page.php */
/* Only JavaScript-triggered states and animations kept */
.security-badge.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.security-badge:nth-child(1) {
  transition-delay: 0.1s;
}

.security-badge:nth-child(2) {
  transition-delay: 0.2s;
}

.security-badge:nth-child(3) {
  transition-delay: 0.3s;
}

.security-badge:nth-child(4) {
  transition-delay: 0.4s;
}

.security-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.security-feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.security-feature-card:nth-child(2) {
  transition-delay: 0.2s;
}

.security-feature-card:nth-child(3) {
  transition-delay: 0.3s;
}

.security-feature-card:nth-child(4) {
  transition-delay: 0.4s;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(100, 150, 255, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 6px 20px rgba(100, 150, 255, 0.6));
    transform: scale(1.05);
  }
}
/* Responsive Security Section */
@media (max-width: 1024px) {
  .security-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .security-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .security-section p {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .security-badges {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0 50px 0;
  }
  .security-badge {
    padding: 25px 15px;
  }
  .badge-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .badge-label {
    font-size: 16px;
  }
  .security-features-grid {
    gap: 20px;
    margin: 40px 0;
  }
  .security-feature-card {
    padding: 30px 25px;
  }
  .feature-icon-large {
    font-size: 48px;
    margin-bottom: 15px;
  }
  .security-feature-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .security-feature-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .security-feature-list li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 22px;
  }
  .security-note {
    font-size: 18px;
    padding: 25px 20px;
    margin-top: 40px;
  }
  /* ROI Section */
  .roi-section {
    padding: 60px 25px;
  }
  .roi-section h2 {
    font-size: 48px;
  }
  .roi-section > p {
    font-size: 18px;
  }
  /* ROI Stats Grid */
  .roi-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .roi-title {
    font-size: 20px;
  }
  .roi-benefit {
    padding: 15px 12px;
  }
  .card-chart {
    height: 180px;
    padding-top: 15px;
  }
  /* ROI Stats Container - Filament Style */
  .roi-stats-container.filament-style {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 6px;
  }
  /* filament-stat font-sizes moved to Tailwind responsive classes in front-page.php */
}
/* ============================================
   Stat Numbers with Gradient Text
   ============================================ */
.stat-number {
  background-color: rgba(255, 255, 255, 0.8235294118);
  background-image: url(../img/title-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* ============================================
   Demo Cards and Buttons
   ============================================ */
.demo-card {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.demo-card:hover {
  background: rgba(100, 150, 255, 0.06);
  border-color: rgba(100, 150, 255, 0.4);
  box-shadow: 0 12px 40px rgba(100, 150, 255, 0.15);
}

.demo-button {
  background: rgba(100, 150, 255, 0.1);
  border: 2px solid rgba(100, 150, 255, 0.5);
  color: #4da6ff;
  transition: all 0.3s ease;
}

.demo-button:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.7);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

/* ============================================
   Author Avatar with Gradient
   ============================================ */
.author-avatar {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(100, 150, 255, 0.1));
  border: 2px solid rgba(100, 150, 255, 0.3);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: radial-gradient(circle at center, rgba(100, 150, 255, 0.15) 0%, rgba(100, 150, 255, 0.05) 70%);
  border: 2px solid rgba(100, 150, 255, 0.3);
}

.cta-title {
  background-color: rgba(255, 255, 255, 0.8235294118);
  background-image: url(../img/title-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* ============================================
   Step Duration Badge
   ============================================ */
.step-duration {
  background: rgba(100, 150, 255, 0.15);
  border: 1px solid rgba(100, 150, 255, 0.3);
  color: #4da6ff;
}

/* ============================================
   Quote/Note Paragraph
   ============================================ */
.quote-note {
  background: rgba(100, 150, 255, 0.05);
  border-left: 3px solid rgba(100, 150, 255, 0.5);
}

/* ============================================
   Media Elements
   ============================================ */
.showcase-media,
.compact-media {
  background: rgba(0, 0, 0, 0.3);
}

.dashboard-main-video {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(100, 150, 255, 0.3);
  transition: all 400ms ease-in-out;
}

.dashboard-main-video:hover {
  border-color: rgba(100, 150, 255, 0.5);
  box-shadow: 0 8px 30px rgba(100, 150, 255, 0.2);
}

.dashboard-description {
  background: rgba(100, 150, 255, 0.04);
  border-left: 4px solid rgba(100, 150, 255, 0.5);
}

/* ============================================
   Architecture Component
   ============================================ */
.arch-component {
  background: rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}

.arch-component:hover {
  background: rgba(100, 150, 255, 0.15);
}

/* ============================================
   Step and Architecture Connectors
   ============================================ */
.step-connector {
  background: linear-gradient(to bottom, rgba(100, 150, 255, 0.5), rgba(100, 150, 255, 0.1));
}

.connector-line {
  background: linear-gradient(to bottom, rgba(100, 150, 255, 0.5), rgba(100, 150, 255, 0.8), rgba(100, 150, 255, 0.5));
}

.connector-label {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(100, 150, 255, 0.3);
}

/* ============================================
   Placeholder Videos
   ============================================ */
.placeholder-video {
  background: linear-gradient(to bottom right, rgba(100, 150, 255, 0.15), rgba(41, 54, 131, 0.1));
}

.placeholder-video.large {
  background: linear-gradient(to bottom right, rgba(100, 150, 255, 0.2), rgba(41, 54, 131, 0.15));
}

.placeholder-video.small {
  background: linear-gradient(to bottom right, rgba(100, 150, 255, 0.12), rgba(41, 54, 131, 0.08));
}

/* ============================================
   Security Feature Card
   ============================================ */
.security-feature-card {
  background: radial-gradient(circle at top left, rgba(100, 150, 255, 0.1), rgba(100, 150, 255, 0.03));
  border: 1px solid rgba(100, 150, 255, 0.2);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.security-feature-card:hover {
  background: radial-gradient(circle at top left, rgba(100, 150, 255, 0.15), rgba(100, 150, 255, 0.05));
  border-color: rgba(100, 150, 255, 0.4);
  box-shadow: 0 15px 40px rgba(100, 150, 255, 0.15);
}

/* ============================================
   Security Feature Title
   ============================================ */
.security-feature-title {
  background-color: rgba(255, 255, 255, 0.8235294118);
  background-image: url(../img/title-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-icon-large {
  filter: drop-shadow(0 4px 12px rgba(100, 150, 255, 0.4));
}

/* ============================================
   Package Ribbon
   ============================================ */
.package-ribbon {
  background: linear-gradient(to bottom right, #4CD964, #2EBB4F);
  box-shadow: 0 4px 12px rgba(76, 217, 100, 0.4);
}

/* ============================================
   Price Value with Gradient Text
   ============================================ */
.price-value {
  background: linear-gradient(to bottom right, #4da6ff, #80c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FAQ Question
   ============================================ */
.faq-question {
  transition: all 300ms ease-in-out;
}

.faq-question:hover {
  background: rgba(100, 150, 255, 0.05);
}

/* ============================================
   Footer Title with Gradient
   ============================================ */
.footer-title {
  background: linear-gradient(to bottom right, #4da6ff, #80c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Form Elements
   ============================================ */
.form-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(100, 150, 255, 0.3);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-input:focus {
  outline: none;
  border-color: #4da6ff;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(77, 166, 255, 0.3);
}

.form-submit {
  background: linear-gradient(to bottom right, #4da6ff, #3a8cdb);
  border: none;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-submit:hover {
  background: linear-gradient(to bottom right, #5eb3ff, #4da6ff);
  box-shadow: 0 10px 30px rgba(77, 166, 255, 0.4);
}

.form-submit:active {
  transform: translateY(-1px);
}

/* ============================================
   Integration Hub Circle
   ============================================ */
.hub-circle {
  background: radial-gradient(circle at center, rgba(100, 150, 255, 0.25) 0%, rgba(41, 54, 131, 0.15) 70%);
  border: 3px solid rgba(100, 150, 255, 0.5);
  box-shadow: 0 0 40px rgba(100, 150, 255, 0.4), 0 0 80px rgba(100, 150, 255, 0.2), inset 0 0 60px rgba(100, 150, 255, 0.1);
}

.pulse-ring {
  border: 2px solid rgba(100, 150, 255, 0.6);
}

/* ============================================
   Video Labels and Play Indicators
   ============================================ */
.play-indicator {
  color: rgba(255, 255, 255, 0.6);
  transition: all 300ms;
}

.video-label {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CTA Buttons
   ============================================ */
/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 2px solid rgba(100, 150, 255, 0.5);
  border-radius: 50px;
  color: #4da6ff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

/* Sticky CTA Button */
.sticky-cta-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 2px solid rgba(100, 150, 255, 0.5);
  border-radius: 50px;
  color: #4da6ff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 480px) {
  .sticky-cta-button {
    bottom: 20px;
    padding: 14px 32px;
    font-size: 18px;
  }
}

.sticky-cta-button.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sticky-cta-button:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.7);
  transform: translate(-50%, -4px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

.sticky-cta-button:hover .sticky-cta-arrow {
  transform: translateX(5px);
}

/* Responsive styles moved to Tailwind in front-page.php (max-[480px]:) */