/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F9FAFB;
  color: #111827;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   DESIGN TOKENS
========================================= */
:root {
  --violet:        #7531AE;
  --violet-hover:  #440C72;
  --violet-light:  #F0E7FF;
  --violet-mid:    #C9AEF6;
  --text:          #111827;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --border:        #E5E7EB;
  --border-light:  #F3F4F6;
  --bg:            #F9FAFB;
  --white:         #FFFFFF;
  --surface:       #F0E7FF;   /* AirLST Light Purple */
  --dark-grey:     #262E38;   /* AirLST Dark Grey */
  --violet-blue:   #545ED3;   /* AirLST Blue */
  --violet-bright: #C9AEF6;   /* AirLST Logo Bright Purple */
  /* Grey Scale (Design System) */
  --grey-50:  #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-600: #4B5563;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --grey-900: #111827;
  /* Status */
  --success:        #1DE3D2;
  --success-light:  #E2FFFD;
  --warning:        #F59E0B;
  --danger:         #FF46ED;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --max-w:         1280px;
  --nav-h:         66px;
}

/* =========================================
   UTILITY
========================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 20px; } }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--violet); margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 14px;
  color: var(--text);
}
.section-title .light { color: var(--text-muted); font-weight: 300; }
.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7; max-width: 560px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 500; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s; border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #7531AE 0%, #545ED3 100%);
  color: #fff; padding: 10px 22px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #440C72 0%, #3a46b0 100%);
  box-shadow: 0 4px 18px rgba(117,49,174,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text); padding: 9px 22px;
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 10px 18px; font-size: 14px;
}
.btn-ghost:hover { background: var(--border-light); color: var(--text); }
.btn-lg { font-size: 15px; padding: 13px 28px; }
.btn-sm { font-size: 13px; padding: 7px 16px; }
.btn i { font-size: 13px; }

/* =========================================
   ANNOUNCEMENT BAR
========================================= */
.topbar {
  background: var(--dark-grey); color: #fff;
  text-align: center; padding: 10px 20px;
  font-size: 14px; font-weight: 400;
}
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; }
.topbar a:hover { opacity: 0.85; }

/* =========================================
   NAVIGATION
========================================= */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,250,250,0.94);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
@media(max-width:768px){ .nav-inner { padding: 0 20px; } }

.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; line-height: 1;
}
/* .nav-logo-mark removed – using inline SVG */

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none; flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  position: relative;
  display: flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 450; color: var(--text-muted);
  padding: 8px 14px; border-radius: 7px; transition: all 0.15s;
}
.nav-links > li > a:hover { color: var(--text); background: var(--border-light); }
.nav-links > li > a .fa-chevron-down { font-size: 9px; transition: transform 0.2s; }
.nav-links > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px;
  box-shadow: var(--shadow-lg); min-width: 260px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
/* Unsichtbare Brücke um Gap zu überbrücken */
.nav-links > li > a[aria-haspopup]::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.nav-links > li:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-section-title {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light);
  padding: 8px 10px 4px;
}
.dropdown a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 10px; border-radius: var(--radius-sm);
  transition: background 0.15s; color: var(--text);
}
.dropdown a:hover { background: var(--surface); }
.dropdown a .dd-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--violet-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--violet); font-size: 12px;
  margin-top: 1px;
}
.dropdown a .dd-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown a .dd-title { font-size: 14px; font-weight: 500; color: var(--text); }
.dropdown a .dd-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.dropdown hr { border: none; border-top: 1px solid var(--border-light); margin: 6px 0; }

.dropdown-wide { 
  min-width: 520px; 
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dropdown-title-full {
  width: 100%;
}
.dropdown-cols {
  display: flex;
  gap: 8px;
}
.dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.nav-lang {
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  padding: 6px 10px; border-radius: 6px; cursor: pointer;
  transition: background 0.15s;
}
.nav-lang:hover { background: var(--border-light); color: var(--text); }

/* Mobile nav */
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text); padding: 4px;
}
.nav-mobile-actions { display: none !important; }
@media(max-width: 1000px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-actions { display: none; }
  
  /* Mobile menu open state */
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 16px 20px 24px;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.nav-open > li { width: 100%; }
  .nav-links.nav-open > li > a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
    justify-content: space-between;
  }
  .nav-links.nav-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 8px 16px;
    display: none;
  }
  .nav-links.nav-open > li.dropdown-open .dropdown {
    display: block;
  }
  .nav-links.nav-open .dropdown a {
    padding: 10px 0;
  }
  
  /* Mobile menu actions - NUR wenn Menü offen */
  .nav-links.nav-open .nav-mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    list-style: none;
  }
  .nav-mobile-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .nav-mobile-actions .nav-lang {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    display: block;
  }
}

/* =========================================
   HERO
========================================= */
.hero {
  padding: 88px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(117,49,174,0.07) 0%, transparent 65%);
  pointer-events: none;
}
/* Moving Gradient Orbs - kaum sichtbar */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.15;
  animation: orbFloat 30s ease-in-out infinite;
}
.gradient-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(117,49,174,0.08) 0%, rgba(117,49,174,0.02) 40%, transparent 70%);
  top: -250px;
  left: -150px;
  animation-delay: 0s;
}
.gradient-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(84,94,211,0.06) 0%, rgba(84,94,211,0.015) 40%, transparent 70%);
  top: 50px;
  right: -200px;
  animation-delay: -7s;
  animation-duration: 35s;
}
.gradient-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147,112,219,0.05) 0%, rgba(147,112,219,0.01) 40%, transparent 70%);
  bottom: -150px;
  left: 25%;
  animation-delay: -14s;
  animation-duration: 32s;
}
@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  25% {
    transform: translate(25px, -30px) scale(1.03);
    opacity: 0.18;
  }
  50% {
    transform: translate(-15px, 20px) scale(0.97);
    opacity: 0.12;
  }
  75% {
    transform: translate(20px, 25px) scale(1.01);
    opacity: 0.16;
  }
}
/* Gradient Mesh Background */
.gradient-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 90% 60% at 15% 30%, rgba(117,49,174,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(84,94,211,0.025) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(147,112,219,0.02) 0%, transparent 50%);
  animation: meshShift 45s ease-in-out infinite;
  pointer-events: none;
}
@keyframes meshShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02) rotate(0.3deg);
  }
}

/* Section Gradient (reusable) */
.has-gradient {
  position: relative;
  overflow: hidden;
}
.has-gradient .container {
  position: relative;
  z-index: 2;
}
.section-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.gradient-orb-alt-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(117,49,174,0.04) 0%, rgba(117,49,174,0.01) 40%, transparent 70%);
  top: -200px;
  right: -150px;
  animation-delay: -5s;
  animation-duration: 36s;
}
.gradient-orb-alt-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(84,94,211,0.03) 0%, rgba(84,94,211,0.008) 40%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -12s;
  animation-duration: 32s;
}
/* Inverted colors for light sections */
.gradient-orb-light-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(117,49,174,0.025) 0%, rgba(117,49,174,0.005) 50%, transparent 70%);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  animation-delay: -3s;
  animation-duration: 34s;
}
.gradient-orb-light-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147,112,219,0.03) 0%, rgba(147,112,219,0.008) 50%, transparent 70%);
  top: 10%;
  right: -150px;
  animation-delay: -10s;
  animation-duration: 30s;
}

/* Strong Gradient for App Builder Teaser */
@keyframes orbFloatStrong {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(40px, -50px) scale(1.08);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, 35px) scale(0.94);
    opacity: 0.45;
  }
  75% {
    transform: translate(35px, 40px) scale(1.04);
    opacity: 0.55;
  }
}
.gradient-orb-strong-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(117,49,174,0.25) 0%, rgba(117,49,174,0.08) 40%, transparent 70%);
  top: -300px;
  left: -200px;
  animation: orbFloatStrong 22s ease-in-out infinite;
  filter: blur(80px);
  opacity: 0.5;
}
.gradient-orb-strong-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(84,94,211,0.2) 0%, rgba(84,94,211,0.06) 40%, transparent 70%);
  top: 100px;
  right: -250px;
  animation: orbFloatStrong 28s ease-in-out infinite;
  animation-delay: -8s;
  filter: blur(80px);
  opacity: 0.5;
}
.gradient-orb-strong-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(147,112,219,0.18) 0%, rgba(147,112,219,0.05) 40%, transparent 70%);
  bottom: -200px;
  left: 30%;
  animation: orbFloatStrong 25s ease-in-out infinite;
  animation-delay: -15s;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--violet-light); color: var(--violet);
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 100px; margin-bottom: 28px;
  letter-spacing: 0.3px;
  border: 1px solid var(--violet-mid);
  position: relative;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.badge-dot {
  width: 7px; height: 7px; background: #7531AE;
  border-radius: 50%;
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.75); }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 700;
  letter-spacing: -2.5px; line-height: 1.06; margin-bottom: 6px;
  color: var(--text);
}
.hero h1 .light {
  display: block; color: var(--text-muted); font-weight: 300;
}
.hero-sub {
  font-size: 18px; color: var(--text-muted); max-width: 580px;
  margin: 22px auto 38px; line-height: 1.7; font-weight: 400;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.hero-actions .btn-lg { font-size: 15px; }

.hero-trust {
  margin-top: 52px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.hero-trust-item i { color: var(--violet); font-size: 12px; }

/* =========================================
   CUSTOMER SHOWCASE CAROUSEL
========================================= */
.showcase-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
}
.showcase-header {
  text-align: center;
  margin-bottom: 48px;
}
.showcase-header .section-label {
  color: rgba(255,255,255,0.5);
}
.showcase-header .section-title {
  color: #fff;
}
.showcase-header .section-title .light {
  color: rgba(255,255,255,0.5);
}

/* Carousel Container */
.showcase-carousel {
  position: relative;
}
.showcase-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.showcase-slide.active {
  display: block;
  opacity: 1;
}

.showcase-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0 40px;
}

/* Device Base */
.device {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.device:hover { transform: translateY(-8px) scale(1.02); }

/* Phone Frame */
.phone-frame {
  width: 220px;
  height: 460px;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 50%, #2c2c2e 100%);
  border-radius: 40px;
  padding: 10px;
  position: relative;
  box-shadow: 
    0 50px 100px -20px rgba(0,0,0,0.5),
    0 25px 50px -15px rgba(0,0,0,0.4),
    inset 0 1px 1px rgba(255,255,255,0.08);
}
.phone-frame-center {
  width: 260px;
  height: 540px;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
.phone-notch::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #1a3040 30%, #0a1520 100%);
  border-radius: 50%;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
}

/* Case Screen */
.case-screen {
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.3) 0%, 
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.85) 100%);
}
.case-overlay.overlay-green {
  background: linear-gradient(180deg, 
    rgba(0,60,30,0.4) 0%, 
    rgba(0,40,20,0.6) 40%,
    rgba(0,20,10,0.9) 100%);
}
.case-overlay.overlay-orange {
  background: linear-gradient(180deg, 
    rgba(60,30,0,0.4) 0%, 
    rgba(40,20,0,0.6) 40%,
    rgba(20,10,0,0.9) 100%);
}
.case-overlay.overlay-blue {
  background: linear-gradient(180deg, 
    rgba(0,30,60,0.4) 0%, 
    rgba(0,20,40,0.6) 40%,
    rgba(0,10,20,0.9) 100%);
}
.case-overlay.overlay-teal {
  background: linear-gradient(180deg, 
    rgba(0,50,60,0.4) 0%, 
    rgba(0,35,45,0.6) 40%,
    rgba(0,15,20,0.9) 100%);
}
.case-overlay.overlay-dark {
  background: linear-gradient(180deg, 
    rgba(20,20,30,0.6) 0%, 
    rgba(15,15,25,0.75) 40%,
    rgba(10,10,15,0.95) 100%);
}

