/* ================================================
   AutoAssessIQ - Premium B2B SaaS Stylesheet
   Style: Stripe-inspired Fintech
   ================================================ */

:root {
  /* === PRIMARY BLUE MARINE (Dark fintech) === */
  --primary-900: #0A1628;  /* Bleu marine très foncé, presque noir */
  --primary-800: #0D2847;
  --primary-700: #1E3A5F;
  --primary-600: #0A2540;  /* Bleu marine foncé */
  --primary-500: #1E4C7A;  /* Bleu marine clair */
  --primary-400: #2A5C8A;  /* Bleu marine hover */
  --primary-300: #93C5FD;
  --primary-200: #BFDBFE;
  --primary-100: #DBEAFE;
  --primary-50:  #EFF6FF;

  /* === NEUTRAL SCALE === */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* === SUCCESS === */
  --success-700: #047857;
  --success-600: #059669;
  --success-500: #10B981;
  --success-100: #D1FAE5;
  --success-50:  #ECFDF5;

  /* === WARNING === */
  --warning-600: #D97706;
  --warning-50:  #FEF3C7;

  /* === DANGER === */
  --danger-600: #DC2626;
  --danger-50:  #FEE2E2;

  /* === PURPLE ACCENT === */
  --purple-600: #7C3AED;
  --purple-50:  #F5F3FF;

  /* === GRADIENTS === */
  --gradient-blue: linear-gradient(135deg, #0A2540 0%, #1E4C7A 100%);
  --gradient-premium: linear-gradient(135deg, #0A2540 0%, #1E4C7A 100%);
  --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-dark: linear-gradient(135deg, #0A2540 0%, #1E4C7A 100%);

  /* === SHADOWS (Enhanced Premium) === */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.12), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.15), 0 4px 8px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.18), 0 8px 16px -6px rgba(0, 0, 0, 0.12);
  --shadow-premium: 0 12px 32px rgba(30, 58, 95, 0.18), 0 2px 8px rgba(30, 58, 95, 0.08);
  --shadow-card-hover: 0 20px 40px -8px rgba(0, 0, 0, 0.2), 0 8px 16px -6px rgba(0, 0, 0, 0.12);
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu', sans-serif;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px; /* Hauteur navbar */
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
  color: var(--slate-900);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.875rem; line-height: 1.3; }
h4 { font-size: 1.5rem; line-height: 1.4; }
h5 { font-size: 1.25rem; line-height: 1.5; }

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

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-600);
}

/* Text Content Width Classes */
.text-content-narrow {
  max-width: 720px;
}

.text-content-default {
  max-width: 800px;
}

.text-content-wide {
  max-width: 900px;
}

/* ================================================
   COLOR UTILITIES
   ================================================ */

/* Text Colors */
.text-slate-900 { color: var(--slate-900) !important; }
.text-slate-800 { color: var(--slate-800) !important; }
.text-slate-700 { color: var(--slate-700) !important; }
.text-slate-600 { color: var(--slate-600) !important; }
.text-slate-500 { color: var(--slate-500) !important; }
.text-slate-400 { color: var(--slate-400) !important; }
.text-slate-300 { color: var(--slate-300) !important; }

.text-primary-600 { color: var(--primary-600) !important; }
.text-primary-700 { color: var(--primary-700) !important; }

/* Background Colors */
.bg-slate-50 { background-color: var(--slate-50) !important; }
.bg-slate-100 { background-color: var(--slate-100) !important; }
.bg-slate-900 { background-color: var(--slate-900) !important; }

.bg-primary-50 { background-color: var(--primary-50) !important; }
.bg-primary-600 { background-color: var(--primary-600) !important; }
.bg-primary-900 { background-color: var(--primary-900) !important; }

.bg-gradient-blue { background: var(--gradient-blue) !important; }
.bg-gradient-premium { background: var(--gradient-premium) !important; }
.bg-gradient-subtle { background: var(--gradient-subtle) !important; }
.bg-gradient-dark { background: var(--gradient-dark) !important; }

