@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

/* =========================================
   KORVENTA - CSS VARIABLES & ROOT STYLES
   ========================================= */

:root {
  --primary: #2D1B69;
  --primary-light: #4A2FA0;
  --primary-dark: #1A0F3E;
  --secondary: #FF6B35;
  --secondary-light: #FF8C5A;
  --secondary-dark: #E5501A;
  --accent: #00D4AA;
  --accent-light: #33DEBB;
  --accent-dark: #00A882;
  --neutral-50: #F8F7FF;
  --neutral-100: #EEE9FF;
  --neutral-200: #D4C8F5;
  --neutral-300: #B0A0E0;
  --neutral-700: #3D3060;
  --neutral-800: #251840;
  --neutral-900: #120C24;
  --text-primary: #120C24;
  --text-secondary: #3D3060;
  --text-muted: #7A6FA8;
  --text-light: #F8F7FF;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F7FF;
  --bg-dark: #120C24;
  --shadow-sm: 0 2px 8px rgba(45, 27, 105, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 27, 105, 0.14);
  --shadow-lg: 0 8px 40px rgba(45, 27, 105, 0.18);
  --shadow-xl: 0 16px 60px rgba(45, 27, 105, 0.22);
  --shadow-accent: 0 4px 20px rgba(0, 212, 170, 0.3);
  --shadow-secondary: 0 4px 20px rgba(255, 107, 53, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
}

/* =========================================
   GLOBAL RESET & BASE STYLES
   ========================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-full);
  border: 2px solid var(--neutral-100);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary), var(--accent-dark));
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) var(--neutral-100);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--secondary);
}

/* =========================================
   STICKY HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 27, 105, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform var(--transition-bounce);
}

.site-logo:hover {
  transform: scale(1.03);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: transform var(--transition-slow);
}

.site-logo:hover .logo-mark::before {
  transform: rotate(45deg) translateX(100%);
}

.logo-mark i {
  color: white;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

/* =========================================
   NAVIGATION
   ========================================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--neutral-100);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link.active {
  color: var(--primary);
  background: var(--neutral-100);
  font-weight: 600;
}

.nav-link.active::after {
  width: 70%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: var(--neutral-100);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(45, 27, 105, 0.08);
  border-bottom: 1px solid rgba(45, 27, 105, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  transform-origin: top;
  animation: slideDown 0.25s ease forwards;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: var(--neutral-100);
  color: var(--primary);
  border-left-color: var(--accent);
  padding-left: 1.25rem;
}

.mobile-nav-link i {
  font-size: 1.1rem;
  color: var(--accent);
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-bounce);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(45, 27, 105, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 6px 25px rgba(45, 27, 105, 0.45);
  transform: translateY(-2px);
  color: white;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(45, 27, 105, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.45);
  transform: translateY(-2px);
  color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 25px rgba(0, 212, 170, 0.45);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 27, 105, 0.25);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

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

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-icon {
  padding: 0.625rem;
  border-radius: var(--radius-md);
}

.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding: 5rem 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: white;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: 10%;
  animation-delay: -3s;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 5%;
  animation-delay: -6s;
  opacity: 0.04;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero-title {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: var(--font-display);
}

.hero-stat-number span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================================
   SECTION STYLES
   ========================================= */

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title .highlight {
  position: relative;
  color: var(--primary);
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: var(--radius-full);
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

.section-bg-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}

.section-bg-dark .section-title,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: white;
}

.section-bg-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   CARD STYLES
   ========================================= */

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 27, 105, 0.06);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(45, 27, 105, 0.1);
}

.card-body {
  padding: 1.75rem;
}

.card-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(45, 27, 105, 0.06);
  background: var(--neutral-50);
}

.card-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(45, 27, 105, 0.06);
  background: var(--neutral-50);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image {
  transform: scale(1.04);
}