.case-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 50px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.case-content-main {
  justify-content: center;
}
.case-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.case-logo {
  object-fit: contain;
  max-width: 140px;
  filter: brightness(0) invert(1);
}
.case-logo-dark {
  filter: none;
}
.case-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
  line-height: 1.3;
}
.case-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 200px;
}
.case-stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.case-stat {
  text-align: center;
}
.case-stat .stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.case-stat .stat-label {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot:hover {
  background: rgba(255,255,255,0.4);
}
.carousel-dot.active {
  background: var(--violet);
  transform: scale(1.2);
}

/* Showcase Responsive */
@media(max-width: 900px) {
  .showcase-wrapper { gap: 16px; }
  .phone-frame {
    width: 180px;
    height: 380px;
    border-radius: 32px;
    padding: 8px;
  }
  .phone-frame-center {
    width: 220px;
    height: 460px;
  }
  .phone-screen { border-radius: 26px; }
  .phone-notch { width: 70px; height: 22px; top: 10px; }
  .case-content { padding: 40px 16px 24px; }
  .case-title { font-size: 14px; }
  .case-stats { gap: 12px; }
  .case-stat .stat-num { font-size: 16px; }
}
@media(max-width: 700px) {
  .showcase-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .device-left, .device-right { display: none; }
  .phone-frame-center {
    width: 260px;
    height: 540px;
  }
  .device:hover { transform: none; }
}

/* =========================================
   LOGO MARQUEE
========================================= */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  background: var(--white);
  overflow: hidden;
}
.logos-label {
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 28px;
}
.marquee-outer { overflow: hidden; position: relative; }
.marquee-outer::before,
.marquee-outer::after {
  content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 2;
}
.marquee-outer::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo {
  /* Einheitliche Darstellung: feste Hoehe ueberschreibt die height-Attribute
     im Markup, max-width faengt sehr breite Wortmarken ein. */
  height: 22px;
  max-height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.marquee-logo:hover { 
  opacity: 1; 
  filter: grayscale(0%);
}

/* =========================================
   INTRO SECTION
========================================= */
.intro-section {
  padding: 96px 0;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media(max-width:860px){ .intro-grid { grid-template-columns:1fr; gap:48px; } }
.intro-copy .section-sub { margin-top: 20px; }
.intro-contact {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.contact-row a { color: var(--text); font-weight: 500; transition: color 0.2s; }
.contact-row a:hover { color: var(--violet); }
.contact-row i { color: var(--violet); width: 16px; text-align: center; }

.intro-avatar {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.avatar-img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  background: var(--violet-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--violet);
}
.avatar-img img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.avatar-name { font-size: 15px; font-weight: 600; color: var(--text); }
.avatar-role { font-size: 13px; color: var(--text-muted); }

/* Cards grid on the right */
.intro-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.intro-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  transition: all 0.25s; cursor: pointer;
}
.intro-card:hover {
  border-color: rgba(117,49,174,0.3);
  box-shadow: 0 4px 20px rgba(117,49,174,0.08);
  transform: translateY(-2px);
}
.intro-card-icon {
  width: 38px; height: 38px; background: var(--violet-light);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; color: var(--violet); font-size: 15px;
  margin-bottom: 14px;
}
.intro-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.intro-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.intro-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--violet);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 10px;
  transition: gap 0.15s;
}
.intro-card:hover .intro-card-link { gap: 7px; }

/* =========================================
   FEATURES / CORE FUNCTIONS
========================================= */
.features-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.features-header { margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width:1000px){ .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:550px){ .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--violet-mid);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--violet-light);
  border: 1px solid var(--violet-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.2s;
  text-decoration: none;
}
.feature-tag i { font-size: 10px; transition: transform 0.2s; }
.feature-card:hover .feature-tag { gap: 10px; }
.feature-card:hover .feature-tag i { transform: translateX(2px); }

/* =========================================
   BACKEND TEASER
========================================= */
.backend-teaser {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.backend-teaser-content {
  padding-right: 20px;
}
.backend-teaser-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.backend-teaser-content h3 .light {
  color: var(--violet);
  font-weight: 400;
}
.backend-teaser-content > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.backend-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.backend-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.backend-features i {
  color: #22c55e;
  font-size: 12px;
}

/* Dashboard Window Mock */
.dashboard-window {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.dashboard-header .window-dots {
  display: flex;
  gap: 5px;
}
.dashboard-header .window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}
.dashboard-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.dashboard-nav .nav-icon {
  color: var(--text-light);
  font-size: 12px;
}
.dashboard-nav .nav-item {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dashboard-nav .nav-item.active {
  color: var(--violet);
}
.dashboard-nav .nav-item i {
  font-size: 10px;
}

/* Dashboard Body */
.dashboard-body {
  display: flex;
}
.dashboard-sidebar {
  width: 48px;
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sidebar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 12px;
  transition: all 0.2s;
}
.sidebar-icon.active {
  background: var(--violet-light);
  color: var(--violet);
}
.dashboard-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dashboard-title .event-date {
  font-size: 10px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dashboard-title h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}
.dashboard-title h4 span {
  color: var(--violet);
  font-weight: 400;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 12px;
}
.stat-box {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.stat-box .stat-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.stat-box .stat-sub {
  font-size: 9px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}
.stat-box .stat-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-box .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.stat-box .stat-number span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}
.stat-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  position: relative;
}
.stat-ring.ring-green {
  background: conic-gradient(#22c55e 68%, #e5e7eb 0);
  color: var(--text);
}
.stat-ring.ring-green::before {
  content: '68%';
  position: absolute;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.stat-ring.ring-purple {
  background: conic-gradient(var(--violet) 11%, #e5e7eb 0);
  color: var(--text);
}
.stat-ring.ring-purple::before {
  content: '11%';
  position: absolute;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.stat-box .stat-change {
  font-size: 9px;
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.stat-box .stat-change.positive { color: #22c55e; }
.stat-box .stat-change.neutral { color: var(--text-light); }

/* Quick Actions */
.quick-actions {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.actions-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 9px;
  color: var(--text-muted);
}
.action-item i {
  font-size: 12px;
  color: var(--text-light);
}

/* Promo Card */
.promo-card {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
}
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.promo-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.promo-desc {
  font-size: 10px;
  opacity: 0.85;
  line-height: 1.4;
}

/* Backend Teaser Responsive */
@media(max-width: 1000px) {
  .backend-teaser {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .backend-teaser-content {
    padding-right: 0;
  }
}
@media(max-width: 600px) {
  .backend-teaser {
    padding: 24px;
  }
  .backend-teaser-content h3 {
    font-size: 24px;
  }
  .stats-row {
    flex-direction: column;
  }
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Features with screenshots - tabs */
.feature-tabs { margin-top: 60px; }
.tab-nav {
  display: flex; gap: 4px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px; overflow-x: auto;
}
.tab-btn {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  padding: 10px 16px; border-bottom: 2px solid transparent;
  transition: all 0.2s; white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
}
.tab-btn i { font-size: 12px; }
.tab-btn.active { color: var(--violet); border-bottom-color: var(--violet); }
.tab-btn:hover:not(.active) { color: var(--text); }

.tab-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width:860px){ .tab-panels { grid-template-columns:1fr; } }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width:860px){ .tab-panel.active { grid-template-columns:1fr; } }

.tab-screenshot {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  aspect-ratio: 16/10; object-fit: cover; width: 100%;
  background: var(--border-light);
}
.tab-screenshot img { width: 100%; height: 100%; object-fit: cover; }

.tab-content h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.7px; margin-bottom: 12px; }
.tab-content p  { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.tab-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--violet);
  transition: gap 0.15s;
}
.tab-link:hover { gap: 10px; }

/* =========================================
   USE CASES
========================================= */
.usecases-section {
  padding: 96px 0;
}
.usecases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
@media(max-width:860px){ .usecases-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .usecases-grid { grid-template-columns: 1fr; } }

.usecase-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.25s; cursor: pointer;
  display: flex; flex-direction: column;
}
.usecase-card:hover {
  border-color: rgba(117,49,174,0.3);
  box-shadow: 0 4px 24px rgba(117,49,174,0.08);
  transform: translateY(-3px);
}
.usecase-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--violet-light); display: flex; align-items: center;
  justify-content: center; color: var(--violet); font-size: 16px; margin-bottom: 16px;
}
.usecase-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.usecase-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.usecase-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--violet);
  margin-top: 16px; transition: gap 0.15s;
}
.usecase-card:hover .usecase-cta { gap: 8px; }