/* Border Colors */
.border-slate-200 { border-color: var(--slate-200) !important; }
.border-slate-300 { border-color: var(--slate-300) !important; }
.border-primary-600 { border-color: var(--primary-600) !important; }

/* ================================================
   SPACING UTILITIES
   ================================================ */

/* Section spacing with scroll offset */
section {
  scroll-margin-top: 90px; /* Offset pour navbar fixed */
}

.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-7 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

@media (min-width: 992px) {
  .py-6 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
  .py-7 { padding-top: 9rem !important; padding-bottom: 9rem !important; }
}

/* Augmentation marges mobile */
@media (max-width: 767px) {
  .py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .py-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}

/* ================================================
   NAVBAR
   ================================================ */

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 72px;
  display: flex;
  align-items: center;
}

/* Menu mobile fullscreen moderne */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 2rem 0;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-nav {
    padding: 0 2rem;
  }
  
  .nav-item {
    border-bottom: 1px solid var(--slate-100);
  }
  
  .nav-link {
    padding: 1.25rem 0 !important;
    font-size: 1.125rem;
    color: var(--slate-900) !important;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .navbar-collapse .d-flex {
    flex-direction: column;
    padding: 0 2rem;
    gap: 1rem !important;
    margin-top: 2rem;
    border-top: 1px solid var(--slate-200);
    padding-top: 2rem;
  }
  
  .language-switcher {
    width: 100%;
  }
  
  .navbar-collapse .btn {
    width: 100%;
  }
  
  /* Hamburger menu icon */
  .navbar-toggler {
    border: 1px solid var(--slate-300); /* Reduced from 2px to 1px */
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
  }
  
  .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--slate-900) !important;
  letter-spacing: -0.03em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.nav-link {
  font-weight: 500;
  color: var(--slate-600) !important;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-600) !important;
}

.nav-link::after {
  /* Underline animation removed */
  display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
  /* Underline animation removed */
}

/* Language Switcher */
.language-switcher {
  font-weight: 500;
  color: var(--slate-600) !important;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1.25rem;  /* Réduit de 0.625rem à 0.5rem */
}

/* Animation flèche supprimée */
/* .btn::after { ... } */
/* .btn:hover::after { ... } */

.btn-primary {
  background: var(--primary-600);
  border: none;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-outline-secondary {
  border: 1px solid var(--slate-300); /* Reduced from 2px to 1px */
  color: var(--slate-700);
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
  color: var(--slate-900);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 1px solid var(--primary-600); /* Reduced from 2px to 1px */
  color: var(--primary-600);
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-primary:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-600);
}

.btn-lg {
  padding: 0.75rem 1.75rem;  /* Réduit de 0.875rem à 0.75rem */
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.375rem 1rem;  /* Réduit de 0.5rem à 0.375rem */
  font-size: 0.875rem;
}

/* Button Light (pour CTA dark section) */
.btn-light {
  background: white;
  color: var(--primary-700);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-light:hover {
  background: var(--slate-50);
  color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3); /* Reduced from 2px to 1px */
  color: white;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
}

/* ================================================
   SECTIONS
   ================================================ */

section {
  position: relative;
}

/* Hero Section Enhancement */
.hero-section {
  background: var(--gradient-subtle);
  position: relative;
  overflow: hidden;
}

/* Section Alternation */
section:nth-child(odd) {
  background-color: white;
}

section:nth-child(even) {
  background-color: var(--slate-50);
}

/* ================================================
   CARDS
   ================================================ */

.card {
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--slate-300);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Pricing Cards - Enhanced Premium Style */
.card.border-primary {
  border: none;
  box-shadow: var(--shadow-premium);
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.card.border-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-700) 0%, var(--primary-600) 100%);
  border-radius: 1rem 1rem 0 0;
}

