/* ============================================================================
   MODERN ITALIAN SUCCESSION PLANNING SITE - REDESIGNED
   ============================================================================ */

/* ROOT VARIABLES - NEW COLOR SCHEME */
:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #ede9fe;
  --secondary-color: #06b6d4;
  --accent-color: #ec4899;
  --success-color: #10b981;
  
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  background: linear-gradient(135deg, #fafafa 0%, #f0f4ff 100%);
  background-attachment: fixed;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* TYPOGRAPHY */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 200ms ease;
}

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

/* ICONS - Using react-icons */
svg[class*="react-icon"] {
  color: currentColor;
  transition: all 300ms ease;
}

/* BUTTONS */
button {
  border: none;
  cursor: pointer;
  font-weight: 500;
  outline: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover:not(:disabled)::before {
  left: 100%;
}

.btn-secondary {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--gray-200);
}

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

.btn-outline:hover:not(:disabled) {
  background-color: var(--primary-light);
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  color: var(--gray-700);
}

.btn-icon:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

/* CARDS */
.card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.6s ease-out backwards;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
}

/* SECTIONS */
section {
  padding: 4rem 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: slideInLeft 0.6s ease-out 0.3s backwards;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-top: 1.5rem;
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.05);
  animation: fadeIn 0.5s ease-out;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 300ms ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

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

nav a {
  color: var(--gray-600);
  font-weight: 500;
  transition: all 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 300ms ease;
}

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

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0;
}

.nav-button {
  margin-left: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  padding: 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  padding: 4rem 1.5rem;
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 300ms ease;
}

.hero-feature:hover {
  transform: translateX(5px);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
  font-size: 4rem;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRID ANIMATIONS */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  animation-delay: calc(var(--card-index, 0) * 100ms);
}

/* FEATURE CARDS */
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), rgba(0, 217, 255, 0.1));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  flex-shrink: 0;
}

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

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out backwards;
  transition: all 300ms ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 150ms;
  color: var(--gray-900);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

/* PRICING */
.pricing-card {
  position: relative;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  background: white;
  animation: fadeInUp 0.6s ease-out backwards;
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-period {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: 700;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 150ms;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question h3 {
  margin-bottom: 0;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 700;
  transition: transform 200ms;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem;
  margin-top: auto;
  width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out backwards;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: all 300ms ease;
  position: relative;
  padding-left: 0;
}

.footer-section a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 300ms ease;
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 15px;
}

.footer-section a:hover::before {
  opacity: 1;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 0.75rem;
  transition: all 300ms ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 300ms ease;
  margin: 0;
  padding: 0;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--primary-color);
}

.footer-social a::before {
  display: none;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: all 300ms ease;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  display: inline-block;
  width: 24px;
  text-align: center;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 300ms ease;
  display: inline;
  margin: 0;
  padding: 0;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/* UTILITIES */
.text-center {
  text-align: center;
}

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

.text-secondary {
  color: var(--gray-600);
}

.text-muted {
  color: var(--gray-500);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.py-6 { padding: 3rem 0; }
.px-4 { padding: 0 1.5rem; }

.flex { display: flex; }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.items-center { align-items: center; }

.cursor-pointer {
  cursor: pointer;
}

.w-full {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 1rem;
  }

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

  nav {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  nav.open {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .hero-image {
    aspect-ratio: auto;
    min-height: 300px;
  }

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

  .benefits-section > div > div > div {
    grid-template-columns: 1fr !important;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .header-container {
    padding: 0 1rem;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  button {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  section {
    padding: 2rem 1rem;
  }

  .section-header h2::after {
    width: 40px;
  }

  .hero-container {
    padding: 0;
  }

  /* Testimonials Slider Mobile */
  .slider-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .slider-button {
    position: static;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-prev,
  .slider-next {
    order: 0;
  }

  .slider-content {
    order: 0;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .slider-indicators {
    margin-top: 1rem;
    gap: 0.4rem;
  }

  .indicator {
    width: 7px;
    height: 7px;
  }

  .indicator.active {
    width: 10px;
    height: 10px;
  }
}

/* ============================================================================
   TESTIMONIALS SLIDER
   ============================================================================ */

.testimonials-slider {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  padding: 4rem 0;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.slider-content {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  width: 100%;
  animation: slideInUp 0.6s ease-out;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-top: 1rem;
}

.slider-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.slider-button:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
}

.slider-prev {
  order: -1;
}

.slider-next {
  order: 1;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
}

.indicator.active {
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.indicator:hover {
  transform: scale(1.2);
}

/* ============================================================================
   BENEFITS SECTION - UNIQUE DESIGN
   ============================================================================ */

.benefits-section {
  background: linear-gradient(180deg, #fafafa 0%, #f5f7ff 100%);
  padding: 5rem 0;
}

.benefits-section h2 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

.benefits-section h4 {
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.benefits-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-right {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.benefits-right::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-right::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-content {
  position: relative;
  z-index: 1;
}

.benefits-stat {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.benefits-title {
  font-size: 1.3rem;
  margin: 0 0 2rem 0;
  color: var(--gray-800);
}

.benefits-quote {
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .benefits-right {
    padding: 2rem;
  }

  .benefits-section h2 {
    font-size: 1.75rem;
  }

  .benefits-stat {
    font-size: 2.5rem;
  }

  .slider-wrapper {
    gap: 1rem;
  }

  .slider-button {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .slider-content {
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .slider-indicators {
    gap: 0.5rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 12px;
    height: 12px;
  }

  .cta-section .section-container {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    gap: 1.5rem;
  }

  .benefits-left {
    gap: 0.75rem;
  }

  .benefits-right {
    padding: 1.5rem;
  }

  .benefits-stat {
    font-size: 2rem;
  }

  .benefits-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .benefits-quote {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite 1s;
  pointer-events: none;
}

.cta-section .section-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 800px;
}

.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: unset;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  animation: slideInUp 0.8s ease-out;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.cta-section .btn-primary {
  animation: slideInUp 0.8s ease-out 0.4s backwards;
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .slider-wrapper {
    gap: 1rem;
  }

  .slider-button {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .slider-content {
    min-height: 320px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .slider-indicators {
    gap: 0.5rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 12px;
    height: 12px;
  }

  .cta-section .section-container {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}