/* =========================================
   CASE STUDIES
========================================= */
.cases-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cases-slider {
  margin-top: 52px; position: relative;
}
.cases-track {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media(max-width:860px){ .cases-track { grid-template-columns: 1fr; } }

.case-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(117,49,174,0.2);
}
.case-img {
  width: 100%; height: 200px; object-fit: cover; background: var(--border-light);
  overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.case-card:hover .case-img img { transform: scale(1.04); }
.case-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.case-partner {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 10px;
}
.case-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 10px; }
.case-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.case-stats {
  display: flex; gap: 24px; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.case-stat-num {
  font-size: 22px; font-weight: 700; letter-spacing: -0.7px; color: var(--text);
  line-height: 1;
}
.case-stat-num span { color: var(--violet); }
.case-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* =========================================
   STATS
========================================= */
/* =========================================
   APP BUILDER TEASER
========================================= */
.app-builder-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #faf8fc 0%, #f5f3f8 100%);
}
.app-builder-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.app-builder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.app-builder-text {
}
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(117,49,174,0.3);
}
.app-builder-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.app-builder-text h2 .light {
  color: var(--violet);
  font-weight: 400;
}
.app-builder-text > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Builder Steps - Horizontal wie im Bild */
.builder-steps {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.builder-step {
  flex: 1;
  padding: 20px 24px;
  background: #fff;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
}
.builder-step:last-child {
  border-right: none;
}
.builder-step.active {
  background: var(--violet-light);
}
.builder-step.active .step-num,
.builder-step.active .step-title {
  color: var(--violet);
}
.builder-step .step-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
}
.builder-step .step-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.builder-step .step-desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Builder Window Mock */
.builder-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
}
.builder-header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.window-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}
.window-dots span:first-child { background: #d1d5db; }
.window-dots span:nth-child(2) { background: #d1d5db; }
.window-dots span:last-child { background: #d1d5db; }
.builder-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-divider {
  color: var(--text-light);
}
.nav-project {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.publish-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.publish-btn i { font-size: 10px; }

/* Builder Body */
.builder-body {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  min-height: 520px;
}
.builder-panel {
  padding: 24px;
  border-right: 1px solid var(--border);
}
.builder-panel.panel-right {
  border-right: none;
  border-left: 1px solid var(--border);
}
.panel-title {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

/* Template List */
.template-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.template-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.template-item.active {
  background: var(--violet-light);
  color: var(--violet);
  border: 1px solid var(--violet-mid);
}
.template-icon { font-size: 14px; }

/* Module List */
.module-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.module-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.module-dot {
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
}

/* Phone Preview */
.builder-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: 40px;
}
.phone-mock {
  width: 240px;
  height: 480px;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 50%, #2c2c2e 100%);
  border-radius: 40px;
  padding: 10px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.phone-notch-small {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.phone-skeleton {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 32px;
  padding: 55px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-box {
  background: #f0f0f5;
  border-radius: 8px;
}
.skeleton-header {
  height: 90px;
  border: 2px dashed #e0e0e8;
  background: transparent;
  border-radius: 12px;
}
.skeleton-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.loader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid #e8e4ed;
  border-top-color: #9b6dd1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.skeleton-line {
  height: 14px;
  width: 85%;
}
.skeleton-line.short {
  width: 60%;
}
.skeleton-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.skeleton-card {
  flex: 1;
  height: 70px;
}
.skeleton-button {
  height: 48px;
  margin-top: auto;
}

/* Design System Panel */
.design-group {
  margin-bottom: 24px;
}
.design-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.color-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-light);
  border-radius: 10px;
}
.color-swatch {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #9b6dd1 0%, #7531AE 100%);
  border-radius: 10px;
}
.color-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.color-value {
  font-size: 12px;
  color: var(--text-muted);
}
.typo-box {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
}
.typo-name {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.typo-desc {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.5;
}
.props-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prop-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prop-row:last-child { border: none; padding-bottom: 0; }
.prop-value {
  font-weight: 700;
  color: var(--text);
}

/* App Builder Responsive */
@media(max-width: 1100px) {
  .builder-body { grid-template-columns: 180px 1fr 200px; }
}
@media(max-width: 1000px) {
  .app-builder-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media(max-width: 900px) {
  .app-builder-text h2 { font-size: 34px; }
  .builder-body {
    grid-template-columns: 1fr;
  }
  .builder-panel { display: none; }
  .builder-preview { min-height: 420px; }
}
@media(max-width: 650px) {
  .app-builder-text h2 { font-size: 28px; }
  .builder-steps { 
    flex-direction: column;
    border-radius: 10px;
  }
  .builder-step { 
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .builder-step:last-child { border-bottom: none; }
}

/* =========================================
   STATS SECTION
========================================= */
.stats-section { padding: 96px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 52px;
}
@media(max-width:860px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all 0.25s;
}
.stat-card:hover {
  border-color: rgba(117,49,174,0.3);
  box-shadow: 0 4px 24px rgba(117,49,174,0.07);
  transform: translateY(-2px);
}
.stat-num {
  font-size: 42px; font-weight: 700; letter-spacing: -2px;
  color: var(--text); line-height: 1; margin-bottom: 8px;
}
.stat-num span { color: var(--violet); }
.stat-label { font-size: 14px; color: var(--text-muted); line-height: 1.4; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 52px;
}
@media(max-width:760px){ .testimonials-grid { grid-template-columns:1fr; } }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: rgba(117,49,174,0.3);
  box-shadow: 0 4px 24px rgba(117,49,174,0.06);
}
.t-stars { color: var(--violet); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.t-logo {
  height: 22px; margin-bottom: 16px;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.5px;
}
.t-quote {
  font-size: 15px; color: var(--text); line-height: 1.7;
  margin-bottom: 22px; font-style: italic; font-weight: 300;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--violet-light); display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 600; color: var(--violet);
  flex-shrink: 0;
}
.t-name  { font-size: 13px; font-weight: 600; color: var(--text); }
.t-role  { font-size: 11px; color: var(--text-muted); }

/* =========================================
   DRAG & DROP BUILDER
========================================= */
.builder-section { padding: 96px 0; }
.builder-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media(max-width:860px){ .builder-inner { grid-template-columns:1fr; gap:48px; } }

/* Mock UI */
.builder-mock {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mock-titlebar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 11px 16px; display: flex; align-items: center; gap: 7px;
}
.tdot { width: 9px; height: 9px; border-radius: 50%; }
.mock-layout {
  display: grid; grid-template-columns: 150px 1fr; height: 280px;
}
.mock-sidebar {
  background: var(--white); border-right: 1px solid var(--border);
  padding: 12px; display: flex; flex-direction: column; gap: 3px;
}
.ms-label {
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); padding: 8px 6px 4px;
}
.ms-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: 6px; font-size: 11px; color: var(--text-muted);
  cursor: pointer; transition: background 0.15s;
}
.ms-item:hover { background: var(--surface); color: var(--violet); }
.ms-item.active { background: var(--violet-light); color: var(--violet); font-weight: 500; }
.ms-item i, .ms-item:hover i, .ms-item.active i { color: var(--violet); font-size: 11px; }
.ms-item:not(.active) i { color: var(--text-light); }

.mock-canvas {
  padding: 14px; display: flex; flex-direction: column; gap: 7px; overflow: hidden;
}
.mc-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 7px; padding: 9px 12px; font-size: 11px;
  color: var(--text-muted); display: flex; align-items: center; gap: 9px;
  cursor: grab; transition: all 0.2s; user-select: none;
}
.mc-block:hover {
  border-color: var(--violet);
  box-shadow: 0 2px 8px rgba(117,49,174,0.1);
  transform: translateX(2px);
}
.mc-block.active { border-color: var(--violet); background: var(--surface); color: var(--violet); }
.mc-block i { font-size: 12px; color: var(--text-light); }
.mc-block.active i { color: var(--violet); }
.mc-handle { margin-left: auto; display: flex; flex-direction: column; gap: 2px; opacity: 0.25; }
.mc-handle span { display: block; width: 12px; height: 1.5px; background: currentColor; border-radius: 1px; }

/* Builder copy */
.builder-copy .section-sub { margin-top: 20px; }
.checklist { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-muted); }
.check-icon {
  width: 22px; height: 22px; background: var(--violet-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--violet); font-size: 10px;
}

/* =========================================
   MAGAZINE / BLOG
========================================= */
.magazine-section { padding: 96px 0; }
.magazine-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
@media(max-width:860px){ .magazine-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .magazine-grid { grid-template-columns: 1fr; } }

.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.25s;
}
.article-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  border-color: rgba(117,49,174,0.2);
}
.article-img {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--border-light); overflow: hidden;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.article-card:hover .article-img img { transform: scale(1.04); }
.article-body { padding: 22px 20px; }
.article-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--violet);
  background: var(--violet-light); padding: 3px 8px; border-radius: 4px;
  margin-bottom: 10px;
}
.article-body h3 { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.article-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.article-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; font-size: 12px; color: var(--text-light);
}
.article-read {
  display: flex; align-items: center; gap: 4px; font-weight: 500;
  color: var(--violet); font-size: 12px; transition: gap 0.15s;
}
.article-card:hover .article-read { gap: 7px; }

/* =========================================
   CTA FINAL
========================================= */
.cta-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 60px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
@media(max-width:860px){ .cta-inner { grid-template-columns:1fr; gap:32px; padding: 40px 32px; } }
.cta-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(117,49,174,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner h2 {
  font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -1.2px;
  line-height: 1.15; margin-bottom: 12px;
}
.cta-inner h2 .light { color: var(--text-muted); font-weight: 300; }
.cta-inner p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; flex-shrink: 0; }
.cta-note { font-size: 11px; color: var(--text-light); text-align: center; }
.cta-contact {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; align-items: center;
}
.cta-contact a {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--text-muted); font-weight: 500; transition: color 0.2s;
}
.cta-contact a:hover { color: var(--violet); }
.cta-contact a i { font-size: 13px; color: var(--violet); }

/* =========================================
   PRICING PAGE
========================================= */

/* Pricing Hero */
.pricing-hero {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
  text-align: center;
}
.pricing-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pricing-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Pricing Tabs */
.pricing-tabs {
  display: inline-flex;
  background: var(--grey-100);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.pricing-tab {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-tab:hover {
  color: var(--text);
}
.pricing-tab.active {
  background: #fff;
  color: var(--violet);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Pricing Section */
.pricing-section {
  padding: 48px 0 96px;
  background: #fff;
}

/* Pricing Panels */
.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Price Card */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  border-color: var(--violet-mid);
  box-shadow: 0 8px 32px rgba(117,49,174,0.1);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
}
.price-card-popular {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(117,49,174,0.15);
}

/* Price Header */
.price-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.price-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.price-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Price Meta */
.price-meta {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-meta li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-meta li i {
  color: #10b981;
  font-size: 12px;
}

/* Price Billing */
.price-billing {
  background: var(--grey-50);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-billing span {
  font-size: 13px;
  color: var(--text-muted);
}
.price-vat {
  font-size: 11px !important;
  color: var(--text-light) !important;
  margin-top: 8px;
  line-height: 1.5;
}

/* Price Features Accordion */
.price-features {
  margin-top: 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}
.price-features summary {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  background: var(--grey-50);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-features summary::-webkit-details-marker {
  display: none;
}
.price-features summary::after {
  content: '+';
  font-size: 16px;
  color: var(--text-light);
  transition: transform 0.2s;
}
.price-features[open] summary::after {
  content: '−';
}
.price-features ul {
  list-style: none !important;
  padding: 16px !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}
.price-features ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.price-features ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
}

/* Price Note */
.price-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 12px;
  background: var(--grey-50);
  border-radius: 8px;
}
.price-note strong {
  color: var(--text-muted);
}

/* Enterprise Card */
.price-card-enterprise {
  background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
  border-color: var(--violet-mid);
}
.price-card-enterprise .price-header {
  border-bottom: none;
  padding-bottom: 0;
}
.price-amount-large {
  font-size: 28px;
  font-weight: 800;
  color: var(--violet);
  display: block;
  margin-bottom: 4px;
}
.price-request {
  font-size: 14px;
  color: var(--text-muted);
}
.enterprise-desc {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
}
.enterprise-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.enterprise-cta {
  font-size: 14px;
  color: var(--text);
  margin: 24px 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.pricing-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-cta-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-cta-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Logos Section on Pricing */
.logos-section {
  padding: 48px 0;
  background: #fff;
}
.logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* Service Packages Section */
.service-packages-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.service-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.service-header .section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Service Card */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--violet-mid);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}
.service-card-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--violet);
  white-space: nowrap;
}
.service-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Service Details Accordion */
.service-details {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.service-details summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  cursor: pointer;
  list-style: none;
}
.service-details summary::-webkit-details-marker {
  display: none;
}
.service-content {
  padding-top: 16px;
}
.service-content h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin: 16px 0 10px;
}
.service-content h4:first-child {
  margin-top: 0;
}
.service-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-content ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--violet);
  border-radius: 50%;
}
.service-content ul.not-included li::before {
  background: var(--text-light);
}
.service-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.service-content .btn {
  margin-top: 16px;
}

/* Guest Packages */
.guest-packages {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.guest-packages-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.guest-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.guest-package {
  padding: 20px;
  background: var(--grey-50);
  border-radius: 12px;
}
.guest-package h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.guest-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--violet);
  display: block;
  margin-bottom: 8px;
}
.guest-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.guest-package p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Platform Fee */
.platform-fee {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.platform-fee-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.platform-fee-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.platform-fee-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Final CTA */
.pricing-final-cta {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.final-cta-card {
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.final-cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.final-cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.final-cta-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border: none;
}
.final-cta-primary h3,
.final-cta-primary p {
  color: #fff;
}
.final-cta-primary p {
  opacity: 0.9;
}

/* Pricing Responsive */
@media(max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guest-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 800px) {
  .pricing-hero {
    padding: 100px 0 40px;
  }
  .pricing-tabs {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .guest-packages-grid {
    grid-template-columns: 1fr;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FOOTER
========================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 56px;
  margin-bottom: 0;
}
@media(max-width:1200px){ .footer-grid { gap: 56px; } }
@media(max-width:1040px){ .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px 40px; } }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  margin-top: 14px; max-width: 280px;
}
.footer-contact-detail {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--text-muted); margin-top: 12px;
}
.footer-contact-detail i { color: var(--violet); margin-top: 3px; font-size: 12px; }
.footer-contact-detail a { color: var(--text); font-weight: 500; transition: color 0.2s; }
.footer-contact-detail a:hover { color: var(--violet); }

.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 14px; color: var(--text-muted); transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }

.footer-apps {
  display: flex; flex-direction: column; gap: 8px; margin-top: 16px;
}
.app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: var(--white); padding: 8px 14px;
  border-radius: 8px; font-size: 11px; font-weight: 500; transition: background 0.2s;
}
.app-badge:hover { background: var(--violet); }
.app-badge i { font-size: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-light); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px; color: var(--text-light); transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-muted); }

/* =========================================
   SCROLL ANIMATIONS
========================================= */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* =========================================
   PAGE HERO (Subpages)
========================================= */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #faf9fc 0%, #fff 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.page-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
@media(max-width: 900px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-content h1 { font-size: 32px; }
  .page-hero-visual { order: -1; }
}