.card.border-primary:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Trial Section Specific */
#trial .badge.bg-success {
  background-color: var(--success-600) !important;
  color: white !important;
  padding: 0.5rem 1rem;
  font-weight: 600 !important;
}

#trial .alert-info {
  background-color: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
}

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

#trial ul li i.bi-check-circle-fill {
  font-size: 1.25rem;
}

#trial .badge.bg-primary {
  background-color: var(--primary-600) !important;
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ================================================
   SHADOWS
   ================================================ */

.shadow-premium {
  box-shadow: var(--shadow-premium) !important;
}

.shadow-subtle {
  box-shadow: var(--shadow-xs) !important;
}

/* ================================================
   BADGES
   ================================================ */

.badge {
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  letter-spacing: 0.01em;
}

.bg-success {
  background-color: var(--success-600) !important;
}

.badge.bg-success {
  background-color: var(--success-50) !important;
  color: var(--success-700) !important;
}

/* ================================================
   ACCORDION (FAQ)
   ================================================ */

/* Container FAQ centré et réduit */
#faqAccordion,
#planComparisonAccordion {
  max-width: 900px;
  margin: 0 auto;
}

#planComparisonAccordion {
  max-width: 1000px;
}

.accordion-item {
  border: 1px solid var(--slate-200);
  margin-bottom: 1rem;
  border-radius: 0.75rem !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-button {
  font-weight: 600;
  color: var(--slate-900);
  background-color: white;
  border: none;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-50);
  color: var(--primary-700);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-600);
}

.accordion-button::after {
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--slate-600);
}

/* Table styling in comparison accordion */
.accordion-body table {
  margin-bottom: 0;
}

.accordion-body table thead th {
  background-color: var(--slate-50);
  color: var(--slate-900);
  font-weight: 600;
  border-bottom: 1px solid var(--slate-200); /* Reduced from 2px to 1px */
  padding: 1rem;
  font-size: 0.95rem;
  text-align: left;
}

.accordion-body table thead th.text-center {
  text-align: center;
}

.accordion-body table tbody td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
}

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

.accordion-body table tbody tr:hover {
  background-color: var(--slate-50);
}

/* Icon colors */
.text-success {
  color: var(--success-600) !important;
}

.text-danger {
  color: #DC2626 !important;
}

/* ================================================
   FORMS
   ================================================ */

.form-check-input:checked {
  background-color: var(--primary-600);
  border-color: var(--primary-600);
}

.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
}

/* ================================================
   IMAGES
   ================================================ */

.img-fluid {
  border-radius: 1rem;
}

.rounded-4 {
  border-radius: 1rem !important;
}

/* ================================================
   FOOTER
   ================================================ */

footer {
  background-color: var(--slate-900);
  color: white;
}

