/**
 * Index Page Specific Styles
 */

.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 48px 0;
}

.hero-section {
  text-align: center;
  margin-bottom: 20px;
}

.hero-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon img {
  height: 48px;
  width: auto;
  display: block;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* AI Platform Logo Rotator */
.ai-platform-rotator {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: middle;
  width: 175px; /* Fixed width based on ChatGPT for centered appearance */
  height: 1em;
  color: #000000;
  margin-left: 8px; /* Add breathing room before the logo */
  transform: translateY(-6px); /* Move up slightly for better alignment */
}

.ai-platform-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, filter;
  backface-visibility: hidden;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.ai-logo {
  height: 1em; /* Match text height */
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.ai-name {
  font-size: inherit;
  font-weight: inherit;
  color: #000000;
  line-height: 1;
}

/* Animation keyframes - 8 second cycle (2s per platform) with blur effect */
@keyframes aiPlatformRotate1 {
  0%, 22.5% { opacity: 1; filter: blur(0px); }
  25%, 100% { opacity: 0; filter: blur(10px); }
}

@keyframes aiPlatformRotate2 {
  0%, 22.5% { opacity: 0; filter: blur(10px); }
  25%, 47.5% { opacity: 1; filter: blur(0px); }
  50%, 100% { opacity: 0; filter: blur(10px); }
}

@keyframes aiPlatformRotate3 {
  0%, 47.5% { opacity: 0; filter: blur(10px); }
  50%, 72.5% { opacity: 1; filter: blur(0px); }
  75%, 100% { opacity: 0; filter: blur(10px); }
}

@keyframes aiPlatformRotate4 {
  0%, 72.5% { opacity: 0; filter: blur(10px); }
  75%, 97.5% { opacity: 1; filter: blur(0px); }
  100% { opacity: 0; filter: blur(10px); }
}

.ai-platform-item:nth-child(1) {
  animation: aiPlatformRotate1 8s ease-in-out infinite;
}

.ai-platform-item:nth-child(2) {
  animation: aiPlatformRotate2 8s ease-in-out infinite;
}

.ai-platform-item:nth-child(3) {
  animation: aiPlatformRotate3 8s ease-in-out infinite;
}

.ai-platform-item:nth-child(4) {
  animation: aiPlatformRotate4 8s ease-in-out infinite;
}

/* Accessibility: Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .ai-platform-item {
    animation: none !important;
  }

  .ai-platform-item:first-child {
    opacity: 1 !important;
    filter: blur(0px) !important;
  }

  .ai-platform-item:not(:first-child) {
    opacity: 0 !important;
    filter: blur(10px) !important;
  }
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.inline-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  font-size: 14px;
  transition: border-color 0.2s;
  font-family: inherit;
  background: white;
}

.inline-input:focus {
  outline: none;
  border-color: #000000;
}

.inline-input::placeholder {
  color: #94a3b8;
}

.submit-btn {
  background: #000000;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.submit-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.feature-card:nth-child(1)::before {
  background: radial-gradient(ellipse at 50% 100%, #fbbf24 0%, #fb923c 30%, #f97316 50%, transparent 80%);
}

.feature-card:nth-child(2)::before {
  background: radial-gradient(ellipse at 50% 100%, #3b82f6 0%, #8b5cf6 30%, #a78bfa 50%, transparent 80%);
}

.feature-card:nth-child(3)::before {
  background: radial-gradient(ellipse at 50% 100%, #10b981 0%, #34d399 30%, #3b82f6 50%, transparent 80%);
}

.feature-card:nth-child(4)::before {
  background: radial-gradient(ellipse at 50% 100%, #3b82f6 0%, #6366f1 25%, #ec4899 50%, #ef4444 65%, transparent 85%);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.feature-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-description {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 2px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-visual {
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  position: relative;
  z-index: 1;
}

.feature-icon {
  font-size: 48px;
  opacity: 0.9;
}

/* Logo Banner Section */
.logo-banner-section {
  padding: 80px 0;
  background: white;
  overflow: hidden;
  margin-top: 0;
}

.logo-banner-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.logo-banner-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade effect on left edge */
.logo-banner-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(to right, white, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Fade effect on right edge */
.logo-banner-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(to left, white, transparent);
  z-index: 2;
  pointer-events: none;
}

.logo-banner-track {
  display: flex;
  gap: 60px;
  animation: scroll 60s linear infinite;
  width: fit-content;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials Section - Vertical Multi-Column */
.testimonials-section {
  padding: 100px 48px;
  background: white;
  margin-top: 0;
  position: relative;
}

.testimonials-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 60px;
  letter-spacing: -0.025em;
}

.testimonials-columns-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  height: 600px;
  overflow: hidden;
  position: relative;
}

/* Gradient fade overlays */
.testimonials-columns-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, white 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.testimonials-columns-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, white 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.testimonial-column:hover {
  animation-play-state: paused;
}

/* Different speeds for each column */
.column-1 {
  animation: scrollUp1 40s linear infinite;
}

.column-2 {
  animation: scrollUp2 50s linear infinite;
}

.column-3 {
  animation: scrollUp3 45s linear infinite;
}

.column-4 {
  animation: scrollUp4 55s linear infinite;
}

@keyframes scrollUp1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card-small {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  min-height: 220px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-quote-small {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px 0;
}

.testimonial-author-small {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f1f1;
}

.author-avatar-small {
  flex-shrink: 0;
}

.author-info-small {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name-small {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.author-title-small {
  font-size: 13px;
  color: #94a3b8;
}

/* FAQ Section */
.message {
  max-width: 600px;
  margin: 0 auto 16px;
  padding: 12px 18px;
  border-radius: 8px;
  display: none;
  text-align: center;
  font-size: 14px;
}

.message.success {
  background: #f0fdf4;
  border: 2px solid #10b981;
  color: #065f46;
}

.message.error {
  background: #fef2f2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.message.show {
  display: block;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.2s ease-in-out;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #000000;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: #64748b;
}

.modal-message {
  padding: 12px 18px;
  border-radius: 8px;
  display: none;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-message.success {
  background: #f0fdf4;
  border: 2px solid #10b981;
  color: #065f46;
}

.modal-message.error {
  background: #fef2f2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.modal-message.show {
  display: block;
}

.tier-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.tier-option {
  position: relative;
  cursor: pointer;
}

.tier-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.tier-card {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  background: white;
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tier-option input[type="radio"]:checked + .tier-card {
  border-color: #000000;
  background: #f8fafc;
}

.tier-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.tier-price .currency {
  font-size: 20px;
  color: #64748b;
}

.tier-features {
  list-style: none;
  margin-top: auto;
}

.tier-features li {
  padding: 6px 0;
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tier-features li:before {
  content: "✓";
  color: #10b981;
  font-weight: 600;
  flex-shrink: 0;
}

.tier-features li.negative:before {
  content: "✕";
  color: #ef4444;
}

/* Email Subscription Checkbox */
.email-subscription-container {
  margin-top: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #000000;
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .main-container {
    padding: 32px 20px 0;
  }

  .hero-section {
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .ai-platform-rotator {
    width: 160px;
  }

  .ai-platform-item {
    gap: 6px;
  }

  .ai-logo {
    height: 0.9em;
  }

  .hero-icon img {
    height: 40px;
  }

  /* Form mobile improvements */
  .form-container {
    padding: 0;
  }

  .form-container > div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .inline-input {
    padding: 14px 20px;
    font-size: 16px; /* Prevents iOS zoom on focus */
    width: 100%;
  }

  .submit-btn {
    width: auto !important;
    padding: 14px 32px !important;
    align-self: center;
  }

  .input-group {
    flex-direction: column;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-description {
    font-size: 14px;
  }

  .feature-visual {
    min-height: 100px;
    padding: 20px;
  }

  .feature-icon {
    font-size: 40px;
  }

  /* Logo banner */
  .logo-banner-section {
    padding: 60px 0;
    margin-top: 0;
  }

  .logo-banner-title {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .logo-banner-track {
    gap: 40px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 24px;
    margin-top: 60px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonials-columns-container {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 350px;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonials-columns-container::before,
  .testimonials-columns-container::after {
    height: 50px;
  }

  .testimonial-card-small {
    padding: 12px 10px;
  }

  .testimonial-quote-small {
    font-size: 11px;
    line-height: 1.35;
  }

  .author-name-small {
    font-size: 10px;
  }

  .author-title-small {
    font-size: 9px;
  }

  /* Modal improvements */
  .modal-content {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-header {
    margin-bottom: 24px;
  }

  .modal-content > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .tier-selector {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tier-card {
    padding: 20px;
  }

  .tier-name {
    font-size: 18px;
  }

  .tier-price {
    font-size: 28px;
  }

  .modal-content .submit-btn {
    margin: 0 auto;
    display: block;
  }

  /* Footer improvements */
  footer {
    padding: 24px 20px !important;
    font-size: 11px !important;
    background: #fafafa !important;
    margin-top: 0 !important;
  }

  footer a {
    display: inline-block;
    margin: 4px 8px !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .inline-input {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }

  .submit-btn {
    width: auto !important;
    padding: 12px 28px !important;
    font-size: 14px;
    align-self: center;
  }

  .modal-title {
    font-size: 22px;
  }

  .tier-price {
    font-size: 24px;
  }
}

/* Report Preview Placeholder */
.report-preview-placeholder {
  margin-top: 60px;
  text-align: center;
  /* Break out of container padding to fill full width */
  margin-left: -48px;
  margin-right: -48px;
}

.report-preview-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

.report-preview-container:hover {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.report-preview-caption {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 16px;
}

/* Hero Report Preview Image */
.report-preview-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Title Styles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  margin-bottom: 48px;
}

/* ===== TABS SECTION ===== */
.tabs-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 48px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Thin-line box design for tab header */
.tabs-header {
  display: flex;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  background: #ffffff;
  margin-bottom: 48px;
  overflow-x: auto;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid transparent;
  background: transparent;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  white-space: nowrap;
  font-family: inherit;
}

.tab-button.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tab-button:hover:not(.active) {
  color: #000000;
  background: #f8f9fa;
}

/* Tab panels */
.tabs-content {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.tab-panel {
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  pointer-events: none;
}

.tab-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tab-text-content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tab-text-content .submit-btn {
  margin-top: auto;
  align-self: flex-start;
}

.tab-heading {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.tab-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.tab-image-content {
  max-width: 600px;
}

/* Thin-line box for screenshot */
.tab-screenshot-box {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.tab-screenshot-box img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

/* Feature checklist below screenshots */
.tab-features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.tab-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.tab-feature-item span {
  flex: 1;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 48px;
  background: #ffffff;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #000000;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-carousel {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
}

/* Show 3 cards at a time */
.testimonial-card {
  min-width: calc((100% - 48px) / 3);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px;
  background: #ffffff;
  transition: box-shadow 0.2s;
  flex-shrink: 0;
}

.testimonial-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Star ratings */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  font-size: 18px;
  color: #d1d5db;
}

.star.filled {
  color: #000000;
}

.star.half {
  position: relative;
  color: #d1d5db;
}

.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #000000;
  width: 50%;
  overflow: hidden;
}

/* Testimonial content */
.testimonial-quote {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #64748b;
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-arrow-left {
  left: 0;
}

.carousel-arrow-right {
  right: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .testimonials-carousel-wrapper {
    padding: 0 50px;
  }

  .testimonial-card {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 0 24px;
    margin: 60px auto;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 40px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 48px;
  background: white;
  text-align: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + 48px);
  padding-right: calc(50vw - 50% + 48px);
  margin-bottom: 0;
}

/* Footer */
footer {
  background: #fafafa;
  margin: 0;
  padding: 30px 20px;
}

.final-cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.final-cta-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
}

.final-cta-button {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.final-cta-button:hover {
  background: #333333;
  transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  /* Styles for tablet devices */
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .final-cta-section {
    padding: 60px 24px;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .final-cta-button {
    display: block;
    width: 100%;
  }

  /* Adjust hero container for mobile */
  .report-preview-container {
    border-radius: 8px;
  }

  /* Adjust hero image for mobile */
  .report-preview-image {
    max-width: 100%;
  }

  .report-preview-placeholder {
    margin-left: -20px;  /* Mobile has less padding (20px vs 48px) */
    margin-right: -20px;
  }

  /* Tabs section mobile responsive */
  .tabs-section {
    margin: 60px 16px;
    padding: 24px;
  }

  .tabs-content {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .tab-panel {
    position: relative;
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
  }

  .tab-panel:not(.active) {
    display: none;
  }

  .tabs-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    max-width: 100%;
  }

  .tab-button {
    flex: 0 1 calc(33.33% - 1px);
    font-size: 13px;
    padding: 10px 8px;
    white-space: normal;
    text-align: center;
  }

  .tab-heading {
    font-size: 24px;
  }

  .tab-image-content {
    max-width: 100%;
  }

  .tab-heading {
    margin-bottom: 8px;
  }

  .tab-description {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .tab-features-list {
    margin-top: 12px;
    gap: 8px;
  }

  .tab-feature-item {
    font-size: 13px;
  }

  .tab-text-content {
    height: auto;
  }

  .tab-text-content .submit-btn {
    margin-top: 16px;
  }
}
