/* ==========================================================================
   ZENKOszt™ - Static Website Styles
   Color Palette: Deep Purple #512da8
   ========================================================================== */

:root {
  --primary: #512da8;
  --primary-light: #7c4dff;
  --primary-dark: #311b92;
  --background: #ffffff;
  --foreground: #1a1a2e;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --card: #ffffff;
  --card-hover: #fafafa;
  --section-bg: #f8f7fc;
  --gradient: linear-gradient(135deg, #512da8 0%, #7c4dff 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.3);
}

.btn-hero {
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 1rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.35);
}

.btn-hero-outline {
  background: transparent;
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 1rem;
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--foreground);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gradient);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (max-width: 768px) {

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ==========================================================================
   Hero Scroll-Triggered Slides
   ========================================================================== */

/* Hero slides container - all slides stacked */
.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Navigation Dots */
.hero-nav-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(81, 45, 168, 0.3);
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-nav-dots {
    right: 1rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(81, 45, 168, 0.08), transparent 60%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-glow-1 {
  top: 25%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(81, 45, 168, 0.05);
}

.hero-glow-2 {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(81, 45, 168, 0.05);
  animation-delay: 2s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(81, 45, 168, 0.1);
  border: 1px solid rgba(81, 45, 168, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  color: var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-graphics {
    display: none;
  }
}

/* Hero Graphics */
.hero-graphics {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.1), rgba(81, 45, 168, 0.05));
  border-radius: 1.5rem;
  filter: blur(40px);
}

.hero-main-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(81, 45, 168, 0.1);
  animation: float 6s ease-in-out infinite;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(81, 45, 168, 0.05);
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item:hover {
  background: rgba(81, 45, 168, 0.1);
}

.feature-icon {
  color: var(--primary);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-card-left {
  top: 2rem;
  left: -2rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-card-right {
  bottom: 5rem;
  right: -1rem;
  animation: float 6s ease-in-out infinite;
}

.floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.floating-title {
  font-size: 0.875rem;
  font-weight: 500;
}

.floating-desc {
  font-size: 0.75rem;
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(107, 114, 128, 0.3);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: rgba(107, 114, 128, 0.5);
  border-radius: 0.25rem;
  animation: pulse 2s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Hero Slide 2 - Catalog Card */
.hero-catalog-card {
  padding: 0 !important;
  overflow: hidden;
}

.catalog-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(81, 45, 168, 0.05);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

.catalog-header svg {
  color: var(--primary);
}

.catalog-items {
  padding: 0.5rem 0;
}

.catalog-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  transition: background 0.2s;
}

.catalog-item:hover {
  background: rgba(81, 45, 168, 0.05);
}

.catalog-name {
  font-weight: 500;
}

.catalog-price {
  color: var(--primary);
  font-weight: 600;
}

/* Hero Slide 3 - Perspectives Grid */
.hero-perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.perspective-mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.perspective-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(81, 45, 168, 0.1);
}

.perspective-mini-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.05), rgba(124, 77, 255, 0.05));
}

.perspective-mini-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.perspective-mini-title {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.perspective-mini-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.perspective-mini-label {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-perspectives-grid {
    display: none;
  }
}

/* Hero Slide 4 - Phone Mockup */
.hero-phone-mockup {
  width: 280px;
  height: 500px;
  background: var(--foreground);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
  margin: 0 auto;
}

.phone-mockup-screen {
  background: var(--card);
  border-radius: 2rem;
  height: 100%;
  overflow: hidden;
}

.phone-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--gradient);
  color: white;
  font-weight: 600;
}

.phone-mockup-header .logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  background: white;
  color: var(--primary);
}

.offline-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.phone-mockup-content {
  padding: 1rem;
}