footer h5,
footer h6 {
  color: white;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

/* Footer Legal Links */
.footer-legal-links li {
  margin-bottom: 0;
}

.footer-legal-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-legal-links .list-inline-item:not(:last-child) {
  margin-right: 1.5rem;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--slate-400);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

/* Language Switcher Footer (Dropdown) */
.language-switcher-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-dropdown-btn {
  color: var(--slate-300) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.language-dropdown-btn:hover {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.dropdown-menu-dark {
  background-color: var(--slate-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu-dark .dropdown-item {
  color: var(--slate-300);
  padding: 0.5rem 1rem;
}

.dropdown-menu-dark .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.dropdown-menu-dark .dropdown-item.active {
  background-color: var(--primary-600);
  color: white;
}

/* Newsletter Form */
.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
}

.newsletter-form .form-control::placeholder {
  color: var(--slate-400);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-600);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.newsletter-form .btn-primary {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  white-space: nowrap;
}

/* Border Color */
.border-slate-700 {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-legal-links .list-inline-item:not(:last-child) {
    margin-right: 1rem;
  }
  
  .footer-legal-links a {
    font-size: 0.8125rem;
  }
}

/* ================================================
   UTILITIES
   ================================================ */

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

/* ================================================
   ANIMATIONS
   ================================================ */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ================================================
   METRICS SECTION
   ================================================ */

.metric-card {
  padding: 1.5rem 1rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
  transform: translateY(-4px);
}

.metric-number {
  font-size: 2.5rem;
  color: var(--primary-700);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .metric-number {
    font-size: 2rem;
  }
}

/* ================================================
   PARTNER LOGOS SECTION
   ================================================ */

.partner-logos-container {
  padding: 2rem 0;
}

.partner-logo {
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partner-logo svg {
  width: 120px;
  height: 40px;
}

@media (max-width: 768px) {
  .partner-logo svg {
    width: 100px;
    height: 36px;
  }
}

/* ================================================
   TRUST BADGES SECTION
   ================================================ */

.trust-badges-container {
  padding: 2rem 0;
}

.trust-badge {
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.trust-badge:hover {
  transform: translateY(-4px);
}

.trust-badge svg {
  transition: all 0.3s ease;
  filter: grayscale(50%);
}

.trust-badge:hover svg {
  filter: grayscale(0%);
}

.trust-badge:hover svg circle,
.trust-badge:hover svg rect,
.trust-badge:hover svg path {
  stroke: var(--primary-600);
}

.trust-badge:hover svg text {
  fill: var(--primary-700);
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

#testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  max-width: 800px;
  background: white;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--slate-700);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.9375rem;
  color: var(--primary-700);
  margin-bottom: 0.125rem;
}

.author-company {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-600);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0);
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--slate-300);
  border: none;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--primary-600);
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .author-info {
    text-align: center;
  }
}

/* ================================================
   INTEGRATIONS SECTION (Minimal Design)
   ================================================ */

.integration-card-minimal {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.integration-card-minimal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--slate-300);
}

/* Logo Container */
.integration-logo {
  display: flex;
  align-items: center;
}

.integration-logo svg {
  opacity: 0.9;
  transition: opacity 0.3s ease;
  max-width: 180px;
  height: auto;
}

.integration-card-minimal:hover .integration-logo svg {
  opacity: 1;
}

/* Badge Minimal (gris neutre) */
.badge-minimal {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-600);
  background-color: var(--slate-100);
  border-radius: 2rem;
  border: 1px solid var(--slate-200);
  white-space: nowrap;
}

/* Features List Minimal */
.integration-features-minimal {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.integration-features-minimal li {
  margin-bottom: 0.625rem;
  padding-left: 1.25rem;
  position: relative;
}

.integration-features-minimal li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--slate-400);
  font-weight: 600;
}

/* Button Styles */
.integration-card-minimal .btn {
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .integration-card-minimal {
    padding: 1.5rem 1rem;
  }
  
  .integration-logo svg {
    max-width: 100px;
    height: auto;
  }
  
  .badge-minimal {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
  }
}

/* Modal Custom Styles */
#earlyAccessModal .modal-content {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#earlyAccessModal .modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

#earlyAccessModal .modal-body {
  padding: 0.5rem 1.5rem 1.5rem;
}

#earlyAccessModal .form-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

#earlyAccessModal .form-control,
#earlyAccessModal .form-select {
  border-color: var(--slate-300);
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
}

#earlyAccessModal .form-control:focus,
#earlyAccessModal .form-select:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
}

#selectedIntegration {
  color: var(--primary-700);
}

/* Responsive */
@media (max-width: 768px) {
  .integration-card {
    padding: 1.5rem 1rem;
  }
  
  .integration-icon svg {
    width: 48px;
    height: 48px;
  }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

/* Fade-in from bottom */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Fade-in from left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Fade-in from right */
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Scale up animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger effect for cards */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for stagger effect */
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }

/* Hero parallax effect */
#hero {
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: parallaxPulse 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes parallaxPulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, -2%) scale(1.05); }
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
  .navbar,
  footer,
  .btn {
    display: none !important;
  }
}