/* ═══════════════════════════════════════════════════════════
   ShipFlow Landing Page - Design Identique Billiz
   ═══════════════════════════════════════════════════════════ */

* {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #000000;
}

/* Variables Billiz */
:root {
  --primary: #0A58EB;
  --background: #ffffff;
  --foreground: #000000;
  --muted: rgba(0, 0, 0, 0.5);
  --border: rgba(0, 0, 0, 0.1);
  --input: rgba(0, 0, 0, 0.1);
  --radius: 0.375rem;
}

/* Hero Section - Exact Billiz */
.hero-gradient {
  background: linear-gradient(to bottom, #ffffff 0%, #fafbff 50%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-gradient {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-gradient {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

/* Grille Billiz en arrière-plan avec fondu radial */
.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(10, 88, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 88, 235, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-mask-image: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
}

/* Buttons - Style Billiz exact */
.btn-primary {
  background: var(--primary);
  color: white;
  height: 3.25rem;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10, 88, 235, 0.2);
}

.btn-primary:hover {
  background: #0849c9;
  box-shadow: 0 8px 20px rgba(10, 88, 235, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.3);
}

.btn-secondary {
  background: var(--background);
  border: 1px solid var(--input);
  height: 2.5rem; /* h-10 */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  border-radius: var(--radius);
  color: var(--foreground);
  font-weight: 500;
  transition: all 200ms;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* Inputs - Style Billiz */
input[type="email"],
input[type="text"] {
  background: var(--background);
  border: 1.5px solid var(--input);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  height: 2.75rem;
  transition: all 200ms;
  outline: none;
  font-size: 0.9375rem;
}

input[type="email"]:focus,
input[type="text"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 88, 235, 0.1);
}

input[type="email"]:hover:not(:focus),
input[type="text"]:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.2);
}

/* Radio buttons */
input[type="radio"] {
  cursor: pointer;
  accent-color: var(--primary);
}

/* Text colors Billiz */
.text-primary {
  color: var(--primary);
}

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

/* Cards - Billiz minimaliste (sans ombre) */
.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  width: 100%;
  max-width: 400px;
}

.feature-card:hover {
  border-color: rgba(10, 88, 235, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 88, 235, 0.08);
}

/* Container Billiz */
.container-billiz {
  max-width: 72rem; /* max-w-6xl */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container-billiz {
    padding-left: 1.25rem; /* lg:px-5 */
    padding-right: 1.25rem;
  }
}

/* Sections */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Typography Billiz */
.heading-hero {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .heading-hero {
    font-size: 3rem;
    line-height: 1.15;
  }
}