.phone-project {
  background: rgba(81, 45, 168, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.phone-project-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.phone-project-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.phone-sync-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 500;
}

.phone-sync-status svg {
  color: #10b981;
}

@media (max-width: 1024px) {
  .hero-phone-mockup {
    display: none;
  }
}

/* Hero Slide 5 - Security Card */
.hero-security-card {
  width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.security-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon svg {
  stroke: var(--primary);
}

.security-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.security-feature svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-security-card {
    display: none;
  }
}

/* ==========================================================================
   Trusted By Section
   ========================================================================== */

.trusted-by {
  padding: 2.5rem 0;
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.trusted-scroll-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  overflow: hidden;
}

.trusted-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}

.trusted-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.trusted-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.trusted-scroll {
  display: flex;
  animation: scroll 30s linear infinite;
}

.trusted-scroll:hover {
  animation-play-state: paused;
}

.trusted-items {
  display: flex;
  gap: 3rem;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.trusted-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(107, 114, 128, 0.4);
  white-space: nowrap;
  transition: color 0.3s;
}

.trusted-item:hover {
  color: rgba(107, 114, 128, 0.7);
}

.trusted-item span {
  font-size: 1.125rem;
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-sm {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   Problem & Solution Section
   ========================================================================== */

.problem-solution {
  padding: 6rem 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ps-left .section-label {
  margin-bottom: 1.5rem;
}

.ps-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ps-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
}

.ps-slider {
  position: relative;
  overflow: hidden;
}

.ps-slides {
  position: relative;
}

.ps-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ps-slide.active {
  display: block;
  opacity: 1;
}

.ps-dots {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.ps-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: transparent;
  transition: all 0.2s ease;
}

.ps-dot.active {
  background: var(--primary);
  transform: scale(1.1);
}

.ps-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ps-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
}

.ps-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: rgba(107, 114, 128, 0.5);
}

.ps-divider {
  position: relative;
  padding: 1rem 0;
}

.ps-divider-line {
  height: 1px;
  background: var(--border);
}

.ps-divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-divider-dot::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
}

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

.ps-solution-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.ps-solution-content p {
  color: var(--foreground);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ps-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ede7f6 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
}

.feature-card-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Perspectives Section
   ========================================================================== */

.perspectives {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.perspectives::before,
.perspectives::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(81, 45, 168, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.perspectives::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.perspectives::after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.perspective-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  transition: all 0.5s;
}

.perspective-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 20px 40px rgba(81, 45, 168, 0.05);
  transform: translateY(-8px);
}

.perspective-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.perspective-card:hover .perspective-icon {
  transform: scale(1.1);
}

