/* ============================================
   Color System & Variables
   ============================================ */
:root {
  /* Main Gradient Colors */
  --gradient-start: #6B46C1;
  --gradient-mid: #7C3AED;
  --gradient-end: #0EA5E9;
  --gradient-teal: #06B6D4;
  
  /* Accent Colors */
  --accent-teal: #06B6D4;
  --accent-pink: #EC4899;
  --accent-orange: #F97316;
  --accent-blue: #3B82F6;
  
  /* Neutral Colors */
  --text-white: #FFFFFF;
  --text-light: #E5E7EB;
  --text-gray: #9CA3AF;
  --text-dark: #1F2937;
  --bg-dark: #0F172A;
  --bg-darker: #020617;
  
  /* Glow Effects */
  --glow-teal: rgba(6, 182, 212, 0.5);
  --glow-pink: rgba(236, 72, 153, 0.5);
  --glow-orange: rgba(249, 115, 22, 0.5);
  --glow-blue: rgba(59, 130, 246, 0.5);
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1E293B 100%);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* ============================================
   Animated Background Gradient
   ============================================ */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-teal);
  text-shadow: 0 0 20px var(--glow-teal);
  animation: pulse 2s ease-in-out infinite;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all var(--transition-normal);
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 80%;
}

.nav-menu a:hover {
  color: var(--accent-teal);
  text-shadow: 0 0 10px var(--glow-teal);
}

.nav-menu a.active {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent-teal);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right var(--transition-normal);
    border-left: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
  }
  
  .hero {
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0 60px;
  }
  
  .hero .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    word-wrap: break-word;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
  }
  
  .hero-content .subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
  border: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
}

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

.hero-image:hover img {
  transform: scale(1.05);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-pink) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-teal) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content {
  max-width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  width: 100%;
}

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

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--glow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--glow-teal);
  background: #0891B2;
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(6, 182, 212, 0.5);
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px var(--glow-teal);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* ============================================
   Cards & Grid
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-teal);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  box-shadow: 0 4px 20px var(--glow-teal);
}

.card-image {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
}

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

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

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.card p {
  color: var(--text-light);
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-teal);
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.card-link:hover {
  gap: 12px;
  text-shadow: 0 0 10px var(--glow-teal);
}

/* ============================================
   Stats / Counter Animation
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-teal);
  text-shadow: 0 0 20px var(--glow-teal);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-light);
  font-size: 16px;
}

/* ============================================
   Forms
   ============================================ */
.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 16px;
  transition: all var(--transition-normal);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px var(--glow-teal);
  background: rgba(255, 255, 255, 0.08);
}

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

/* ============================================
   Map Container
   ============================================ */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(6, 182, 212, 0.3);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-light);
}

.cookie-text a {
  color: var(--accent-teal);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  padding: 60px 20px 30px;
  margin-top: 100px;
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-teal);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 2;
  transition: color var(--transition-normal);
}

.footer-section a:hover {
  color: var(--accent-teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--text-gray);
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Thank You Page
   ============================================ */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--accent-teal);
}

.thank-you-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  /* Contact form responsive */
  .contact-form-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  /* Tables responsive */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  table {
    min-width: 600px;
  }
  
  .testimonials-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  /* Factoring steps responsive */
  .card[style*="max-width: 900px"] > div[style*="flex-direction: column"] > div {
    flex-direction: column !important;
  }
  
  .card[style*="max-width: 900px"] > div[style*="flex-direction: column"] > div > div {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Button Ripple Effect
   ============================================ */
.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================
   Tables
   ============================================ */
.table-container {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

table thead {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

table th {
  padding: 20px;
  text-align: left;
  color: var(--accent-teal);
  font-weight: 600;
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}

table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  color: var(--text-light);
}

table tbody tr {
  transition: all var(--transition-normal);
}

table tbody tr:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateX(5px);
}

table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Accordion
   ============================================ */
.accordion {
  margin: 40px 0;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.accordion-item:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.accordion-header:hover {
  color: var(--accent-teal);
}

.accordion-header::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-teal);
  transition: transform var(--transition-normal);
  font-weight: 300;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease-out;
}

.accordion-content-inner {
  padding: 0 25px 25px;
  color: var(--text-light);
  line-height: 1.8;
}

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

/* ============================================
   Testimonials / Reviews
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 35px;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 80px;
  color: var(--accent-teal);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-teal);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

.testimonial-info h4 {
  color: var(--text-white);
  margin-bottom: 5px;
  font-size: 16px;
}

.testimonial-info p {
  color: var(--text-gray);
  font-size: 14px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  color: #FBBF24;
}

/* ============================================
   Articles / Blog Posts
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.article-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-teal);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.article-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-gray);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-content h3 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 22px;
}

.article-content h3 a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.article-content h3 a:hover {
  color: var(--accent-teal);
}

.article-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-link {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.article-link:hover {
  gap: 12px;
  text-shadow: 0 0 10px var(--glow-teal);
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table {
  margin: 40px 0;
}

.comparison-table table th:first-child,
.comparison-table table td:first-child {
  font-weight: 600;
  color: var(--accent-teal);
}

.comparison-table table td {
  text-align: center;
}

.comparison-table .check {
  color: #10B981;
  font-size: 20px;
  font-weight: bold;
}

.comparison-table .cross {
  color: #EF4444;
  font-size: 20px;
  font-weight: bold;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