.card-image-wrapper {
  overflow: hidden;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(45, 27, 105, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(45, 27, 105, 0.1);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
  transition: all var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: rotate(-5deg) scale(1.1);
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   PRICING CARDS
   ========================================= */

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid rgba(45, 27, 105, 0.08);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-feature {
  color: white;
}

.pricing-card.featured .pricing-description {
  color: rgba(255, 255, 255, 0.7);
}

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

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.pricing-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.75rem;
  font-weight: 600;
}

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

.pricing-divider {
  height: 1px;
  background: rgba(45, 27, 105, 0.08);
  margin: 1.5rem 0;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-feature i {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-feature i {
  color: var(--accent-light);
}

.pricing-feature.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

/* =========================================
   TESTIMONIAL CARDS
   ========================================= */

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(45, 27, 105, 0.06);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--neutral-200);
  pointer-events: none;
}

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

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #FFB800;
  font-size: 0.875rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

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

/* =========================================
   TEAM CARDS
   ========================================= */

.team-card {
  text-align: center;
  transition: all var(--transition-base);
}

.team-avatar-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.team-avatar-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-avatar-wrapper::before {
  opacity: 1;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 4px solid white;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-bounce);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) rotate(-5deg);
}

/* =========================================
   FORM STYLES
   ========================================= */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.form-group:focus-within .form-label {
  color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-family: var(--font-sans);
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--neutral-300);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(74, 47, 160, 0.1);
  background: var(--neutral-50);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-input.success,
.form-textarea.success,
.form-select.success {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237A6FA8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.form-error {
  font-size: 0.78rem;
  color: #EF4444;
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color var(--transition-base);
}

.form-group:focus-within .form-input-icon {
  color: var(--primary);
}

.form-input-wrapper .form-input {
  padding-left: 2.75rem;
}

.form-checkbox-wrapper,
.form-radio-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox,
.form-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--neutral-300);
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-base);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}

.form-radio {
  border-radius: 50%;
}

.form-checkbox:checked,
.form-radio:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox:checked::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.form-radio:checked::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  display: block;
}

.form-checkbox:focus,
.form-radio:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 47, 160, 0.15);
}

.form-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.form-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--neutral-300);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform var(--transition-bounce);
}

.form-toggle input:checked + .toggle-slider {
  background: var(--primary);
}

.form-toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(45, 27, 105, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

/* =========================================
   ACCORDION STYLES
   ========================================= */

.accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 27, 105, 0.08);
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  background: white;
  border-bottom: 1px solid rgba(45, 27, 105, 0.06);
  transition: background var(--transition-fast);
}

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

.accordion-item.active {
  background: var(--neutral-50);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-base);
}

.accordion-trigger:hover {
  background: rgba(45, 27, 105, 0.02);
}

.accordion-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.accordion-item.active .accordion-question {
  color: var(--primary);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--neutral-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-bounce);
}

.accordion-icon i {
  font-size: 1rem;
  color: var(--primary);
  transition: transform var(--transition-bounce);
}

.accordion-item.active .accordion-icon {
  background: var(--primary);
}

.accordion-item.active .accordion-icon i {
  color: white;
  transform: rotate(45deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* =========================================
   STATS SECTION
   ========================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 27, 105, 0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

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

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

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(45, 27, 105, 0.25);
}

.stat-icon i {
  color: white;
  font-size: 1.25rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

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

/* =========================================
   PROCESS / STEPS SECTION
   ========================================= */

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--neutral-200), var(--primary-light), var(--neutral-200));
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-container::before {
    display: none;
  }
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  box-shadow: 0 4px 20px rgba(45, 27, 105, 0.3), 0 0 0 6px white, 0 0 0 8px var(--neutral-200);
  transition: all var(--transition-bounce);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(45, 27, 105, 0.4), 0 0 0 6px white, 0 0 0 8px var(--primary-light);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  z-index: 9999;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(45, 27, 105, 0.1);
  overflow: hidden;
  animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

@keyframes slideUpCookie {
  from {
    opacity: 0;
    transform: translateY(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cookie-banner-inner {
  padding: 1.5rem;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-icon i {
  color: white;
  font-size: 1.1rem;
}

.cookie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cookie-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-settings-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--transition-fast);
  padding: 0;
}

.cookie-settings-link:hover {
  color: var(--primary);
}

/* =========================================
   MODAL
   ========================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 36, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}

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

.modal {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text