@media (min-width: 1024px) {
  .heading-hero {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

.subheading {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .subheading {
    font-size: 1.1875rem;
  }
}

@media (min-width: 1024px) {
  .subheading {
    font-size: 1.3125rem;
  }
}

/* Spacing Billiz */
.mt-5 {
  margin-top: 1.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Gap utilities */
.gap-billiz {
  gap: 0.5rem; /* gap-2 */
}

@media (min-width: 768px) {
  .gap-billiz {
    gap: 1.25rem; /* md:gap-5 */
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.875rem; /* text-3xl */
  }
}

/* Table - Simple Billiz style */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.comparison-table .overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table th {
  background: #fafafa;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table th.bg-blue-50 {
  background: rgba(10, 88, 235, 0.05);
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.comparison-table td.bg-blue-50 {
  background: rgba(10, 88, 235, 0.03);
}

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

/* Mobile responsive table */
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
  }

  .comparison-table th:first-child {
    background: #fafafa;
  }
}

/* Form container */
.form-container {
  background: white;
  border: 1px solid rgba(10, 88, 235, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(10, 88, 235, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-container:hover {
  box-shadow: 0 12px 48px rgba(10, 88, 235, 0.15);
  border-color: rgba(10, 88, 235, 0.25);
}

@media (min-width: 768px) {
  .form-container {
    padding: 3rem;
  }
}

@media (max-width: 640px) {
  .form-container {
    padding: 1.75rem;
    border-radius: 1.25rem;
  }
}

/* Custom Form Styles */
.custom-form-wrapper {
  width: 100%;
  background: white;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-form-wrapper:hover {
  box-shadow: 0 8px 32px rgba(10, 88, 235, 0.12);
  border-color: rgba(10, 88, 235, 0.2);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--foreground);
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  transition: all 200ms ease;
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 88, 235, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

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

/* Form field spacing */
.form-field {
  margin-bottom: 1.75rem;
}

.form-field label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.required-star {
  color: #ef4444;
  font-weight: 700;
  margin-left: 2px;
}

.form-field input[type="email"],
.form-field input[type="text"] {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  color: #1f2937;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  transition: all 200ms ease;
  font-family: 'Inter', sans-serif;
}

.form-field input[type="email"]:focus,
.form-field input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 88, 235, 0.08);
  transform: translateY(-1px);
}

.form-field input::placeholder {
  color: #9ca3af;
}

/* Radio button groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1.125rem 1.375rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 0.875rem;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.radio-option:hover {
  border-color: rgba(10, 88, 235, 0.4);
  background: rgba(10, 88, 235, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.08);
}

.radio-option input[type="radio"] {
  width: 22px;
  height: 22px;
  margin: 0;
  margin-right: 1rem;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked ~ span {
  font-weight: 600;
  color: var(--primary);
}

.radio-option:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(10, 88, 235, 0.08) 0%, rgba(10, 88, 235, 0.04) 100%);
  box-shadow: 0 0 0 4px rgba(10, 88, 235, 0.12);
  transform: translateY(-2px);
}

.radio-option span {
  flex: 1;
  font-size: 0.9375rem;
  color: #374151;
  transition: all 200ms ease;
  line-height: 1.4;
}

/* Mobile responsive radio buttons */
@media (max-width: 640px) {
  .radio-option {
    padding: 1rem 1.125rem;
  }

  .radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 0.875rem;
  }

  .radio-option span {
    font-size: 0.875rem;
  }

  .form-field {
    margin-bottom: 1.5rem;
  }

  .form-field label {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}

/* Form submit button */
.btn-form {
  width: 100%;
  background: linear-gradient(135deg, #0a58eb 0%, #0849c9 100%);
  color: white;
  border: none;
  padding: 1.125rem 2rem;
  border-radius: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 88, 235, 0.3);
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-form svg {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-form:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10, 88, 235, 0.4);
}

.btn-form:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.btn-form:active:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 88, 235, 0.35);
}

.btn-form:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px) {
  .btn-form {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #0a58eb 0%, #0849c9 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 88, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 88, 235, 0.4);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

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

/* Spinner Animation */
.spinner {
  animation: rotate 1s linear infinite;
  width: 24px;
  height: 24px;
}

.spinner .path {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@media (max-width: 768px) {
  .custom-form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

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

  .btn-submit {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

/* Badge simple */
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: var(--radius);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Badge POPULAIRE */
.badge-populaire {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #0849c9 100%);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 0.375rem 1rem;
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.3);
}

/* Smooth transitions */
a {
  transition: opacity 200ms;
}

a:hover {
  opacity: 0.7;
}

/* Dashboard Mockup - Style Mac réaliste */
.dashboard-mockup {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}

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

.dashboard-container {
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 40px 80px -16px rgba(0, 0, 0, 0.18),
    0 20px 40px -10px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
}

/* Mac Title Bar */
.mac-titlebar {
  background: linear-gradient(to bottom, #f5f5f5, #ebebeb);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dashboard-header {
  background: linear-gradient(to bottom, #fafafa, #f5f5f5);
}

/* Dashboard Cards */
.dashboard-card {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 0.5rem;
  max-height: 85px;
  display: flex;
  align-items: center;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(10, 88, 235, 0.35) !important;
  background: rgba(10, 88, 235, 0.01);
}

/* Responsive dashboard */
@media (max-width: 768px) {
  .hero-gradient {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .dashboard-mockup {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: 3rem;
  }

  .dashboard-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .mac-titlebar {
    display: none;
  }

  .dashboard-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-card {
    padding: 1.25rem;
  }

  .logo-box {
    min-width: 100px;
    padding: 0.75rem 1.25rem;
  }

  .logo-img {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .dashboard-mockup {
    transform: scale(1.01);
    transform-origin: top center;
  }
}

/* Transporteurs logos */
.grayscale {
  filter: grayscale(100%);
}

.grayscale-0 {
  filter: grayscale(0%);
}

/* Logo boxes dans Hero - Plus gros */
.logo-box-hero {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: white;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.logo-box-hero:hover {
  border-color: rgba(10, 88, 235, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 88, 235, 0.12);
}

/* Logo images - Tailles coordonnées */
.logo-img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .logo-box-hero {
    min-width: 110px;
    padding: 0.5rem 0.75rem;
  }

  .logo-img {
    height: 65px;
    max-width: 200px;
    padding: 6px;
  }
}

/* Social proof counter animation */
#signup-count {
  transition: all 300ms ease-in-out;
}

/* FAQ Accordion Styles */
.faq-accordion {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-accordion.active {
  border-color: rgba(10, 88, 235, 0.2);
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.08);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  user-select: none;
  transition: background 200ms;
}

.faq-header:hover {
  background: rgba(10, 88, 235, 0.02);
}

.faq-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  transition: color 200ms;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-header h3 span:first-child {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-accordion.active .faq-header h3 {
  color: var(--primary);
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 88, 235, 0.1);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 400;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-accordion.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 88, 235, 0.01);
}

.faq-content-inner {
  padding: 0 1.75rem 1.75rem 4rem;
}

.faq-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Keep feature-card hover for other cards */
.feature-card h3 {
  transition: color 200ms;
}

.feature-card:hover h3 {
  color: var(--primary);
}

/* Section titles improvements */
h2 {
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

h3 {
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* Improved spacing for sections */
section {
  position: relative;
}

section h2 {
  margin-bottom: 1rem;
}

/* Better visual separation */
.border-y {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Steps Section - Comment ça marche */
.steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 88, 235, 0.3);
  box-shadow: 0 12px 32px rgba(10, 88, 235, 0.12);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #0849c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.3);
}

.step-number {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.step-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
  transition: color 200ms;
}

.step-card:hover .step-title {
  color: var(--primary);
}

.step-description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.step-connector {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 300;
  opacity: 0.4;
  transition: all 300ms;
}

.step-card:hover + .step-connector {
  opacity: 1;
  transform: translateX(4px);
}

/* Mobile responsive steps */
@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .step-connector {
    transform: rotate(90deg);
    font-size: 2rem;
  }

  .step-card:hover + .step-connector {
    transform: rotate(90deg) translateX(4px);
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .step-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }

  .step-title {
    font-size: 1.25rem;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
}

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

.btn-cookie-accept:hover {
  background: #0849c9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 88, 235, 0.3);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-cookie-decline:hover {
  background: #f5f5f5;
  color: var(--foreground);
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    width: 100%;
    text-align: center;
  }
}