/* =========================================
   IMAGE FEATURE CARDS (Subpages)
========================================= */
.image-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.image-feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.image-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.image-feature-card .card-img {
  height: 160px;
  overflow: hidden;
  background: var(--bg-light);
}
.image-feature-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.image-feature-card:hover .card-img img {
  transform: scale(1.05);
}
.image-feature-card .card-content {
  padding: 20px;
}
.image-feature-card .card-badge {
  display: inline-block;
  background: var(--violet-light);
  color: var(--violet);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.image-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.image-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
@media(max-width: 1000px) {
  .image-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 550px) {
  .image-features-grid { grid-template-columns: 1fr; }
}

/* =========================================
   EDITOR SECTION
========================================= */
.editor-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.editor-content h2 {
  font-size: 32px;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.editor-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.check-list {
  list-style: none;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}
.check-list i {
  color: #22c55e;
  font-size: 14px;
}
.editor-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
@media(max-width: 900px) {
  .editor-grid { grid-template-columns: 1fr; gap: 40px; }
  .editor-visual { order: -1; }
  .editor-content h2 { font-size: 26px; }
}

/* =========================================
   ANALYTICS SECTION
========================================= */
.analytics-section {
  padding: 96px 0;
  background: #fff;
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.analytics-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.analytics-stats {
  margin-bottom: 24px;
}
.stat-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border: none; }
.stat-label {
  flex: 1;
  font-size: 14px;
  color: var(--text-muted);
}
.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-right: 16px;
}
.stat-percent {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  min-width: 50px;
  text-align: center;
}
.stat-percent.positive { background: #dcfce7; color: #166534; }
.stat-percent.neutral { background: #f3f4f6; color: #6b7280; }
.analytics-chart {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
}
.analytics-chart .chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  gap: 12px;
}
.analytics-chart .chart-bar {
  flex: 1;
  background: #e5e7eb;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.analytics-chart .chart-bar.active {
  background: linear-gradient(180deg, var(--violet) 0%, var(--violet-dark) 100%);
}
.analytics-chart .chart-bar span {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 8px;
  position: absolute;
  bottom: -22px;
}
.analytics-content h2 {
  font-size: 32px;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.analytics-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.analytics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.analytics-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.analytics-feature i {
  width: 36px;
  height: 36px;
  background: var(--violet-light);
  color: var(--violet);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
@media(max-width: 900px) {
  .analytics-grid { grid-template-columns: 1fr; gap: 40px; }
  .analytics-content h2 { font-size: 26px; }
}

/* =========================================
   RELATED FEATURES
========================================= */
.related-features-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.related-icon {
  width: 52px;
  height: 52px;
  background: var(--violet-light);
  color: var(--violet);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.related-card h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.related-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 6px;
}
.related-link i {
  font-size: 12px;
  transition: transform 0.2s;
}
.related-card:hover .related-link i {
  transform: translateX(4px);
}
@media(max-width: 1000px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-features-section { padding: 64px 0; }
}

/* =========================================
   FAQ HOME SECTION
========================================= */
.faq-home-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.faq-home-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-home-content .section-title {
  margin-bottom: 24px;
}
.faq-intro p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.faq-intro a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
}
.faq-intro a:hover {
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-home-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-home-accordion ul {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  transition: all 0.2s;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  color: var(--violet);
}
.faq-question i {
  font-size: 12px;
  color: var(--text-light);
  transition: transform 0.3s;
}
.faq-item[open] .faq-question i {
  transform: rotate(180deg);
  color: var(--violet);
}
.faq-answer {
  padding: 0 24px 24px;
  animation: fadeInAnswer 0.3s ease;
}
@keyframes fadeInAnswer {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 16px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.faq-answer ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  list-style: none !important;
  list-style-type: none !important;
  display: block;
}
.faq-answer ul li::marker {
  content: none;
  display: none;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 50%;
}
.faq-answer a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
}
.faq-answer a:hover {
  text-decoration: underline;
}

/* FAQ Home Responsive */
@media(max-width: 1000px) {
  .faq-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media(max-width: 600px) {
  .faq-home-section {
    padding: 64px 0;
  }
  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* =========================================
   EVENT MAGAZIN SECTION
========================================= */
.magazin-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #0f0f14 0%, #1a1a24 100%);
  position: relative;
  overflow: hidden;
}
.magazin-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,49,174,0.3), transparent);
}
.magazin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.magazin-header .section-label {
  color: var(--violet-mid);
}
.magazin-header .section-title {
  color: #fff;
  margin-bottom: 8px;
}
.magazin-header .section-sub {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}
.btn-light {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* Magazin Grid */
.magazin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.magazin-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.magazin-card:hover {
  transform: translateY(-8px);
  border-color: rgba(117,49,174,0.4);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(117,49,174,0.2);
}
.magazin-card a {
  display: block;
}
.magazin-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.magazin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.magazin-card:hover .magazin-card-img img {
  transform: scale(1.08);
}
.magazin-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}
.magazin-card-content {
  padding: 24px;
}
.magazin-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.magazin-card:hover .magazin-card-content h3 {
  color: var(--violet-mid);
}
.magazin-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.magazin-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.magazin-meta .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.magazin-meta .read-more i {
  transition: transform 0.3s;
}
.magazin-card:hover .magazin-meta .read-more i {
  transform: translateX(4px);
}
.magazin-meta .read-time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.magazin-meta .read-time i {
  font-size: 11px;
}

/* Featured Card (first one) */
.magazin-card-featured {
  grid-row: span 1;
}

/* Magazin Responsive */
@media(max-width: 1000px) {
  .magazin-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .magazin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .magazin-card-featured {
    grid-column: span 2;
  }
  .magazin-card-featured .magazin-card-img {
    height: 280px;
  }
}
@media(max-width: 700px) {
  .magazin-section {
    padding: 64px 0;
  }
  .magazin-grid {
    grid-template-columns: 1fr;
  }
  .magazin-card-featured {
    grid-column: span 1;
  }
  .magazin-card-featured .magazin-card-img {
    height: 200px;
  }
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  padding: 64px 0;
  background: #fff;
}
.cta-box {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%);
  border-radius: 20px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-content h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}
.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.btn-white {
  background: #fff;
  color: var(--violet);
}
.btn-white:hover {
  background: #f8f9fb;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
@media(max-width: 900px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
  .cta-content h2 { font-size: 24px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question i {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media(max-width: 600px) {
  .faq-section { padding: 64px 0; }
  .faq-question { font-size: 15px; padding: 16px 20px; }
  .faq-answer { padding: 0 20px 16px; }
}

/* =========================================
   PRICING PAGE STYLES
========================================= */

/* Pricing Hero */
.pricing-hero {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
  text-align: center;
}
.pricing-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pricing-hero-title .title-line {
  display: block;
}
.pricing-hero-title .light {
  font-weight: 400;
  color: var(--violet);
}
.pricing-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Pricing Tabs */
.pricing-tabs {
  display: inline-flex;
  background: var(--grey-100);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.pricing-tab {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-tab:hover {
  color: var(--text);
}
.pricing-tab.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Pricing Section */
.pricing-section {
  padding: 48px 0 96px;
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-tab-content {
  display: none;
}
.pricing-tab-content.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--violet-mid);
  box-shadow: 0 8px 32px rgba(117,49,174,0.1);
}
.pricing-card-popular {
  border-color: var(--violet);
  box-shadow: 0 8px 32px rgba(117,49,174,0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--violet);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Pricing Card Header */
.pricing-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.price-amount-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--violet);
}
.pricing-plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pricing Highlights */
.pricing-highlights {
  list-style: none;
  margin-bottom: 20px;
}
.pricing-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
}
.pricing-highlights li i {
  color: var(--violet);
  font-size: 12px;
}

/* Pricing Billing */
.pricing-billing {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--grey-50);
  border-radius: 8px;
}
.pricing-billing p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.pricing-billing p:last-child {
  margin-bottom: 0;
}
.pricing-tax {
  font-size: 12px !important;
  color: var(--text-light) !important;
}

/* Pricing CTA Button */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

/* Pricing Features Accordion */
.pricing-features {
  border-top: 1px solid var(--border-light);
  margin-top: 16px;
}
.pricing-features summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.pricing-features summary::-webkit-details-marker {
  display: none;
}
.pricing-features summary i {
  font-size: 10px;
  color: var(--text-light);
  transition: transform 0.3s;
}
.pricing-features[open] summary i {
  transform: rotate(180deg);
}
.pricing-features ul {
  list-style: none;
  padding-bottom: 12px;
}
.pricing-features ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.pricing-features ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--violet-mid);
  border-radius: 50%;
}

/* Pricing Note */
.pricing-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* Enterprise Card */
.pricing-card-enterprise {
  background: linear-gradient(180deg, var(--violet-light) 0%, #fff 100%);
}
.pricing-card-enterprise .pricing-card-header {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-enterprise-text {
  margin-bottom: 24px;
}
.pricing-enterprise-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Special CTA */
.pricing-special-cta {
  padding: 64px 0;
  background: var(--bg-light);
}
.special-cta-box {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #fff;
}
.special-cta-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.special-cta-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.special-cta-box .btn-primary {
  background: #fff;
  color: var(--violet);
}
.special-cta-box .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* Pricing Logos */
.pricing-logos {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}
.pricing-logos h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}
.pricing-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}
.pricing-logos-grid img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.pricing-logos-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Service Packages Section */
.service-packages-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.service-packages-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.service-packages-header .section-sub {
  color: var(--text-muted);
}

/* Service Contact Card */
.service-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  max-width: 500px;
  margin: 0 auto 48px;
}
.service-contact-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.service-contact-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.service-contact-info > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-contact-links {
  display: flex;
  gap: 16px;
}
.service-contact-links a {
  font-size: 13px;
  color: var(--violet);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-contact-links a:hover {
  text-decoration: underline;
}
.service-contact-links a i {
  font-size: 11px;
}

/* Service Packages Grid */
.service-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-package {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.service-package-header {
  margin-bottom: 24px;
}
.service-package-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--violet);
}

/* Service Package Item */
.service-package-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-package-item:last-child {
  border-bottom: none;
}
.service-package-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.service-package-title h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.service-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
}
.service-package-item > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Service Details Accordion */
.service-details {
  margin-top: 8px;
}
.service-details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  cursor: pointer;
  list-style: none;
}
.service-details summary::-webkit-details-marker {
  display: none;
}
.service-details summary i {
  font-size: 10px;
  transition: transform 0.3s;
}
.service-details[open] summary i {
  transform: rotate(180deg);
}
.service-details-content {
  padding-top: 16px;
}
.service-details-content h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 16px;
}
.service-details-content h5:first-child {
  margin-top: 0;
}
.service-details-content ul {
  list-style: none;
}
.service-details-content ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}
.service-details-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--violet-mid);
  border-radius: 50%;
}
.service-details-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.service-details-content .btn {
  margin-top: 12px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* Guest Package Items */
.guest-package-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.guest-package-item:last-child {
  border-bottom: none;
}
.guest-package-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.guest-package-item .service-price {
  display: block;
  margin-bottom: 6px;
}
.guest-package-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Platform Fee */
.platform-fee-item {
  padding: 20px;
  background: var(--grey-50);
  border-radius: 12px;
  margin-top: 16px;
}
.platform-fee-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.platform-fee-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.platform-fee-item .fee-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Pricing Final CTA */
.pricing-final-cta {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}
.pricing-final-cta .section-title {
  margin-bottom: 48px;
}
.pricing-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-cta-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s;
}
.pricing-cta-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-4px);
}
.pricing-cta-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-cta-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pricing-cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pricing-cta-card .cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-cta-card .cta-link i {
  transition: transform 0.3s;
}
.pricing-cta-card:hover .cta-link i {
  transform: translateX(4px);
}
.pricing-cta-main {
  background: linear-gradient(135deg, var(--violet-light) 0%, #fff 100%);
  border-color: var(--violet-mid);
}

/* Pricing Responsive */
@media(max-width: 1200px) {
  .pricing-tab-content.active {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card-enterprise {
    grid-column: span 2;
  }
}
@media(max-width: 900px) {
  .service-packages-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 700px) {
  .pricing-hero {
    padding: 96px 0 32px;
  }
  .pricing-tabs {
    flex-direction: column;
    width: 100%;
  }
  .pricing-tab {
    padding: 14px 24px;
  }
  .pricing-tab-content.active {
    grid-template-columns: 1fr;
  }
  .pricing-card-enterprise {
    grid-column: span 1;
  }
  .special-cta-box {
    padding: 32px 24px;
  }
  .special-cta-box h2 {
    font-size: 22px;
  }
  .service-contact-card {
    flex-direction: column;
    text-align: center;
  }
  .service-contact-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================
   SUBPAGE STYLES (Feature Pages)
========================================= */

/* Subpage Hero */
.subpage-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.subpage-hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.subpage-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.subpage-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.subpage-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Subpage Intro */
.subpage-intro {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.subpage-intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.subpage-intro-content .section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature Blocks Section */
.feature-blocks-section {
  padding: 48px 0 96px;
  background: #fff;
}

/* Feature Block */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-block:last-child {
  border-bottom: none;
}
.feature-block-reverse {
  direction: rtl;
}
.feature-block-reverse > * {
  direction: ltr;
}
.feature-block-content {
  max-width: 520px;
}
.feature-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--violet);
  margin-bottom: 16px;
}
.feature-block-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}
.feature-block-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature Block Visual */
.feature-block-visual {
  display: flex;
  justify-content: center;
}

/* Feature Mock - Form */
.feature-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 400px;
}
.feature-mock-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mock-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.mock-input {
  height: 44px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.mock-select {
  height: 44px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-light);
}
.mock-select i {
  font-size: 10px;
}

