/* ============================================================
   Power4Locals GmbH — styles.css
   Custom styles complementing Tailwind CSS
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-navy: #0f2d52;
  --color-blue: #1a4a8a;
  --color-orange: #f97316;
  --color-orange-dark: #ea6c0a;
  --color-orange-light: #fdba74;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --color-red: #ef4444;
  --color-yellow: #f59e0b;
  --color-green: #22c55e;

  --font-family: 'Inter', sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  color: var(--color-gray-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-navy); }

/* ---------- Hero Gradient ---------- */
.hero-gradient {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 60%, #1e3a6e 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,74,138,.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.05));
  pointer-events: none;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-orange) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 27px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ---------- Card Hover ---------- */
.card-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* ---------- Section Divider ---------- */
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-orange);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-divider-left {
  width: 60px;
  height: 4px;
  background: var(--color-orange);
  border-radius: 2px;
  margin: 0 0 1.5rem;
}

/* ---------- Sticky Nav ---------- */
#main-nav {
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

#main-nav.nav-scrolled {
  background: rgba(15,45,82,.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

/* ---------- Mobile Menu ---------- */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
  max-height: 500px;
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

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

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  font-family: var(--font-family);
  transition: color var(--transition-fast);
}

.faq-btn:hover { color: var(--color-blue); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  transition: transform var(--transition-base), background var(--transition-base);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.faq-icon.open {
  transform: rotate(45deg);
  background: var(--color-orange);
  color: #fff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content.open {
  max-height: 600px;
}

.faq-content-inner {
  padding: 0 0 20px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ---------- Tab System ---------- */
.tab-btn {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  color: var(--color-gray-600);
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-family);
}

.tab-btn:hover {
  background: var(--color-gray-100);
  color: var(--color-navy);
}

.tab-btn.active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeInUp 0.35s ease forwards;
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  border-radius: var(--border-radius-lg);
  padding: 32px;
  background: #fff;
  border: 2px solid var(--color-gray-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: var(--color-orange) !important;
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(249,115,22,.2), var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

/* ---------- Package Popular Badge ---------- */
.package-popular {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Traffic Light / Ampel ---------- */
.ampel-red { color: var(--color-red); }
.ampel-yellow { color: var(--color-yellow); }
.ampel-green { color: var(--color-green); }

.ampel-bg-red { background-color: #fef2f2; border-left: 4px solid var(--color-red); }
.ampel-bg-yellow { background-color: #fffbeb; border-left: 4px solid var(--color-yellow); }
.ampel-bg-green { background-color: #f0fdf4; border-left: 4px solid var(--color-green); }

.score-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.score-dot-red { background: var(--color-red); box-shadow: 0 0 6px rgba(239,68,68,.5); }
.score-dot-yellow { background: var(--color-yellow); box-shadow: 0 0 6px rgba(245,158,11,.5); }
.score-dot-green { background: var(--color-green); box-shadow: 0 0 6px rgba(34,197,94,.5); }

.score-bar {
  width: 100%;
  height: 8px;
  background: var(--color-gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.score-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-fill-red { background: linear-gradient(90deg, var(--color-red), #f87171); }
.score-fill-yellow { background: linear-gradient(90deg, var(--color-yellow), #fcd34d); }
.score-fill-green { background: linear-gradient(90deg, var(--color-green), #4ade80); }

/* ---------- Loading Spinner ---------- */
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-gray-200);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-lg {
  width: 64px;
  height: 64px;
  border-width: 5px;
}

/* ---------- Shimmer Animation ---------- */
.shimmer {
  background: linear-gradient(90deg, var(--color-gray-100) 25%, var(--color-gray-200) 50%, var(--color-gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

/* ---------- Counter Animation ---------- */
.counter-wrap {
  transition: opacity 0.3s ease;
}

/* ---------- Step Indicators ---------- */
.step-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gray-200));
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  flex-shrink: 0;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

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

/* ---------- Pulse Ring ---------- */
.pulse-ring {
  position: relative;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  animation: pulse-ring 2s ease-out infinite;
}

/* ---------- Check List Items ---------- */
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

/* ---------- Loading Steps ---------- */
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.loading-step.done {
  opacity: 1;
}

.loading-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  transition: background 0.4s ease, color 0.4s ease;
}

.loading-step.done .loading-step-icon {
  background: var(--color-green);
  color: #fff;
}

/* ---------- Overall Score Display ---------- */
.score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  border: 6px solid var(--color-gray-200);
  margin: 0 auto;
}

.score-circle-red { border-color: var(--color-red); color: var(--color-red); }
.score-circle-yellow { border-color: var(--color-yellow); color: var(--color-yellow); }
.score-circle-green { border-color: var(--color-green); color: var(--color-green); }

/* ---------- Score Card ---------- */
.score-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 20px;
  border: 2px solid var(--color-gray-100);
  transition: border-color var(--transition-base);
}

.score-card-red { border-left: 4px solid var(--color-red); }
.score-card-yellow { border-left: 4px solid var(--color-yellow); }
.score-card-green { border-left: 4px solid var(--color-green); }

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Result Section Animations ---------- */
#check-results {
  animation: scaleIn 0.5s ease forwards;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline-white {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .faq-btn {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-divider { margin: 0 auto 1rem; }

  .step-indicator {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ---------- Utility Additions ---------- */
.text-navy { color: var(--color-navy); }
.text-blue { color: var(--color-blue); }
.text-orange { color: var(--color-orange); }
.bg-navy { background-color: var(--color-navy); }
.bg-blue { background-color: var(--color-blue); }
.bg-orange { background-color: var(--color-orange); }

.border-orange { border-color: var(--color-orange); }

.shadow-orange { box-shadow: 0 4px 20px rgba(249,115,22,.3); }

/* ---------- Hero Badge ---------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 99px;
  color: var(--color-orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- Trust Badge ---------- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- Feature Item ---------- */
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(249,115,22,.12);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Course Card ---------- */
.course-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--color-gray-100);
}

.course-card-body { padding: 20px 24px 24px; }

/* ---------- Module List ---------- */
.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-100);
  font-size: 0.9rem;
}

.module-list li:last-child { border-bottom: none; }

.module-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Guarantee Badge ---------- */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0fdf4;
  border: 2px solid var(--color-green);
  border-radius: var(--border-radius);
  color: #166534;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 20px 24px;
}

/* ---------- Nav Logo (Image) ---------- */
/* Logo wird als <img src="logo-color.png"> eingebunden */
/* h-12 / h-14 via Tailwind gesetzt */
/* Auf scrolled-Nav: Logo bleibt unverändert (RGBA-transparent, funktioniert auf hell & dunkel) */
nav img[alt*="Power4Locals"] {
  transition: opacity var(--transition-base);
  object-fit: contain;
}
nav img[alt*="Power4Locals"]:hover {
  opacity: 0.9;
}

/* Footer Logo */
footer img[alt="Power4Locals"] {
  filter: brightness(1.05);
}


/* ============================================================
   SPLITSCREEN HERO
   ============================================================ */

.splitscreen-hero {
  position: relative;
}

.splitscreen-wrap {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}

@media (min-width: 1024px) {
  .splitscreen-wrap {
    flex-direction: row;
  }
}

/* --- Panels --- */
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 50vh;
}

@media (min-width: 1024px) {
  .split-panel {
    min-height: calc(100vh - 80px);
  }
  .split-panel:hover {
    flex: 1.4;
  }
  .splitscreen-wrap:has(.split-left:hover) .split-right {
    flex: 0.7;
  }
  .splitscreen-wrap:has(.split-right:hover) .split-left {
    flex: 0.7;
  }
}

/* --- Backgrounds --- */
.split-left {
  background: linear-gradient(145deg, #0f2d52 0%, #162d4a 100%);
}

.split-right {
  background: linear-gradient(145deg, #162d4a 0%, #0f2d52 100%);
}

.split-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  opacity: 0;
}

.split-bg-left {
  background: radial-gradient(ellipse at 40% 50%, rgba(249,115,22,0.18) 0%, transparent 65%);
}

.split-bg-right {
  background: radial-gradient(ellipse at 60% 50%, rgba(99,179,237,0.12) 0%, transparent 65%);
}

.split-panel:hover .split-bg {
  opacity: 1;
}

/* Hover shine sweep */
.split-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.04) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.split-panel:hover .split-shine {
  left: 130%;
}

/* --- Content layout --- */
.split-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
}

@media (min-width: 1280px) {
  .split-content {
    padding: 4rem 3rem;
  }
}

/* --- Elements --- */
.split-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
  display: block;
}

.split-label-white {
  color: rgba(255,255,255,0.45);
}

.split-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.split-panel:hover .split-icon {
  transform: translateY(-4px) scale(1.05);
}

.split-icon-orange {
  background: rgba(249, 115, 22, 0.15);
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 0 30px rgba(249,115,22,0);
}

.split-panel:hover .split-icon-orange {
  box-shadow: 0 0 30px rgba(249,115,22,0.2);
  background: rgba(249, 115, 22, 0.22);
}

.split-icon-white {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.split-panel:hover .split-icon-white {
  background: rgba(255,255,255,0.14);
}

.split-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  transition: letter-spacing 0.4s ease;
}

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

.split-panel:hover .split-title {
  letter-spacing: -0.03em;
}

.split-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.875rem;
}

.split-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 340px;
  transition: color 0.3s ease;
}

.split-panel:hover .split-desc {
  color: rgba(255,255,255,0.6);
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  width: 100%;
  max-width: 300px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}

.split-list li:last-child {
  border-bottom: none;
}

.split-panel:hover .split-list li {
  color: rgba(255,255,255,0.9);
}

/* --- CTA Buttons --- */
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.split-cta-orange {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.25);
}

.split-panel:hover .split-cta-orange {
  background: var(--color-orange-dark, #ea6c0a);
  box-shadow: 0 8px 30px rgba(249,115,22,0.4);
  transform: translateY(-2px);
}

.split-cta-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.split-panel:hover .split-cta-white {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
}

.split-arrow {
  transition: transform 0.3s ease;
}

.split-panel:hover .split-arrow {
  transform: translateX(4px);
}

/* --- Vertical Divider (desktop) --- */
.split-divider {
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 0;
  overflow: visible;
}

@media (min-width: 1024px) {
  .split-divider {
    display: flex;
  }
}

.split-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

.split-divider-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(-50%) scale(1);
  margin-left: -36px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 20;
  position: relative;
}

.splitscreen-wrap:hover .split-divider-badge {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Horizontal divider line (mobile) */
@media (max-width: 1023px) {
  .split-divider {
    display: none;
  }
}

/* --- Scroll Hint --- */
.split-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .split-scroll-hint {
    display: none;
  }
}
