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

/* --- 1. DESIGN TOKENS & SYSTEM VARIABLES --- */
:root {
  /* Colors */
  --bg-primary: #070913;
  --bg-secondary: #0c0f24;
  --bg-tertiary: #121833;
  --card-bg: rgba(16, 22, 47, 0.4);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-border-hover: rgba(139, 92, 246, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Brand Gradients & Accents */
  --color-violet: #8b5cf6;
  --color-indigo: #6366f1;
  --color-cyan: #06b6d4;
  --color-pink: #ec4899;
  --color-emerald: #10b981;
  
  --grad-primary: linear-gradient(135deg, var(--color-violet) 0%, var(--color-indigo) 100%);
  --grad-accent: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-violet) 100%);
  --grad-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  --grad-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows & Blurs */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --glow-violet: 0 0 20px rgba(139, 92, 246, 0.25);
  --glow-cyan: 0 0 20px rgba(6, 118, 212, 0.25);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 1.25rem;
  --spacing-xl: 1.5rem;
  --spacing-xxl: 1.5rem;
  
  /* Layout */
  --container-max: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-image: var(--grad-dark);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow backgrounds */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(140px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -10%;
  right: 5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(99, 102, 241, 0) 70%);
}

.orb-2 {
  top: 40%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
}

.orb-3 {
  bottom: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- 3. REUSABLE UTILITY STYLES --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl) auto;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

@media(min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Gradients text utility */
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow-violet);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(16, 22, 47, 0.6);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--color-violet);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Glass card basic styles */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

/* Badge style */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-violet {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-violet);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* --- 4. HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: rgba(7, 9, 19, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition-fast);
}

.header.scrolled {
  background: rgba(7, 9, 19, 0.9);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--grad-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: var(--spacing-lg);
}

@media(min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  display: none;
}

@media(min-width: 768px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
}

/* Hamburger mobile menu button */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

@media(min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* Active state of mobile menu drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 95;
  padding: 120px var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: transform var(--transition-normal);
}

.mobile-nav.open {
  transform: translateX(-100%);
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- 5. HERO SECTION --- */
.hero {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
  padding-bottom: var(--spacing-xl);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media(min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

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

@media(min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-md);
}

@media(min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media(min-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 992px) {
  .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

@media(min-width: 480px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media(min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
}

@media(min-width: 992px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

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

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Mockup Preview container */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-element {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0) 75%);
  z-index: 0;
}

.hero-img-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--glow-violet);
  overflow: hidden;
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
  background-color: var(--bg-secondary);
}

.hero-img-card img {
  width: 100%;
  display: block;
}

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

/* Decorative widgets overlaying hero mockup */
.floating-overlay-card {
  position: absolute;
  background: rgba(16, 22, 47, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.card-ai-indicator {
  top: 15%;
  left: -10%;
  animation: float-slow 7s ease-in-out infinite;
}

.card-rating-indicator {
  bottom: 12%;
  right: -5%;
  animation: float-reverse 5s ease-in-out infinite;
}

.indicator-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.indicator-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.indicator-details h5 {
  font-size: 0.875rem;
  font-weight: 600;
}

.indicator-details p {
  font-size: 0.75rem;
}

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

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

/* --- 9. PRICING SECTION --- */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.toggle-label.active {
  color: var(--text-primary);
}

.pricing-switch-outer {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast);
}

.pricing-switch-outer.active {
  background: var(--color-violet);
  border-color: var(--color-violet);
}

.pricing-switch-toggle {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.pricing-switch-outer.active .pricing-switch-toggle {
  transform: translateX(24px);
}

.pricing-save-badge {
  font-size: 0.7rem;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: var(--color-pink);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: stretch;
}

@media(min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}

/* Display 3 pricing columns on large desktop screens */
@media(min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--color-violet);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card-header {
  margin-bottom: var(--spacing-md);
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-card-header p {
  font-size: 0.875rem;
}

.pricing-price-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: all var(--transition-fast);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.pricing-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.pricing-benefit-item.disabled {
  color: var(--text-muted);
}

.benefit-bullet-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.pricing-benefit-item:not(.disabled) .benefit-bullet-icon {
  color: var(--color-cyan);
}

.pricing-benefit-item.disabled .benefit-bullet-icon {
  color: var(--text-muted);
}

.pricing-cta {
  width: 100%;
}

/* --- 12. CALL TO ACTION SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(16, 22, 47, 0.8) 0%, rgba(12, 15, 36, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(99, 102, 241, 0.05);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

@media(min-width: 768px) {
  .cta-title {
    font-size: 2.75rem;
  }
}

.cta-desc {
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
}

/* --- 13. FOOTER --- */
.footer {
  background: #04060c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
  max-width: 600px;
}

.footer-info p {
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: var(--spacing-lg);
}

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

.footer-socials {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--color-violet);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- 14. ENTRANCE FADE ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- 15. CUSTOMER REVIEWS CAROUSEL --- */
.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.slider-arrow.prev-arrow {
  left: -24px;
}

.slider-arrow.next-arrow {
  right: -24px;
}

.slider-arrow:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: var(--color-violet);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1200px) {
  .slider-arrow.prev-arrow {
    left: -12px;
  }
  .slider-arrow.next-arrow {
    right: -12px;
  }
}

@media (max-width: 768px) {
  .reviews-slider-wrapper {
    padding: 0 0.5rem;
  }
  .slider-arrow.prev-arrow {
    left: 2px;
  }
  .slider-arrow.next-arrow {
    right: 2px;
  }
}


.reviews-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0.5rem;
  margin-top: 2rem;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

.reviews-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
  width: 380px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  height: 100%;
  border-top: 2px solid transparent;
  transition: all var(--transition-fast);
}

.review-card:hover {
  border-top-color: var(--color-cyan);
  box-shadow: var(--shadow-md), 0 10px 30px rgba(34, 211, 238, 0.04);
}

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

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.review-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* --- 16. MODAL SYSTEM --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 90%;
  max-width: 500px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(16, 22, 47, 0.95) 0%, rgba(12, 15, 36, 0.98) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(139, 92, 246, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Form Styles inside Modal */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgba(148, 163, 184, 0.8)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-violet);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.btn-block {
  width: 100%;
}

