/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #1e293b;
  --text-color: #334155;
  --text-light: #64748b;
  --text-dark: #0f172a;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.logo-ticket {
  color: var(--text-dark);
}

.logo-jam {
  color: var(--primary-color);
}

.navbar:not(.scrolled) .logo-ticket {
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

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

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.navbar:not(.scrolled) .mobile-menu-btn span {
  background: white;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

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

  .nav-links .nav-link {
    color: var(--text-dark);
  }

  .navbar .btn-primary {
    display: none;
  }

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

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.85));
}

.hero-content {
  max-width: 800px;
  text-align: center;
  color: white;
}

.hero-content h1 {
  color: white;
  margin-bottom: 24px;
}

.hero-content .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-buttons .btn-secondary:hover {
  background: white;
  border-color: white;
  color: var(--text-dark);
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--bg-light);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

  .features-image {
    order: -1;
  }
}

.features-text h2 {
  margin-bottom: 16px;
}

.features-subtitle {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.features-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Stats Section */
.stats {
  padding: 100px 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

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

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.value-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies {
  padding: 100px 0;
  background: var(--bg-light);
}

.case-studies-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.featured-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .featured-case {
    grid-template-columns: 1fr;
  }
}

.featured-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.featured-case-content {
  padding: 40px;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 24px;
}

.quote-mark {
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-quote p {
  font-size: 1.15rem;
  color: var(--text-color);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.case-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.case-card-avatar {
  width: 56px;
  height: 56px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 16px;
}

.case-card h4 {
  margin-bottom: 4px;
}

.case-card-type {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.case-card p {
  font-size: 0.95rem;
  color: var(--text-color);
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
}

.contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-feature h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Image */
.contact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* =====================
   Features Page Styles
   ===================== */

/* Features Hero */
.features-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

.features-hero-bg {
  position: absolute;
  inset: 0;
}

.features-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.features-hero .container {
  position: relative;
  z-index: 1;
}

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

.features-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.features-hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .features-hero h1 {
    font-size: 2.5rem;
  }
}

/* Feature Categories */
.feature-categories {
  padding: 100px 0;
  background: var(--bg-white);
}

.feature-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.feature-tab {
  padding: 12px 24px;
  background: var(--bg-gray);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
}

.feature-tab:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

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

.feature-tab-content {
  display: none;
}

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

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

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

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

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

.feature-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Payment Highlight */
.payment-highlight {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.payment-highlight-content {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 40px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
}

.payment-highlight-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.payment-highlight-text h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.payment-highlight-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.payment-highlight-text strong {
  color: #22d3ee;
}

@media (max-width: 600px) {
  .payment-highlight-content {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Feature Showcase */
.feature-showcase {
  padding: 100px 0;
  background: var(--bg-white);
}

.feature-showcase.alt {
  background: var(--bg-light);
}

.feature-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-showcase-content.reverse {
  direction: rtl;
}

.feature-showcase-content.reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .feature-showcase-content,
  .feature-showcase-content.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-showcase-image {
    order: -1;
  }
}

.feature-showcase-text .features-label {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
}

.feature-showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-showcase-text > p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-showcase-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-color);
}

.feature-showcase-list svg {
  color: var(--success-color);
  flex-shrink: 0;
}

.feature-showcase-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Feature Testimonial */
.feature-testimonial {
  padding: 80px 0;
  background: var(--bg-light);
}

.feature-testimonial.alt {
  background: var(--bg-white);
}

.feature-testimonial blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.feature-testimonial blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-testimonial cite {
  display: block;
  font-style: normal;
}

.feature-testimonial cite strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.feature-testimonial cite span {
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .feature-testimonial blockquote p {
    font-size: 1.25rem;
  }
}

/* Features CTA */
.features-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 100%);
}

.features-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.features-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.features-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 32px;
}

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

.features-cta .btn-primary:hover {
  background: var(--bg-light);
}