.perspective-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.perspective-subtitle {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.perspective-desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.perspective-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.perspective-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.perspective-features li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

@media (max-width: 1024px) {
  .perspectives-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ede7f6 0%, #ffffff 100%);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}

.step:hover .step-content {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.05);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
  padding: 5rem 0;
}

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

.testimonial {
  text-align: center;
  padding: 1.5rem;
}

.quote-icon {
  color: rgba(81, 45, 168, 0.3);
  margin: 0 auto 0.75rem;
}

.testimonial p {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ede7f6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  transition: all 0.5s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card-popular {
  border-color: rgba(81, 45, 168, 0.3);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pricing-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-card-popular:hover {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq {
  padding: 6rem 0;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content>p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 4rem 0 2rem;
  background: var(--foreground);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-brand .logo-text {
  color: white;
}

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

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact:hover {
  color: white;
}

.footer-contact svg {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .footer-brand {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Subpages Styles
   ========================================================================== */

/* Page Hero */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

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

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--muted);
}

/* Contact Page */
.contact-section {
  padding: 4rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.contact-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-value {
  font-weight: 500;
}

.demo-card {
  padding: 2rem;
  background: var(--gradient);
  border-radius: 1.5rem;
  color: white;
}

.demo-card svg {
  margin-bottom: 1rem;
}

.demo-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.demo-card p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

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

.contact-form-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

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

/* About Page */
.about-mission {
  padding: 4rem 0;
  background: var(--section-bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
}

.mission-card svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mission-card p {
  color: var(--muted);
}

.about-values {
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
}

.value-card svg {
  color: var(--primary);
  margin: 0 auto 1rem;
}

.value-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.about-history {
  padding: 4rem 0;
  background: var(--section-bg);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 2rem auto 0;
  padding-left: 5rem;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: -5rem;
  width: 4rem;
  height: 4rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-content {
  padding-top: 0.75rem;
}

.timeline-content h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--muted);
}

.about-team {
  padding: 4rem 0;
}

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

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.team-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

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

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.legal-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.text-center {
  text-align: center;
}


/* ==========================================================================
   New Subpages Styles (branze, funkcje, dla-kogo)
   ========================================================================== */

/* Page Header */
.page-header {
  padding: 7rem 0 3rem;
  background: linear-gradient(180deg, #ede7f6 0%, #ffffff 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--foreground);
}

.page-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.page-header-content p {
  color: var(--muted);
}

.page-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.gradient-bg {
  background: var(--gradient);
}

/* Subpage Content */
.subpage-content {
  padding: 3rem 0 4rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 56rem;
  margin: 0 auto;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .cards-grid-2,
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Card Link */
.card-link {
  text-decoration: none;
  color: inherit;
}

.card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-4px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

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

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.card:hover h3 {
  color: var(--primary);
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

.card-footer svg {
  color: var(--primary);
}

/* Industry Detail Section */
.industry-detail {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.industry-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.industry-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.industry-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.industry-header p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.industry-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.industry-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .industry-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.category-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.category-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.category-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.category-card li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.industry-extras {
  text-align: center;
}

.industry-extras h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.extras-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.extra-tag {
  padding: 0.5rem 1rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

/* Feature Detail Section */
.feature-detail {
  padding: 3rem 0;
}

.feature-detail-alt {
  background: var(--section-bg);
}

.feature-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-detail-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-detail-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-detail-header p {
  color: var(--muted);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.feature-detail-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.feature-detail-alt .feature-detail-card {
  background: white;
}

.feature-detail-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-detail-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-detail-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Profile Detail Section */
.profile-detail {
  padding: 3rem 0;
}

.profile-detail-alt {
  background: var(--section-bg);
}

.profile-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.profile-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-header p {
  color: var(--muted);
}

.profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.profile-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.profile-tab:hover {
  color: var(--foreground);
}

.profile-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Problems & Solutions */
.problems-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .problems-solutions {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-label-sm {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section-label-primary {
  color: var(--primary);
}

.problems-section h3,
.solutions-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.problems-grid,
.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-card,
.solution-card {
  padding: 1.25rem;
  border-radius: 1rem;
}

.problem-card {
  background: rgba(107, 114, 128, 0.05);
  border: 1px solid var(--border);
}

.solution-card {
  background: rgba(81, 45, 168, 0.05);
  border: 1px solid rgba(81, 45, 168, 0.2);
}

.problem-icon,
.solution-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.problem-icon {
  background: rgba(107, 114, 128, 0.1);
  color: var(--muted);
}

.solution-icon {
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
}

.problem-card h4,
.solution-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.problem-card p,
.solution-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Nav Links Active State */
.nav-links a.active {
  color: var(--primary);
}


/* ==========================================================================
   App Showcase Section
   ========================================================================== */

.app-showcase {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.app-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(81, 45, 168, 0.05), transparent 60%);
}

.mockup-browser {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(81, 45, 168, 0.1);
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--section-bg);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #ff5f57;
}

.mockup-dot.yellow {
  background: #febc2e;
}

.mockup-dot.green {
  background: #28c840;
}

.mockup-url {
  flex: 1;
  margin-left: 1rem;
  padding: 0.375rem 0.75rem;
  background: white;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.mockup-content {
  padding: 1rem;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mockup-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.mockup-body {
  display: flex;
  gap: 1rem;
}

.mockup-sidebar {
  width: 10rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.sidebar-item.active {
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
}

.mockup-main {
  flex: 1;
  background: var(--section-bg);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.mockup-project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.mockup-table {
  font-size: 0.75rem;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.table-row:hover {
  background: rgba(81, 45, 168, 0.05);
}

.table-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.mockup-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.summary-value {
  font-size: 1.125rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .mockup-body {
    flex-direction: column;
  }

  .mockup-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
}

/* Phone Mockup */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mockup-phone {
    justify-self: center;
  }
}

.mockup-phone {
  width: 280px;
  background: var(--foreground);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mockup-phone-screen {
  background: var(--background);
  border-radius: 2rem;
  overflow: hidden;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.phone-battery {
  width: 1.25rem;
  height: 0.625rem;
  background: var(--foreground);
  border-radius: 0.125rem;
}

.phone-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-logo .logo-icon {
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
}

.phone-app-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.phone-app-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.phone-content {
  padding: 1rem;
  background: var(--section-bg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.phone-project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.phone-project-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.phone-project-status {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  background: rgba(81, 45, 168, 0.05);
  color: var(--foreground);
}

.phone-project-status.active {
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
}

.phone-project-status.pending {
  background: var(--section-bg);
  color: var(--muted);
}

.phone-project-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.phone-btn {
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
}

.phone-btn.primary {
  background: var(--primary);
  color: white;
  border: none;
}

.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.phone-nav svg {
  color: var(--muted);
}

.phone-nav svg:first-child {
  color: var(--primary);
}

/* ==========================================================================
   Features Detail Section
   ========================================================================== */

.features-detail {
  padding: 6rem 0;
}

.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-detail-link {
  display: block;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.feature-detail-link:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-4px);
}

.feature-detail-link svg {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-detail-link:hover svg {
  transform: scale(1.1);
}

.feature-detail-link h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.feature-detail-link:hover h3 {
  color: var(--primary);
}

.feature-detail-link p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tags span {
  padding: 0.25rem 0.5rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 1rem;
}

/* ==========================================================================
   For Who Section
   ========================================================================== */

.for-who {
  padding: 6rem 0;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .for-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.for-who-card {
  display: block;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.for-who-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-4px);
}

.for-who-card svg {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.for-who-card:hover svg {
  transform: scale(1.1);
}

.for-who-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.for-who-card:hover h3 {
  color: var(--primary);
}

.for-who-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Industries Section
   ========================================================================== */

.industries {
  padding: 6rem 0;
  background: var(--section-bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 2rem;
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(81, 45, 168, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0;
  transition: opacity 0.5s;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 20px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-8px);
}

.industry-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.industry-card:hover h3 {
  color: var(--primary);
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.industry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.industry-count {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 700;
}

.industry-arrow {
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}

.industry-card:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

.industries-link {
  text-align: center;
}

.industries-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s;
}

.industries-link a:hover {
  gap: 0.75rem;
}

/* ==========================================================================
   Price Updates Section
   ========================================================================== */

.price-updates {
  padding: 6rem 0;
}

.price-updates-content {
  max-width: 56rem;
  margin: 0 auto;
}

.price-update-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-update-header svg {
  color: var(--primary);
}

.price-update-header span:first-of-type {
  font-weight: 500;
}

.update-date {
  margin-left: auto;
  color: var(--primary);
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.price-card {
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.price-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.price-change {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-change.up {
  color: var(--foreground);
}

.price-change.down {
  color: var(--primary);
}

.price-change.stable {
  color: var(--muted);
}

.price-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.price-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter {
  padding: 4rem 0;
}

.newsletter-card {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  text-align: center;
}

.newsletter-card svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.newsletter-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-card>p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 1rem;
  background: var(--background);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}


/* ==========================================================================
   Navbar Dropdown Menu
   ========================================================================== */

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-btn:hover {
  color: var(--foreground);
}

.nav-dropdown-btn svg {
  transition: transform 0.2s;
}

.nav-dropdown.active .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  min-width: 12rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 100;
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
  color: var(--foreground);
  background: rgba(81, 45, 168, 0.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 600px;
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--foreground);
}

.mobile-dropdown {
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown:last-of-type {
  border-bottom: none;
}

.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-dropdown-btn:hover {
  color: var(--foreground);
}

.mobile-dropdown-btn svg {
  transition: transform 0.2s;
}

.mobile-dropdown.active .mobile-dropdown-btn svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
  margin-left: 0.5rem;
  border-left: 2px solid rgba(81, 45, 168, 0.2);
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.mobile-dropdown-menu a:hover {
  color: var(--foreground);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

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

  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

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


/* ==========================================================================
   Blog Page
   ========================================================================== */

.blog-header {
  padding-bottom: 2rem;
}

.blog-header .page-header-content {
  display: block;
}

.blog-header .page-header-content h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

.blog-header .page-header-content p {
  font-size: 1.125rem;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover {
  border-color: rgba(81, 45, 168, 0.3);
}

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.blog-posts {
  padding: 3rem 0 6rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

.blog-card {
  display: block;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-4px);
}

.blog-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.blog-card:hover h3 {
  color: var(--primary);
}

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

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Text center utility */
.text-center {
  text-align: center;
}


/* ==========================================================================
   Features Page - New Styles
   ========================================================================== */

.page-header-features {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.feature-page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.feature-page-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-page-header p {
  color: var(--muted);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s;
}

.feature-tab:hover {
  color: var(--foreground);
}

.feature-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.feature-tab svg {
  width: 0.875rem;
  height: 0.875rem;
}

.feature-content-section {
  padding: 4rem 0;
}

.feature-content {
  display: none;
}

.feature-content.active {
  display: block;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

  .feature-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .feature-tab {
    white-space: nowrap;
  }
}

.feature-content-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.feature-content-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(81, 45, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-content-icon svg {
  color: var(--primary);
}

.feature-content-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-content-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* CTA Gradient */
.cta-gradient {
  padding: 4rem 0;
}

.cta-gradient-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: var(--gradient);
}

.cta-gradient-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-gradient-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  background: white;
  color: var(--primary);
  transition: all 0.3s;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}


/* ==========================================================================
   Feature Detail Sections (Landing Page Style)
   ========================================================================== */

.feature-detail-section {
  padding: 5rem 0;
}

.feature-detail-section.feature-detail-alt {
  background: var(--section-bg);
}

.feature-detail-section .feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-detail-section .feature-detail-grid.feature-detail-reverse {
  direction: rtl;
}

.feature-detail-section .feature-detail-grid.feature-detail-reverse>* {
  direction: ltr;
}

.feature-detail-section .feature-detail-content {
  display: flex;
  flex-direction: column;
}

.feature-detail-section .feature-detail-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-detail-section .feature-detail-icon svg {
  color: white;
}

.feature-detail-section .feature-detail-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-detail-section .feature-detail-desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-checklist li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

.feature-checklist li span {
  color: var(--foreground);
  line-height: 1.6;
}

.feature-checklist li strong {
  color: var(--foreground);
}

.feature-detail-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-mini-card {
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s;
}

.feature-mini-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.05);
}

.feature-mini-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(81, 45, 168, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.feature-mini-icon svg {
  color: var(--primary);
}

.feature-mini-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-mini-card p {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .feature-detail-section .feature-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-detail-section .feature-detail-grid.feature-detail-reverse {
    direction: ltr;
  }

  .feature-detail-cards {
    order: -1;
  }
}

@media (max-width: 640px) {
  .feature-detail-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Features Overview Grid (6 columns)
   ========================================================================== */

.features-overview {
  padding: 4rem 0;
  background: var(--section-bg);
}

.features-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .features-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-overview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.feature-overview-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.08);
  transform: translateY(-4px);
}

.feature-overview-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-overview-card:hover .feature-overview-icon {
  transform: scale(1.1);
}

.feature-overview-icon svg {
  color: white;
}

.feature-overview-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-overview-card:hover h3 {
  color: var(--primary);
}

.feature-overview-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ==========================================================================
   Page Header Hero (for Features/ForWho pages)
   ========================================================================== */

.page-header-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, rgba(81, 45, 168, 0.05) 0%, transparent 100%);
}

.page-header-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.page-header-hero .back-link:hover {
  color: var(--foreground);
}

.page-header-hero .hero-content-left {
  max-width: 700px;
}

.page-header-hero .section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page-header-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.page-header-hero .hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.page-header-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .page-header-hero h1 {
    font-size: 2rem;
  }
}


/* ==========================================================================
   Profiles Overview (For Who page)
   ========================================================================== */

.profiles-overview {
  padding: 4rem 0;
  background: var(--section-bg);
}

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

@media (max-width: 1024px) {
  .profiles-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.profile-overview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.profile-overview-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 15px 40px rgba(81, 45, 168, 0.08);
  transform: translateY(-8px);
}

.profile-overview-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.profile-overview-card:hover .profile-overview-icon {
  transform: scale(1.1);
}

.profile-overview-icon svg {
  color: white;
}

.profile-overview-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.profile-overview-card:hover h3 {
  color: var(--primary);
}

.profile-overview-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Profile Sections (For Who page - detailed sections)
   ========================================================================== */

.profile-section {
  padding: 5rem 0;
}

.profile-section.profile-section-alt {
  background: var(--section-bg);
}

.profile-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-section-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-section-icon svg {
  color: white;
}

.profile-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-section-header p {
  color: var(--muted);
}

.profile-description {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.problems-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.problems-box,
.solutions-box {
  padding: 2rem;
  border-radius: 1.5rem;
}

.problems-box {
  background: var(--card);
  border: 1px solid var(--border);
}

.profile-section-alt .problems-box {
  background: white;
}

.solutions-box {
  background: rgba(81, 45, 168, 0.05);
  border: 1px solid rgba(81, 45, 168, 0.2);
}

.box-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.box-label-primary {
  color: var(--primary);
}

.problems-box h3,
.solutions-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.problems-list,
.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item,
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.problem-icon,
.solution-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon {
  background: var(--section-bg);
}

.profile-section-alt .problem-icon {
  background: var(--card);
}

.problem-icon svg {
  color: var(--muted);
}

.solution-icon {
  background: rgba(81, 45, 168, 0.1);
}

.solution-icon svg {
  color: var(--primary);
}

.problem-item h4,
.solution-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.problem-item p,
.solution-item p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.testimonial-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}

.profile-section-alt .testimonial-box {
  background: white;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--muted);
}

.profile-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .profile-section-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Subpage Hero - Full Width with Preview
   ========================================================================== */

.subpage-hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.05) 0%, transparent 50%, rgba(81, 45, 168, 0.03) 100%);
}

.subpage-hero-glow-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(81, 45, 168, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.subpage-hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(81, 45, 168, 0.03);
  border-radius: 50%;
  filter: blur(80px);
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.subpage-hero-content {
  max-width: 560px;
}

.subpage-hero-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.subpage-hero-content .section-label svg {
  color: var(--primary);
}

.subpage-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.subpage-hero-desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.subpage-hero-content .hero-buttons {
  margin-bottom: 2.5rem;
}

.subpage-hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

.hero-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(81, 45, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero-stat-avatars {
  display: flex;
}

.hero-stat-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(81, 45, 168, 0.2) 0%, rgba(81, 45, 168, 0.4) 100%);
  border: 2px solid var(--background);
  margin-left: -0.5rem;
}

.hero-stat-avatar:first-child {
  margin-left: 0;
}

.hero-stat-value {
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* Dashboard Preview Card */
.subpage-hero-preview {
  position: relative;
}

.dashboard-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(81, 45, 168, 0.1);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard-header span {
  font-size: 0.75rem;
  color: var(--muted);
}

.dashboard-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(107, 114, 128, 0.05);
  border-radius: 0.5rem;
}

.dashboard-row span:first-child {
  font-size: 0.875rem;
  color: var(--muted);
}

.dashboard-value {
  font-weight: 600;
  color: var(--foreground);
}

.dashboard-row-total {
  background: rgba(81, 45, 168, 0.1);
  border: 1px solid rgba(81, 45, 168, 0.2);
}

.dashboard-row-total span:first-child {
  font-weight: 600;
  color: var(--foreground);
}

.dashboard-value-total {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

/* Floating Stat Cards */
.floating-stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.floating-stat-top {
  top: -1rem;
  right: -1rem;
}

.floating-stat-bottom {
  bottom: -1rem;
  left: -1rem;
}

.floating-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.floating-stat-icon-green {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.floating-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.floating-stat-value {
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.floating-stat-value.text-green {
  color: #22c55e;
}

/* Profile Cards Grid (dla-kogo) */
.profile-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.profile-preview-card {
  display: block;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.profile-preview-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 30px rgba(81, 45, 168, 0.1);
  transform: translateY(-4px);
}

.profile-preview-card-active {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 0 0 2px rgba(81, 45, 168, 0.1);
}

.profile-preview-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.profile-preview-card:hover .profile-preview-icon {
  transform: scale(1.1);
}

.profile-preview-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.profile-preview-card:hover h3 {
  color: var(--primary);
}

.profile-preview-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Industries Preview Grid (branze) */
.industries-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.industry-preview-card {
  display: block;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.industry-preview-card:hover {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 10px 20px rgba(81, 45, 168, 0.1);
}

.industry-preview-card-active {
  border-color: rgba(81, 45, 168, 0.3);
  box-shadow: 0 0 0 2px rgba(81, 45, 168, 0.1);
}

.industry-preview-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.5rem;
  transition: transform 0.3s;
}

.industry-preview-card:hover .industry-preview-icon {
  transform: scale(1.1);
}

.industry-preview-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.125rem;
  transition: color 0.3s;
}

.industry-preview-card:hover h4 {
  color: var(--primary);
}

.industry-preview-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.industries-preview-more {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .subpage-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .subpage-hero-content h1 {
    font-size: 2.25rem;
  }

  .subpage-hero-content .hero-buttons {
    justify-content: center;
  }

  .subpage-hero-stats {
    justify-content: center;
  }

  .subpage-hero-preview {
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-stat-top {
    top: -0.5rem;
    right: 0;
  }

  .floating-stat-bottom {
    bottom: -0.5rem;
    left: 0;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    padding: 6rem 0 3rem;
  }

  .subpage-hero-content h1 {
    font-size: 1.75rem;
  }

  .subpage-hero-desc {
    font-size: 1rem;
  }

  .subpage-hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .profile-cards-grid {
    grid-template-columns: 1fr;
  }

  .industries-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-stat-card {
    display: none;
  }
}
/* Expanded Problem Solution Styles */
.ps-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.ps-intro .section-label {
  justify-content: center;
}
.ps-intro .ps-list {
  justify-content: center;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}
.ps-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.ps-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s;
}
.ps-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ps-badge-mini {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(81, 45, 168, 0.1);
  color: var(--primary);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.ps-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.ps-stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.05); /* Red tint for problems */
  border-radius: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.1);
}
.ps-stat-box svg {
  color: #ef4444; /* Red color for problem icons */
  width: 2rem;
  height: 2rem;
}
.stat-main {
  font-weight: 700;
  font-size: 1rem;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.ps-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.ps-solution-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ps-solution-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}
.ps-solution-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.sol-item {
  padding: 1.5rem;
  background: rgba(81, 45, 168, 0.03);
  border-radius: 1rem;
}
.sol-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.sol-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.sol-item p {
  color: var(--muted);
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .ps-detailed-grid, .ps-solution-items {
    grid-template-columns: 1fr;
  }
}