/* Feature Mock - Field Types */
.feature-mock-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mock-field-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.mock-field-type:hover {
  border-color: var(--violet-mid);
  background: var(--violet-light);
}
.mock-field-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mock-field-type span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* Feature Mock - Guests */
.feature-mock-guests {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mock-guest-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
}
.mock-guest-primary {
  background: #fff;
  border-color: var(--violet-mid);
}
.mock-guest-avatar {
  width: 44px;
  height: 44px;
  background: var(--violet-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 16px;
}
.mock-guest-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-guest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.mock-guest-role {
  font-size: 12px;
  color: var(--text-light);
}
.mock-guest-badge {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: 6px;
}
.mock-guest-connector {
  width: 2px;
  height: 24px;
  background: var(--border);
  margin-left: 38px;
}

/* Feature Mock - Changes */
.feature-mock-changes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-change-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--grey-50);
  border-radius: 10px;
}
.mock-change-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.mock-change-edit {
  background: #fef3c7;
  color: #d97706;
}
.mock-change-confirm {
  background: #d1fae5;
  color: #059669;
}
.mock-change-cancel {
  background: #fee2e2;
  color: #dc2626;
}
.mock-change-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-change-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.mock-change-time {
  font-size: 12px;
  color: var(--text-light);
}

/* Feature Mock - Capacity */
.feature-mock-capacity {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mock-capacity-bar {
  position: relative;
  height: 12px;
  background: var(--grey-100);
  border-radius: 6px;
  overflow: hidden;
}
.mock-capacity-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet) 0%, #9b6dd1 100%);
  border-radius: 6px;
}
.mock-capacity-label {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.mock-capacity-stats {
  display: flex;
  justify-content: space-between;
}
.mock-stat {
  text-align: center;
}
.mock-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.mock-stat-label {
  font-size: 12px;
  color: var(--text-light);
}
.mock-capacity-deadline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--violet-light);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
}
.mock-capacity-deadline i {
  font-size: 12px;
}

/* Related Features Section */
.related-features-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.related-features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.related-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.related-feature-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(117,49,174,0.1);
}
.related-feature-active {
  border-color: var(--violet);
  box-shadow: 0 0 0 2px var(--violet-light);
}
.related-feature-img {
  height: 140px;
  overflow: hidden;
}
.related-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-feature-card:hover .related-feature-img img {
  transform: scale(1.05);
}
.related-feature-content {
  padding: 20px;
}
.related-feature-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.related-feature-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Subpage CTA Section */
.subpage-cta-section {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}
.subpage-cta-section .section-title {
  margin-bottom: 48px;
}
.subpage-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.subpage-cta-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s;
}
.subpage-cta-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-4px);
}
.subpage-cta-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.subpage-cta-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.subpage-cta-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.subpage-cta-card .cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 6px;
}
.subpage-cta-card .cta-link i {
  transition: transform 0.3s;
}
.subpage-cta-card:hover .cta-link i {
  transform: translateX(4px);
}
.subpage-cta-main {
  background: linear-gradient(135deg, var(--violet-light) 0%, #fff 100%);
  border-color: var(--violet-mid);
}

/* SEO Text Section */
.seo-text-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.seo-text-content {
  max-width: 800px;
  margin: 0 auto;
}
.seo-text-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.seo-text-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.seo-text-content p:last-child {
  margin-bottom: 0;
}

/* Subpage Responsive */
@media(max-width: 1100px) {
  .related-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 900px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .subpage-hero-image {
    order: -1;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-block-reverse {
    direction: ltr;
  }
  .feature-block-content {
    max-width: none;
  }
  .subpage-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 700px) {
  .subpage-hero {
    padding: 96px 0 64px;
  }
  .subpage-intro {
    padding: 64px 0;
  }
  .feature-blocks-section {
    padding: 32px 0 64px;
  }
  .feature-block {
    padding: 40px 0;
  }
  .feature-block-content h3 {
    font-size: 24px;
  }
  .feature-mock-fields {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-features-section {
    padding: 64px 0;
  }
  .related-features-grid {
    grid-template-columns: 1fr;
  }
  .subpage-cta-section {
    padding: 64px 0;
  }
}

/* =========================================
   ABOUT PAGE STYLES
========================================= */

/* About Hero */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
  text-align: center;
}
.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-hero-content h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.about-hero-content h1 .light {
  display: block;
  font-weight: 400;
  color: var(--violet);
  font-size: 0.6em;
  margin-top: 8px;
}
.about-hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Team Section */
.team-section {
  padding: 64px 0 96px;
  background: #fff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.team-member {
  text-align: center;
}
.team-member-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--grey-50);
}
.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.team-member:hover .team-member-img img {
  transform: scale(1.05);
}
.team-member h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-member p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Team CTA Card */
.team-member-cta {
  display: block;
  text-decoration: none;
}
.team-member-cta .team-member-img {
  border: 2px dashed var(--border);
  background: var(--violet-light);
}
.team-member-cta:hover .team-member-img {
  border-color: var(--violet);
}
.team-cta-link {
  color: var(--violet) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.team-cta-link i {
  font-size: 12px;
  transition: transform 0.3s;
}
.team-member-cta:hover .team-cta-link i {
  transform: translateX(4px);
}

/* History Section */
.history-section {
  padding: 96px 0;
  background: var(--bg-light);
}
.history-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.history-header .section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 120px;
  width: 2px;
  height: 100%;
  background: var(--border);
}

/* Timeline Item */
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 114px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid var(--violet);
  border-radius: 50%;
  z-index: 1;
}

/* Timeline Date */
.timeline-date {
  text-align: right;
  padding-right: 20px;
}
.date-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--violet);
  background: var(--violet-light);
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* Timeline Content */
.timeline-content {
  padding-left: 32px;
}
.timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Timeline with Image */
.timeline-item-image {
  grid-template-columns: 120px 1fr 280px;
}
.timeline-image {
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Timeline CTA */
.timeline-cta {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #fff;
  margin-top: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.timeline-cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.timeline-cta .btn-primary {
  background: #fff;
  color: var(--violet);
}
.timeline-cta .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* About Responsive */
@media(max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .timeline-item-image {
    grid-template-columns: 120px 1fr;
  }
  .timeline-image {
    grid-column: 2;
    margin-top: 16px;
    height: 180px;
  }
}
@media(max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .timeline::before {
    left: 24px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 56px;
  }
  .timeline-item::after {
    left: 18px;
    top: 32px;
  }
  .timeline-date {
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .timeline-content {
    padding-left: 0;
  }
  .timeline-image {
    grid-column: 1;
  }
}
@media(max-width: 700px) {
  .about-hero {
    padding: 96px 0 64px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .team-member h4 {
    font-size: 14px;
  }
  .team-member p {
    font-size: 11px;
  }
  .history-section {
    padding: 64px 0;
  }
  .timeline-cta {
    padding: 32px 24px;
  }
  .timeline-cta h3 {
    font-size: 22px;
  }
}
@media(max-width: 500px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   SOLUTIONS MASONRY GRID
========================================= */
.solutions-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
.solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.solutions-header .section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title-sub {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
  margin-bottom: 20px;
}

/* Masonry Grid */
.solutions-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(200px, auto);
}

/* Solution Card Base */
.solution-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}
.solution-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(117,49,174,0.12);
}

/* Card Sizes */
.solution-card-sm {
  grid-row: span 1;
  min-height: 240px;
}
.solution-card-md {
  grid-row: span 1;
  min-height: 280px;
}

/* Card with Background Image */
.solution-card-image {
  border: none;
}
.solution-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.solution-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.solution-card-image:hover .solution-bg {
  transform: scale(1.08);
}
.solution-card-image .solution-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.solution-card-image h4 {
  color: #fff;
}
.solution-card-image .solution-tagline,
.solution-card-image .solution-desc {
  color: rgba(255,255,255,0.85);
}
.solution-card-image .solution-link {
  color: #fff;
}

/* Dark Card (no image) */
.solution-card-dark {
  background: linear-gradient(135deg, #1a1a24 0%, #2d2d3a 100%);
  border: none;
}
.solution-card-dark .solution-content {
  color: #fff;
}
.solution-card-dark h4 {
  color: #fff;
}
.solution-card-dark .solution-tagline,
.solution-card-dark .solution-desc {
  color: rgba(255,255,255,0.75);
}
.solution-card-dark .solution-link {
  color: #fff;
}
.solution-card-dark .solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(117,49,174,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #a78bfa;
  margin-bottom: 16px;
}

/* CTA Card */
.solution-card-cta {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border: none;
  justify-content: center;
  text-align: center;
}
.solution-card-cta .solution-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solution-card-cta h4 {
  color: #fff;
  font-size: 20px;
}
.solution-card-cta .solution-desc {
  color: rgba(255,255,255,0.9);
}
.solution-card-cta .solution-link {
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 8px;
}
.solution-card-cta:hover .solution-link {
  background: rgba(255,255,255,0.3);
}

/* Card Content */
.solution-content {
  padding: 28px;
}
.solution-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.solution-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 8px;
  line-height: 1.4;
}
.solution-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  margin-top: auto;
}
.solution-link i {
  font-size: 11px;
  transition: transform 0.3s;
}
.solution-card:hover .solution-link i {
  transform: translateX(4px);
}

/* Responsive */
@media(max-width: 1000px) {
  .solutions-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 700px) {
  .solutions-section {
    padding: 64px 0;
  }
  .solutions-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solution-card-sm,
  .solution-card-md {
    min-height: 200px;
  }
  .solution-content {
    padding: 24px;
  }
}

/* =========================================
   FEATURES BENTO GRID (Personio Style)
========================================= */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Bento Card Base */
.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(117,49,174,0.1);
}

/* Bento Card Sizes */
.bento-card-tall {
  grid-row: span 2;
  min-height: 520px;
}
.bento-card-wide {
  grid-column: span 2;
}

/* Dark Bento Card */
.bento-card-dark {
  background: linear-gradient(160deg, #1a1a24 0%, #252532 100%);
  border: none;
  color: #fff;
}
.bento-card-dark .bento-label {
  color: var(--violet-bright);
}
.bento-card-dark .bento-title {
  color: #fff;
}
.bento-card-dark .bento-desc {
  color: rgba(255,255,255,0.7);
}
.bento-card-dark .bento-link {
  color: #fff;
}

/* Violet Bento Card */
.bento-card-violet {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border: none;
  color: #fff;
}
.bento-card-violet .bento-label {
  color: rgba(255,255,255,0.8);
}
.bento-card-violet .bento-title {
  color: #fff;
}
.bento-card-violet .bento-desc {
  color: rgba(255,255,255,0.85);
}
.bento-card-violet .bento-link {
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
  margin-top: 8px;
}
.bento-card-violet:hover .bento-link {
  background: rgba(255,255,255,0.3);
}

/* Light Accent Card */
.bento-card-light {
  background: var(--violet-light);
  border-color: var(--violet-mid);
}

/* Bento Content */
.bento-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--violet);
  margin-bottom: 12px;
}
.bento-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.bento-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: auto;
  transition: gap 0.3s;
}
.bento-link i {
  font-size: 12px;
  transition: transform 0.3s;
}
.bento-card:hover .bento-link {
  gap: 12px;
}
.bento-card:hover .bento-link i {
  transform: translateX(3px);
}

/* Bento Visual Area */
.bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 24px;
  position: relative;
}

/* ---- UI Mock: Email Builder ---- */
.email-builder-mock {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: perspective(1000px) rotateX(5deg);
}
.email-mock-header {
  background: #f5f5f7;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.email-mock-header .dots {
  display: flex;
  gap: 5px;
}
.email-mock-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d1d6;
}
.email-mock-header .dots span:first-child { background: #ff5f57; }
.email-mock-header .dots span:nth-child(2) { background: #ffbd2e; }
.email-mock-header .dots span:last-child { background: #28c840; }
.email-mock-body {
  padding: 20px;
}
.email-mock-subject {
  background: var(--violet);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}
.email-mock-block {
  background: #f8f8fa;
  border: 2px dashed #e0e0e5;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.email-mock-block i {
  color: var(--violet);
  font-size: 14px;
}
.email-mock-btn {
  background: var(--violet);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ---- UI Mock: Form Builder ---- */
.form-builder-mock {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.form-mock-field {
  margin-bottom: 14px;
}
.form-mock-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.form-mock-input {
  width: 100%;
  height: 38px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.form-mock-input.filled {
  background: #fff;
  border-color: var(--violet);
  color: var(--text);
}
.form-mock-select {
  position: relative;
}
.form-mock-select::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-light);
}
.form-mock-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-mock-chip {
  padding: 6px 12px;
  background: var(--violet-light);
  border: 1px solid var(--violet-mid);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--violet);
}
.form-mock-chip.inactive {
  background: var(--bg-light);
  border-color: var(--border);
  color: var(--text-muted);
}
.form-mock-submit {
  width: 100%;
  padding: 12px;
  background: var(--violet);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ---- UI Mock: Check-In Card ---- */
.checkin-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.checkin-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}
.checkin-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  border-radius: 16px;
}
.checkin-quote {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}
.checkin-quote blockquote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 300;
}
.checkin-quote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  display: block;
}
.checkin-quote cite span {
  font-weight: 400;
  opacity: 0.8;
  display: block;
  font-size: 11px;
  margin-top: 2px;
}

/* QR Code Badge */
.qr-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 2;
}
.qr-badge svg {
  width: 100%;
  height: 100%;
}

/* ---- UI Mock: Analytics ---- */
.analytics-mock {
  width: 100%;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.analytics-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.analytics-badge {
  font-size: 10px;
  font-weight: 600;
  color: #10b981;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 12px;
}
.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding-top: 10px;
}
.chart-bar {
  flex: 1;
  background: var(--violet-light);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: all 0.3s;
}
.chart-bar:hover {
  background: var(--violet);
}
.chart-bar::after {
  content: attr(data-value);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.2s;
}
.chart-bar:hover::after {
  opacity: 1;
}
.chart-bar.active {
  background: var(--violet);
}
.analytics-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 10px;
  color: var(--text-light);
}

/* Stats Mini Cards */
.stats-mini {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.stat-mini-card {
  flex: 1;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.stat-mini-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-mini-num span {
  color: var(--violet);
}
.stat-mini-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- UI Mock: Seating ---- */
.seating-mock {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seating-tables {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.seating-table {
  position: relative;
}
.table-circle {
  width: 60px;
  height: 60px;
  background: var(--violet-light);
  border: 2px solid var(--violet-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
}
.table-seats {
  position: absolute;
  inset: -10px;
}
.table-seat {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}
.table-seat.filled {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}
.table-seat:nth-child(1) { top: -8px; left: 50%; transform: translateX(-50%); }
.table-seat:nth-child(2) { top: 15%; right: -8px; }
.table-seat:nth-child(3) { bottom: 15%; right: -8px; }
.table-seat:nth-child(4) { bottom: -8px; left: 50%; transform: translateX(-50%); }
.table-seat:nth-child(5) { bottom: 15%; left: -8px; }
.table-seat:nth-child(6) { top: 15%; left: -8px; }

.seating-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
}
.seating-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.seating-info .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.seating-info .dot.filled { background: var(--violet); }
.seating-info .dot.empty { background: #fff; border: 2px solid var(--border); }

/* ---- UI Mock: Guest List Flow ---- */
.guestlist-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}
.flow-card:hover {
  border-color: var(--violet-mid);
  box-shadow: 0 4px 16px rgba(117,49,174,0.08);
}
.flow-icon {
  width: 40px;
  height: 40px;
  background: var(--violet-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 16px;
  flex-shrink: 0;
}
.flow-content {
  flex: 1;
}
.flow-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.flow-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.flow-badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}
.flow-badge.success {
  background: #ecfdf5;
  color: #10b981;
}
.flow-badge.pending {
  background: #fef3c7;
  color: #d97706;
}
.flow-badge.info {
  background: var(--violet-light);
  color: var(--violet);
}

/* Flow Connector Line */
.flow-connector {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin-left: 35px;
}

/* Bento Responsive */
@media(max-width: 1100px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card-tall {
    grid-row: span 1;
    min-height: auto;
  }
}
@media(max-width: 700px) {
  .features-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card-wide {
    grid-column: span 1;
  }
  .bento-card {
    padding: 24px;
  }
  .bento-title {
    font-size: 20px;
  }
  .email-builder-mock {
    transform: none;
  }
}
/* =========================================
   FEATURES BENTO GRID
   Inspiriert von Personio - verschiedene 
   Kachelgrößen und visuelle Stile
========================================= */

/* Grid Layout */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

/* === BENTO CARD BASE === */
.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover {
  border-color: var(--violet-mid);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(117,49,174,0.12);
}

/* === CARD SIZES === */
.bento-card-tall {
  grid-row: span 2;
}

.bento-card-wide {
  grid-column: span 2;
}

/* === CARD VARIANTS === */

/* Dark Card */
.bento-card-dark {
  background: linear-gradient(160deg, #1a1a24 0%, #252535 100%);
  border: none;
  color: #fff;
}

.bento-card-dark .bento-label {
  color: var(--violet-bright);
}

.bento-card-dark .bento-title {
  color: #fff;
}

.bento-card-dark .bento-desc {
  color: rgba(255,255,255,0.7);
}

.bento-card-dark .bento-link {
  color: #fff;
}

/* Violet/Purple Card */
.bento-card-violet {
  background: linear-gradient(135deg, var(--violet) 0%, #9b6dd1 100%);
  border: none;
  color: #fff;
}

.bento-card-violet .bento-label {
  color: rgba(255,255,255,0.75);
}

.bento-card-violet .bento-title {
  color: #fff;
}

.bento-card-violet .bento-desc {
  color: rgba(255,255,255,0.85);
}

.bento-card-violet .bento-link {
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 12px;
  display: inline-flex;
  width: fit-content;
}

.bento-card-violet:hover .bento-link {
  background: rgba(255,255,255,0.3);
}

/* Image Card */
.bento-card-image {
  padding: 0;
}

/* === BENTO CONTENT ELEMENTS === */
.bento-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--violet);
  margin-bottom: 14px;
}

.bento-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: auto;
  transition: gap 0.3s;
}

.bento-link i {
  font-size: 12px;
  transition: transform 0.3s;
}

.bento-card:hover .bento-link {
  gap: 12px;
}

.bento-card:hover .bento-link i {
  transform: translateX(4px);
}

/* Visual Container */
.bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  min-height: 180px;
}

/* =========================================
   UI MOCK: EMAIL BUILDER
========================================= */
.email-builder-mock {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: perspective(800px) rotateX(5deg);
}

.email-mock-header {
  background: #f5f5f7;
  padding: 10px 14px;
  border-bottom: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  gap: 6px;
}

.email-mock-header .dots {
  display: flex;
  gap: 5px;
}

.email-mock-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.email-mock-header .dots span:nth-child(1) { background: #ff5f57; }
.email-mock-header .dots span:nth-child(2) { background: #ffbd2e; }
.email-mock-header .dots span:nth-child(3) { background: #28c840; }

.email-mock-body {
  padding: 16px;
}

.email-mock-subject {
  background: var(--violet);
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-mock-subject i {
  font-size: 14px;
}

.email-mock-block {
  background: #f8f8fa;
  border: 2px dashed #e0e0e5;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-mock-block i {
  color: var(--violet);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.email-mock-btn {
  background: var(--violet);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
}

/* =========================================
   UI MOCK: FORM BUILDER
========================================= */
.form-builder-mock {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.form-mock-field {
  margin-bottom: 14px;
}

.form-mock-field:last-child {
  margin-bottom: 0;
}

.form-mock-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

.form-mock-input {
  width: 100%;
  height: 40px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.form-mock-input.filled {
  background: #fff;
  border-color: var(--violet);
  color: var(--text);
}

.form-mock-select {
  position: relative;
}

.form-mock-select::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-light);
}

.form-mock-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-mock-chip {
  padding: 8px 14px;
  background: var(--violet-light);
  border: 1px solid var(--violet-mid);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--violet);
}

.form-mock-chip.inactive {
  background: var(--bg-light);
  border-color: var(--border);
  color: var(--text-muted);
}

/* =========================================
   UI MOCK: CHECK-IN / IMAGE CARD
========================================= */
.checkin-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.checkin-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.checkin-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  border-radius: 20px;
}

.checkin-quote {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: #fff;
  z-index: 2;
}

.checkin-quote blockquote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
  font-weight: 300;
}

.checkin-quote cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  display: block;
}

.checkin-quote cite span {
  font-weight: 400;
  opacity: 0.75;
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.qr-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 2;
}

.qr-badge svg {
  width: 100%;
  height: 100%;
}

/* =========================================
   UI MOCK: ANALYTICS
========================================= */
.analytics-mock {
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.analytics-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.analytics-badge {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  background: #ecfdf5;
  padding: 5px 12px;
  border-radius: 12px;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  padding-top: 10px;
}

.chart-bar {
  flex: 1;
  background: var(--violet-light);
  border-radius: 6px 6px 0 0;
  transition: all 0.3s;
  cursor: pointer;
}

.chart-bar:hover,
.chart-bar.active {
  background: var(--violet);
}

.analytics-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-light);
}

.stats-mini {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.stat-mini-card {
  flex: 1;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.stat-mini-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-mini-num span {
  color: var(--violet);
}

.stat-mini-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* =========================================
   UI MOCK: GUEST LIST FLOW
========================================= */
.guestlist-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s;
}

.flow-card:hover {
  border-color: var(--violet-mid);
  box-shadow: 0 4px 16px rgba(117,49,174,0.08);
}

.flow-icon {
  width: 38px;
  height: 38px;
  background: var(--violet-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-size: 14px;
  flex-shrink: 0;
}

.flow-content {
  flex: 1;
  min-width: 0;
}

.flow-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.flow-badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.flow-badge.success {
  background: #ecfdf5;
  color: #10b981;
}

.flow-badge.pending {
  background: #fef3c7;
  color: #d97706;
}

.flow-badge.info {
  background: var(--violet-light);
  color: var(--violet);
}

.flow-connector {
  width: 2px;
  height: 16px;
  background: var(--border);
  margin-left: 34px;
}

/* =========================================
   UI MOCK: SEATING / TABLE PLAN
========================================= */
.seating-mock {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, rgba(117,49,174,0.03) 0%, rgba(255,255,255,0.8) 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seating-tables {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.seating-table {
  position: relative;
  width: 80px;
  height: 80px;
}

.table-circle {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table-seats {
  position: absolute;
  inset: -12px;
}

.table-seat {
  position: absolute;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.table-seat.filled {
  background: #fff;
  border-color: #fff;
  color: var(--violet);
}

.table-seat:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.table-seat:nth-child(2) { top: 12%; right: -10px; }
.table-seat:nth-child(3) { bottom: 12%; right: -10px; }
.table-seat:nth-child(4) { bottom: -10px; left: 50%; transform: translateX(-50%); }
.table-seat:nth-child(5) { bottom: 12%; left: -10px; }
.table-seat:nth-child(6) { top: 12%; left: -10px; }

.seating-info {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

.seating-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seating-info .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.seating-info .dot.filled { 
  background: #fff; 
}

.seating-info .dot.empty { 
  background: transparent; 
  border: 2px solid rgba(255,255,255,0.5); 
}

/* =========================================
   WIDE CARD INNER GRID
========================================= */
.bento-card-wide .bento-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  height: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-card-tall {
    grid-row: span 1;
  }
  
  .bento-card-wide .bento-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .features-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bento-card {
    padding: 24px;
  }
  
  .bento-card-wide {
    grid-column: span 1;
  }
  
  .bento-title {
    font-size: 20px;
  }
  
  .bento-visual {
    min-height: 160px;
  }
  
  .email-builder-mock {
    transform: none;
    max-width: 280px;
  }
  
  .stats-mini {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================================
   BENTO FEATURE GRID - ELEGANT VERSION
   Inspired by Personio Design System
========================================= */

.bento-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.bento-header {
  text-align: center;
  margin-bottom: 80px;
}

.bento-header .section-sub {
  margin: 0 auto;
}

/* =========================================
   BENTO GRID LAYOUT
========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================
   CARD BASE STYLES
========================================= */
.bento-card {
  background: var(--white);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px -12px rgba(117, 49, 174, 0.15),
              0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

/* Card Content Wrapper */
.bento-content {
  padding: 32px;
  position: relative;
  z-index: 2;
}

/* =========================================
   CARD SIZES
========================================= */
.bento-card.size-hero {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 560px;
}

.bento-card.size-feature {
  grid-column: span 5;
  min-height: 320px;
}

.bento-card.size-testimonial {
  grid-column: span 5;
  min-height: 380px;
}

.bento-card.size-standard {
  grid-column: span 4;
  min-height: 360px;
}

.bento-card.size-wide {
  grid-column: span 8;
  min-height: 320px;
}

/* =========================================
   CARD BACKGROUNDS
========================================= */

/* Soft Violet Gradient */
.bento-card.bg-violet-gradient {
  background: linear-gradient(145deg, #F8F5FF 0%, #EDE4FF 50%, #E0D4FA 100%);
}

/* White with subtle border */
.bento-card.bg-white {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Dark elegant */
.bento-card.bg-dark {
  background: linear-gradient(145deg, #1F1F2E 0%, #2D2D3F 100%);
}

.bento-card.bg-dark .bento-label { color: var(--violet-mid); }
.bento-card.bg-dark .bento-title { color: #FFFFFF; }
.bento-card.bg-dark .bento-desc { color: rgba(255,255,255,0.7); }
.bento-card.bg-dark .bento-link { color: var(--violet-mid); }

/* Image background with overlay */
.bento-card.bg-image {
  background-size: cover;
  background-position: center;
}

.bento-card.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(255,255,255,0) 0%, 
    rgba(255,255,255,0.4) 40%,
    rgba(255,255,255,0.95) 100%);
  z-index: 1;
}

/* =========================================
   TYPOGRAPHY
========================================= */
.bento-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.bento-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.bento-title-large {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.bento-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: 24px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.bento-link:hover {
  gap: 12px;
}

.bento-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.bento-link:hover i {
  transform: translateX(2px);
}

/* =========================================
   VISUAL CONTAINERS
========================================= */
.bento-visual {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.bento-visual-right {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 55%;
  pointer-events: none;
}

.bento-visual-float {
  position: absolute;
  right: 32px;
  bottom: 32px;
  pointer-events: none;
}

/* =========================================
   WORKFLOW CARD (Hero Style)
========================================= */
.workflow-visual {
  position: absolute;
  top: 220px;
  left: 32px;
  right: 32px;
  bottom: 32px;
}

.workflow-container {
  position: relative;
  height: 100%;
}

/* Connection Line */
.workflow-line {
  position: absolute;
  left: 28px;
  top: 50px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet) 0%, var(--violet-mid) 100%);
  border-radius: 2px;
}

.workflow-line::before,
.workflow-line::after {
  content: '';
  position: absolute;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet);
}

.workflow-line::before { top: -5px; }
.workflow-line::after { bottom: -5px; }

/* Workflow Items */
.workflow-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  margin-left: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
              0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(117, 49, 174, 0.12);
}

.workflow-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 3px solid var(--violet);
  border-radius: 50%;
}

.workflow-item.active::before {
  background: var(--violet);
}

.workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet);
  background: var(--violet-light);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.workflow-badge i {
  font-size: 10px;
}

.workflow-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.workflow-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.workflow-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--grey-100);
  padding: 4px 10px;
  border-radius: 6px;
}

.workflow-tag i {
  font-size: 10px;
  color: var(--violet);
}

.workflow-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 2px dashed var(--border);
  border-radius: 12px;
  margin-left: 48px;
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.workflow-add:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: var(--violet-light);
}

/* =========================================
   PROFILE CARD (Recruiting Style)
========================================= */
.profile-card {
  position: absolute;
  top: 160px;
  left: 32px;
  right: 32px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet-mid) 100%);
}

.profile-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.profile-info span {
  font-size: 14px;
  color: var(--text-muted);
}

.profile-status {
  margin-left: auto;
  background: var(--violet);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
}

.profile-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.timeline-label i {
  color: var(--violet);
  width: 16px;
}

.timeline-value {
  font-size: 13px;
  font-weight: 600;
}

.timeline-tag {
  background: var(--violet-light);
  color: var(--violet);
  padding: 4px 12px;
  border-radius: 6px;
}

.timeline-date {
  color: var(--text-muted);
}

/* =========================================
   TESTIMONIAL CARD
========================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 50%, 
    rgba(255,255,255,0.8) 100%);
}

.testimonial-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  flex: 1;
}

.testimonial-quote::before {
  content: '„';
  font-size: 32px;
  color: var(--violet);
  font-style: normal;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================
   ANALYTICS CARD
========================================= */
.analytics-visual {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
}

.analytics-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.analytics-mini-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.analytics-mini-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.analytics-mini-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.analytics-mini-change {
  font-size: 12px;
  color: #10B981;
  font-weight: 600;
  margin-top: 4px;
}

.analytics-chart {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chart-bar.violet {
  background: linear-gradient(180deg, var(--violet) 0%, var(--violet-mid) 100%);
}

.chart-bar.light {
  background: var(--violet-light);
}

/* =========================================
   GUESTLIST CARD
========================================= */
.guestlist-visual {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
}

.guestlist-container {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.guestlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--border-light);
}

.guestlist-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.guestlist-count {
  font-size: 12px;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
}

.guestlist-items {
  padding: 8px;
}

.guest-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.guest-row:hover {
  background: var(--grey-50);
}

.guest-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
}

.guest-info {
  flex: 1;
}

.guest-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.guest-company {
  font-size: 12px;
  color: var(--text-muted);
}

.guest-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 6px;
}

.guest-status.confirmed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.guest-status.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

/* =========================================
   INTEGRATION ICONS
========================================= */
.integration-visual {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.integration-icon {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  transform: scale(1.05);
}

/* =========================================
   FLOATING ELEMENTS
========================================= */
.float-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  animation: float 3s ease-in-out infinite;
}

.float-badge i {
  color: var(--violet);
}

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

.float-badge.pos-1 { top: 200px; right: 40px; animation-delay: 0s; }
.float-badge.pos-2 { bottom: 120px; right: 60px; animation-delay: 1s; }
.float-badge.pos-3 { top: 280px; left: 20px; animation-delay: 0.5s; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
  .bento-card.size-hero { grid-column: span 12; min-height: 520px; }
  .bento-card.size-feature { grid-column: span 6; }
  .bento-card.size-testimonial { grid-column: span 6; }
  .bento-card.size-standard { grid-column: span 6; }
  .bento-card.size-wide { grid-column: span 12; }
}

@media (max-width: 768px) {
  .bento-section { padding: 80px 0; }
  .bento-header { margin-bottom: 48px; }
  .bento-grid { gap: 16px; }
  
  .bento-card.size-hero,
  .bento-card.size-feature,
  .bento-card.size-testimonial,
  .bento-card.size-standard,
  .bento-card.size-wide {
    grid-column: span 12;
    min-height: auto;
  }
  
  .bento-card.size-hero { min-height: 500px; }
  .bento-card.size-testimonial { min-height: 420px; }
  
  .bento-content { padding: 24px; }
  .bento-title { font-size: 22px; }
  .bento-title-large { font-size: 26px; }
  
  .workflow-visual { top: 200px; left: 24px; right: 24px; }
  .workflow-item { margin-left: 40px; padding: 14px 16px; }
  
  .profile-card { left: 24px; right: 24px; top: 140px; }
  
  .analytics-visual,
  .guestlist-visual,
  .integration-visual { left: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .workflow-line { left: 20px; }
  .workflow-item { margin-left: 36px; }
  .workflow-item::before { left: -20px; width: 12px; height: 12px; }
  
  .profile-header { flex-wrap: wrap; }
  .profile-status { margin-left: 0; margin-top: 12px; }
  
  .analytics-row { flex-direction: column; }
  
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   BENTO ADDITIONS - More Emotional
========================================= */

/* Improved Image Background Overlay */
.bento-card.bg-image {
  background-size: cover;
  background-position: center;
}

.bento-card.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, 
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 35%,
    rgba(255,255,255,0.5) 70%,
    rgba(255,255,255,0.3) 100%);
  z-index: 1;
}

.bento-card.bg-image .bento-content,
.bento-card.bg-image .workflow-visual,
.bento-card.bg-image .guestlist-visual,
.bento-card.bg-image .float-badge {
  position: relative;
  z-index: 2;
}

/* Feature Icon Cards in Wide Card */
.feature-icon-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(117, 49, 174, 0.15);
}

.feature-icon-card i {
  font-size: 32px;
  color: var(--violet);
  margin-bottom: 12px;
  display: block;
}

.feature-icon-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* New Badge Styling */
.bento-label i.fa-sparkles {
  margin-right: 4px;
  color: #F59E0B;
}

/* Floating Badge Improvements */
.float-badge {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(117, 49, 174, 0.1);
}

.float-badge i {
  color: var(--violet);
  font-size: 16px;
}

.float-badge.pos-1 {
  top: 200px;
  right: 40px;
  animation-delay: 0s;
}

.float-badge.pos-2 {
  bottom: 120px;
  right: 60px;
  animation-delay: 1s;
}

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

/* Responsive adjustments for wide card */
@media (max-width: 900px) {
  .bento-card.size-wide > div {
    flex-direction: column !important;
  }
  
  .bento-card.size-wide > div > div:last-child {
    padding: 16px !important;
    gap: 8px !important;
  }
  
  .feature-icon-card {
    padding: 16px 12px;
  }
  
  .feature-icon-card i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .feature-icon-card span {
    font-size: 12px;
  }
}

/* =========================================
   BENTO CLEAN ADDITIONS
========================================= */

/* Check-In Visual */
.checkin-visual {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.checkin-badge {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1;
  border: 1px solid var(--border-light);
}

.badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.badge-logo {
  width: 28px;
  height: 28px;
  background: var(--violet);
  border-radius: 6px;
}

.badge-header span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.badge-company {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--success) 0%, #0d9488 100%);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkin-qr {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.checkin-qr i {
  font-size: 36px;
  color: var(--text);
}

/* Wide Card Inner Layout */
.wide-card-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 32px;
}

.wide-card-inner .bento-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-card-features {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px 32px 24px 0;
}

.feature-icon-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  min-width: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(117, 49, 174, 0.12);
}

.feature-icon-card i {
  font-size: 28px;
  color: var(--violet);
  margin-bottom: 10px;
  display: block;
}

.feature-icon-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Cleaner Image Overlay */
.bento-card.bg-image::before {
  background: linear-gradient(145deg, 
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 50%,
    rgba(255,255,255,0.4) 100%);
}

/* Responsive Wide Card */
@media (max-width: 900px) {
  .wide-card-inner {
    flex-direction: column;
    gap: 24px;
  }
  
  .wide-card-features {
    padding: 0 24px 24px;
    justify-content: center;
  }
  
  .feature-icon-card {
    padding: 18px 16px;
    min-width: 80px;
  }
  
  .feature-icon-card i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .feature-icon-card span {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .checkin-visual {
    flex-direction: column;
    align-items: stretch;
  }
  
  .checkin-qr {
    width: 100%;
    height: 60px;
  }
}

/* =========================================
   TICKETING VISUAL - Professional Design
========================================= */
.ticketing-visual {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
}

/* Ticket Card */
.ticket-card {
  display: flex;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.ticket-left {
  flex: 1;
  padding: 20px;
  background: linear-gradient(135deg, var(--violet) 0%, #5B3D8A 100%);
  color: #FFFFFF;
}

.ticket-event {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.ticket-type {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ticket-details {
  display: flex;
  gap: 16px;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.ticket-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticket-details i {
  font-size: 11px;
}

.ticket-price {
  font-size: 24px;
  font-weight: 700;
}

.ticket-divider {
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0px,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
  position: relative;
}

.ticket-divider::before,
.ticket-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: var(--bg);
}

.ticket-divider::before {
  top: -1px;
  border-radius: 0 0 8px 8px;
}

.ticket-divider::after {
  bottom: -1px;
  border-radius: 8px 8px 0 0;
}

.ticket-right {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  padding: 16px;
}

.ticket-qr {
  width: 68px;
  height: 68px;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  color: var(--text);
}

/* Payment Providers */
.payment-providers {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-logo {
  width: 40px;
  height: 28px;
  background: var(--grey-50);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.2s ease;
}

.payment-logo:hover {
  background: var(--white);
  color: var(--violet);
  border-color: var(--violet-mid);
}

.payment-logo .fa-stripe {
  font-size: 20px;
}

.payment-logo .fa-paypal {
  color: #003087;
}

.payment-logo .fa-cc-visa {
  color: #1A1F71;
}

.payment-logo .fa-cc-mastercard {
  color: #EB001B;
}

.payment-logo .fa-apple-pay {
  font-size: 20px;
  color: #000;
}

/* Responsive Ticketing */
@media (max-width: 500px) {
  .ticket-card {
    flex-direction: column;
  }
  
  .ticket-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--border) 0px,
      var(--border) 6px,
      transparent 6px,
      transparent 12px
    );
  }
  
  .ticket-divider::before,
  .ticket-divider::after {
    width: 8px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .ticket-divider::before {
    left: -1px;
    border-radius: 0 8px 8px 0;
  }
  
  .ticket-divider::after {
    right: -1px;
    left: auto;
    border-radius: 8px 0 0 8px;
  }
  
  .ticket-right {
    width: 100%;
    padding: 20px;
  }
  
  .payment-providers {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* =========================================
   BENTO PREMIUM - Moving Gradients & App
========================================= */

/* Moving Gradient Background */
.bento-gradient-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: moveGradient 20s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(117, 49, 174, 0.25) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(84, 94, 211, 0.2) 0%, transparent 70%);
  top: 40%;
  right: -10%;
  animation-delay: -7s;
}

.gradient-orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 174, 246, 0.3) 0%, transparent 70%);
  bottom: -5%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes moveGradient {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, 30px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 60px) scale(0.95);
  }
  75% {
    transform: translate(40px, -20px) scale(1.05);
  }
}

/* Card Size: App (Wide Premium) */
.bento-card.size-app {
  grid-column: span 7;
  min-height: 360px;
}

/* Premium Gradient Background */
.bento-card.bg-gradient-premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 40%, #1e1e30 100%);
  overflow: hidden;
}

.bento-card.bg-gradient-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(117, 49, 174, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Soft Background */
.bento-card.bg-soft {
  background: linear-gradient(145deg, #F8F5FF 0%, #F0EAFF 100%);
}

/* Row Layout for App Card */
.bento-content-row {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 40px !important;
  gap: 40px;
}

.bento-text {
  flex: 1;
  z-index: 2;
}

.bento-link-light {
  color: var(--violet-mid) !important;
}

.bento-link-light:hover {
  color: #FFFFFF !important;
}

/* Premium Label */
.bento-label i.fa-crown {
  margin-right: 6px;
  color: #F59E0B;
}

/* Compact Content (no collision) */
.bento-content-compact {
  padding: 28px 28px 16px;
  position: relative;
  z-index: 2;
}

.bento-content-compact .bento-title {
  margin-bottom: 8px;
}

.bento-content-compact .bento-link {
  margin-top: 12px;
}

/* =========================================
   PHONE MOCKUP FOR APP CARD
========================================= */
.app-phone-visual {
  flex-shrink: 0;
  z-index: 2;
}

.phone-frame-bento {
  width: 180px;
  height: 370px;
  background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 50%, #2c2c2e 100%);
  border-radius: 32px;
  padding: 8px;
  position: relative;
  box-shadow: 
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 20px 40px -10px rgba(0,0,0,0.4),
    inset 0 1px 1px rgba(255,255,255,0.1);
}

.phone-notch-bento {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.phone-notch-bento::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #1a3040 30%, #0a1520 100%);
  border-radius: 50%;
}

.phone-screen-bento {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header-bento {
  background: var(--violet);
  padding: 32px 14px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
}

.app-logo-bento {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 5px;
}

.app-content-bento {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}

.app-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.app-agenda-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.app-agenda-item:last-child {
  border-bottom: none;
}

.agenda-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--violet);
  min-width: 36px;
}

.agenda-info {
  flex: 1;
}

.agenda-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}

.agenda-speaker {
  font-size: 9px;
  color: var(--text-muted);
}

.app-nav-bento {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.app-nav-bento .nav-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 12px;
  transition: all 0.2s ease;
}

.app-nav-bento .nav-item.active {
  background: var(--violet-light);
  color: var(--violet);
}

/* =========================================
   ADJUSTED VISUALS - More Space
========================================= */
.guestlist-visual,
.analytics-visual,
.checkin-visual,
.integration-visual {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
}

/* Guestlist compact */
.guestlist-container {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.guestlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--border-light);
}

.guestlist-title { font-size: 11px; font-weight: 700; color: var(--text); }
.guestlist-count { font-size: 10px; color: var(--text-muted); background: #FFFFFF; padding: 2px 8px; border-radius: 10px; }
.guestlist-items { padding: 4px; }

.guest-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
}

.guest-avatar { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.guest-name { font-size: 12px; font-weight: 600; color: var(--text); }
.guest-company { font-size: 10px; color: var(--text-muted); }
.guest-status { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 6px; border-radius: 4px; }
.guest-status.confirmed { background: rgba(16, 185, 129, 0.1); color: #059669; }
.guest-status.pending { background: rgba(245, 158, 11, 0.1); color: #D97706; }

/* Analytics compact */
.analytics-row { display: flex; gap: 8px; margin-bottom: 10px; }
.analytics-mini-card { flex: 1; background: rgba(255, 255, 255, 0.95); border-radius: 10px; padding: 12px; }
.analytics-mini-label { font-size: 9px; color: var(--text-muted); margin-bottom: 2px; }
.analytics-mini-value { font-size: 24px; font-weight: 700; color: var(--text); line-height: 1; }
.analytics-mini-change { font-size: 10px; color: #10B981; font-weight: 600; margin-top: 2px; }
.analytics-chart { background: rgba(255, 255, 255, 0.95); border-radius: 10px; padding: 14px; height: 70px; display: flex; align-items: flex-end; gap: 4px; }
.chart-bar { flex: 1; border-radius: 2px 2px 0 0; }
.chart-bar.violet { background: linear-gradient(180deg, var(--violet) 0%, var(--violet-mid) 100%); }
.chart-bar.light { background: var(--violet-light); }

/* Check-In compact */
.checkin-visual { display: flex; gap: 12px; align-items: flex-end; }
.checkin-badge { background: #FFFFFF; border-radius: 10px; padding: 14px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); flex: 1; border: 1px solid var(--border-light); }
.badge-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.badge-logo { width: 20px; height: 20px; background: var(--violet); border-radius: 4px; }
.badge-header span { font-size: 9px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.badge-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.badge-company { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.badge-tag { display: inline-block; background: linear-gradient(135deg, var(--success) 0%, #0d9488 100%); color: #FFFFFF; font-size: 8px; font-weight: 700; padding: 3px 6px; border-radius: 3px; text-transform: uppercase; }
.checkin-qr { width: 56px; height: 56px; background: #FFFFFF; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); border: 1px solid var(--border-light); }
.checkin-qr i { font-size: 28px; color: var(--text); }

/* Integration compact */
.integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.integration-icon { aspect-ratio: 1; background: rgba(255, 255, 255, 0.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: rgba(255, 255, 255, 0.5); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.06); }
.integration-icon:hover { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }

/* Wide Card */
.wide-card-inner { display: flex; align-items: center; height: 100%; gap: 32px; }
.wide-card-inner .bento-content { flex: 1; padding: 32px; }
.wide-card-features { display: flex; gap: 12px; padding-right: 32px; }
.feature-icon-card { background: rgba(255, 255, 255, 0.9); border-radius: 12px; padding: 18px 16px; text-align: center; min-width: 85px; transition: transform 0.3s ease; }
.feature-icon-card:hover { transform: translateY(-3px); }
.feature-icon-card i { font-size: 22px; color: var(--violet); margin-bottom: 6px; display: block; }
.feature-icon-card span { font-size: 11px; font-weight: 600; color: var(--text); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
  .bento-card.size-hero { grid-column: span 12; }
  .bento-card.size-feature { grid-column: span 6; }
  .bento-card.size-app { grid-column: span 12; }
  .bento-card.size-testimonial { grid-column: span 6; }
  .bento-card.size-standard { grid-column: span 6; }
  .bento-card.size-wide { grid-column: span 12; }
}

@media (max-width: 768px) {
  .bento-content-row {
    flex-direction: column;
    padding: 28px !important;
    gap: 24px;
  }
  
  .app-phone-visual {
    align-self: center;
  }
  
  .phone-frame-bento {
    width: 160px;
    height: 330px;
  }
  
  .bento-card.size-hero,
  .bento-card.size-feature,
  .bento-card.size-app,
  .bento-card.size-testimonial,
  .bento-card.size-standard,
  .bento-card.size-wide {
    grid-column: span 12;
    min-height: auto;
  }
  
  .bento-card.size-hero { min-height: 520px; }
  .bento-card.size-app { min-height: 500px; }
  
  .wide-card-inner { flex-direction: column; }
  .wide-card-features { padding: 0 24px 24px; justify-content: center; }
  
  .gradient-orb { opacity: 0.3; }
}

/* =========================================
   EMOTIONAL PHONE SCREEN
========================================= */
.phone-screen-emotional {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.phone-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.1) 0%, 
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.85) 100%);
  border-radius: 26px;
}

.phone-app-content {
  position: relative;
  z-index: 2;
  padding: 24px 18px;
  text-align: center;
  color: #FFFFFF;
}

.phone-app-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.mercedes-star {
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.9);
}

.phone-app-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.phone-app-subtitle {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin-bottom: 8px;
}

.phone-app-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.phone-app-cta {
  display: inline-block;
  background: var(--violet);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mercedes Logo Image */
.mercedes-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =====================================================================
   KI-Launch – zentrales Prompt-Feld im Hero (Einfallstor zum Studio)
   ===================================================================== */
.ki-launch { max-width: 760px; margin: 0 auto 26px; position: relative; z-index: 2; }

/* --- Templates über dem Input (Detailgrad-Varianz) --- */
.ki-templates {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.ki-tpl {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 12px 8px 10px; cursor: pointer; font-family: inherit; text-align: center;
  transition: all .15s;
}
.ki-tpl:hover { border-color: var(--violet-mid); box-shadow: 0 6px 20px rgba(117,49,174,.10); transform: translateY(-1px); }
.ki-tpl.is-active { border-color: var(--violet); background: var(--violet-light); box-shadow: 0 0 0 3px rgba(117,49,174,.10); }
.ki-tpl > i { font-size: 19px; color: var(--violet); margin-bottom: 2px; }
.ki-tpl-name { font-size: 13px; font-weight: 700; color: var(--text); }
.ki-tpl-desc { font-size: 10.5px; line-height: 1.3; color: var(--text-muted); }
.ki-tpl-dots { display: inline-flex; gap: 3px; margin-top: 5px; }
.ki-tpl-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--violet-mid); }
.ki-tpl.is-active .ki-tpl-dots i { background: var(--violet); }

/* --- Hohes Prompt-Feld, Button darunter --- */
.ki-launch-box {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white); border: 1.5px solid var(--violet-mid);
  border-radius: var(--radius-lg); padding: 14px;
  box-shadow: 0 12px 48px rgba(117, 49, 174, 0.14), var(--shadow-md);
  transition: box-shadow .2s, border-color .2s;
}
.ki-launch-box:focus-within {
  border-color: var(--violet);
  box-shadow: 0 12px 56px rgba(117, 49, 174, 0.22), 0 0 0 4px rgba(117, 49, 174, 0.08);
}
.ki-launch-box textarea {
  border: none; resize: vertical; font: inherit; font-size: 15.5px;
  line-height: 1.55; padding: 6px 8px; color: var(--text);
  background: transparent; min-height: 150px;
}
.ki-launch-box textarea:focus { outline: none; }
.ki-launch-box textarea::placeholder { color: var(--text-light); }
.ki-launch-btn { align-self: flex-end; white-space: nowrap; }
.ki-launch-hint { margin: 10px 0 0; font-size: 12.5px; color: var(--text-light); text-align: center; }
@media (max-width: 640px) {
  .ki-templates { grid-template-columns: repeat(2, 1fr); }
  .ki-tpl-desc { display: none; }
  .ki-launch-btn { align-self: stretch; }
}
