/* Claim Page Specific Styles - Override global styles */

html, body {
  height: auto !important;
  overflow: visible !important;
}

.claim-page {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
  background: var(--surface);
  position: relative;
}

/* Premium Design System */
:root {
  /* Extended color palette for premium design */
  --gradient-primary: linear-gradient(135deg, #FFBC2C 0%, #FFD700 100%);
  --gradient-surface: linear-gradient(135deg, #FFFFFA 0%, #F8F5E8 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 8px 32px rgba(255, 188, 44, 0.25);
  --border-radius-xs: 6px;
  --border-radius-sm: 12px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;
}

/* Hero Section - Premium Design */
.claim-hero-shell {
  background: var(--gradient-primary);
  padding: 6px;
  width: 100%;
  height: 100vh;
  position: relative;
}

.claim-hero-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.claim-hero-container {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-md);
  width: 100%;
  height: calc(100vh - 12px);
  color: var(--text-on-dark);
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
}

.claim-hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 80%, rgba(255, 188, 44, 0.05) 0%, transparent 50%);
  border-radius: var(--border-radius-md);
  pointer-events: none;
}

.claim-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  z-index: 1000;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  justify-self: start;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 1;
}

.brand:hover .logo-lottie {
  animation: none !important;
}

.logo-text {
  opacity: 1;
}

.logo-lottie {
  opacity: 1;
}

.claim-link.current {
  background: var(--primary);
  color: var(--shell);
  border-color: var(--primary);
  cursor: default;
}

.claim-link.current:hover {
  background: var(--primary);
  color: var(--shell);
  transform: none;
}

/* Bouton claim-link normal en desktop */
.claim-link.current {
  background: var(--primary);
  color: var(--shell);
  border-color: var(--primary);
  cursor: default;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.claim-link.current:hover {
  background: var(--primary);
  color: var(--shell);
  transform: none;
}

.claim-content {
  padding: 32px 32px 0;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.claim-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  text-align: center;
}

.claim-hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.claim-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #2A2929 0%, #1F1F1F 100%);
  color: var(--primary);
  border: 1px solid #444;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  border-radius: 20px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.claim-pill:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 12px rgba(255, 188, 44, 0.15);
}

.claim-headline {
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
  color: var(--text-on-dark);
}

.claim-headline .highlight {
  color: var(--primary);
  position: relative;
}


.claim-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 500px;
}

.claim-cta-primary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.claim-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--gradient-primary);
  color: var(--shell);
  border: none;
  border-radius: var(--border-radius-xl);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: fit-content;
  box-shadow: var(--shadow-primary);
  text-decoration: none;
}

.claim-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.claim-btn-primary:hover::before {
  left: 100%;
}

.claim-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.claim-btn-primary:hover::before {
  left: 100%;
}

.claim-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-primary), 0 16px 32px rgba(255, 188, 44, 0.4);
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.claim-btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.claim-btn-large {
  padding: 22px 40px;
  font-size: 18px;
}

.claim-already-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.5;
  max-width: 400px;
  text-align: center;
}

/* Mockups positioned absolutely in corners */
.claim-preview-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  width: 320px;
  position: absolute;
  transition: transform 0.3s ease;
  z-index: 3;
}

.claim-preview-card.main {
  bottom: 40px;
  right: -160px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.claim-preview-card.main:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-5px);
}

.claim-qr-mockup {
  background: var(--gradient-primary);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 20px;
  width: auto;
  min-width: 260px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-qr-mockup:hover {
  transform: rotate(-5deg) translateY(-3px);
}

.claim-event-mockup {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 20px;
  width: auto;
  min-width: 280px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-event-mockup:hover {
  transform: rotate(2deg) translateY(-2px);
}

/* QR Code Mockup Styles */
.event-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--shell);
  background: rgba(255, 188, 44, 0.2);
  border: 1px solid rgba(255, 188, 44, 0.5);
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
}

.event-microcopy {
  font-size: 12px;
  color: var(--muted-gray);
  margin-top: 8px;
}

/* Simplify event card: keep tempo + infos utiles */
.claim-event-mockup .event-header,
.claim-event-mockup .event-attendees,
.claim-event-mockup .event-microcopy {
  display: none;
}
.claim-event-mockup .event-title { margin: 4px 0 6px 0; }
.claim-event-mockup .event-desc { margin: 0; }

/* Stats storyboard card */
.claim-stats-mockup {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 20px;
  width: auto;
  min-width: 300px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Connectors */
/* Hide visual connectors: no dashed lines */
.claim-connector { display: none !important; }
.claim-connector::after { display: none !important; }
/* Card System - Minimalist */
.card-title-simple {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.ui-illustration {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 0 30px 0;
  position: relative;
}

/* UI Window Illustration */
.ui-window {
  width: 340px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.ui-header {
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
}

.ui-dots {
  display: flex;
  gap: 6px;
}

.ui-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.ui-dots span:nth-child(1) { background: #ff5f57; }
.ui-dots span:nth-child(2) { background: #ffbd2e; }
.ui-dots span:nth-child(3) { background: #28ca42; }

.ui-content {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ui-input {
  height: 12px;
  background: #f0f0f0;
  border-radius: 6px;
}

.ui-input.short {
  width: 60%;
}

.ui-button {
  height: 36px;
  background: var(--primary);
  color: var(--shell);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

/* Notification UI Illustration */
.notification-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 360px;
}

.notification-center {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
}

.notification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.notification-item:last-child {
  border-bottom: none;
}

.notif-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 188, 44, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.notif-time {
  font-size: 12px;
  color: var(--muted-gray);
  margin-top: 2px;
}

.visibility-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.visibility-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.visibility-indicator span {
  font-size: 10px;
  color: #16a34a;
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Stats Block - Restored */
.stats-main-number {
  text-align: center;
  margin-bottom: 16px;
}

.big-stat {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.big-stat-label {
  font-size: 11px;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.stats-chart {
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 40px;
  margin-bottom: 4px;
  gap: 2px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 188, 44, 0.3), rgba(255, 188, 44, 0.6));
  border-radius: 2px;
  min-height: 8px;
  transition: all 0.3s ease;
}

.chart-bar.active {
  background: linear-gradient(180deg, var(--primary), #ffa500);
  box-shadow: 0 2px 8px rgba(255, 188, 44, 0.4);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 2px;
}

.chart-labels span {
  font-size: 9px;
  color: var(--muted-gray);
  text-align: center;
  flex: 1;
  font-weight: 500;
}

.stats-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.12));
  border-radius: 6px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.trend-indicator {
  font-size: 14px;
  font-weight: 700;
}

.trend-indicator.up {
  color: #16a34a;
}

.trend-text {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}


/* Storyboard common elements */
.step-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.2);
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  z-index: 3;
}

/* Yellow background for badges 1 and 2 */
.ui-illustration .step-badge {
  background: var(--gradient-primary);
  color: var(--shell);
  border: 1px solid rgba(255, 188, 44, 0.3);
}

.claim-event-mockup .step-badge,
.claim-stats-mockup .step-badge {
  background: var(--primary);
  color: var(--text-dark);
  border-color: rgba(255, 188, 44, 0.6);
}

.qr-microcopy {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.7);
  margin: 4px 0 0 0;
}

.qr-mini-menu {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  width: 100%;
  color: rgba(26, 26, 26, 0.85);
  font-size: 12px;
}

.qr-mini-menu li { line-height: 1.4; }


.claim-preview-header {
  background: #f0f0f0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.claim-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.claim-preview-dot.red { background: #ff5f57; }
.claim-preview-dot.yellow { background: #ffbd2e; }
.claim-preview-dot.green { background: #28ca42; }

.claim-preview-url {
  font-size: 12px;
  color: #666;
  margin-left: 8px;
  font-family: 'Monaco', 'Menlo', monospace;
}

.claim-preview-content {
  padding: 24px;
  color: var(--text-dark);
}

.online-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--shell);
  background: #22c55e;
  padding: 4px 8px;
  border-radius: 999px;
}

.public-page-points {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--muted-gray);
  font-size: 13px;
}

.public-page-points li::before {
  content: '•';
  margin-right: 6px;
  color: var(--primary);
}

.claim-bar-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.claim-bar-photo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #FFD700);
  border-radius: 12px;
  flex-shrink: 0;
}

.claim-bar-info h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.claim-bar-info p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #22c55e;
  font-weight: 500;
}

.claim-bar-tags {
  display: flex;
  gap: 8px;
}

.claim-tag {
  font-size: 12px;
  padding: 4px 8px;
  background: var(--surface-alt);
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

.claim-menu-preview h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.claim-menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.claim-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.claim-menu-item:last-child {
  border-bottom: none;
}

.claim-menu-item span:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.claim-menu-item span:last-child {
  color: #666;
  font-size: 12px;
}

.claim-event-preview {
  background: var(--surface-soft);
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.claim-event-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.claim-event-preview p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Premium Sections System */
.claim-section {
  padding: var(--spacing-3xl) 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.claim-section:first-of-type {
  background: var(--gradient-primary);
}

.claim-section:nth-child(2) {
  background: var(--gradient-primary);
}

.claim-section:nth-child(odd):not(:first-of-type):not(:nth-child(2)) {
  background: var(--gradient-surface);
}

.claim-section:nth-child(even):not(:nth-child(2)) {
  background: var(--surface);
}

.claim-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}

.claim-section:first-of-type::before {
  display: none;
}

.claim-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.claim-section-title {
  font-family: "Recoleta", serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 var(--spacing-2xl) 0;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  width: 100%;
}


/* Style spécial pour la section des bénéfices avec tiret plus visible */
.claim-benefits-section .claim-section-title {
  color: var(--shell);
}


/* Premium Benefits Grid */
.claim-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}


.claim-benefit {
  position: relative;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 188, 44, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.claim-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-surface);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.claim-benefit:hover::before {
  opacity: 1;
}

.claim-benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary);
}

.claim-benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shell);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
}

.claim-benefit:hover .claim-benefit-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-primary), 0 0 32px rgba(255, 188, 44, 0.4);
}

.claim-benefit h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.claim-benefit p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-gray);
  margin: 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.claim-benefit:hover p {
  color: var(--text-dark);
}

/* Premium Pricing Section */
.claim-pricing-section {
  position: relative;
}

.claim-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 188, 44, 0.03) 0%, transparent 70%);
}

/* Comparison Table */
.claim-comparison-table {
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.claim-comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.claim-comparison-table th {
  background: var(--surface);
  color: var(--text-dark);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.claim-comparison-table th:first-child {
  text-align: left;
  background: var(--surface);
  width: 44%;
}

.claim-comparison-table thead .free-column {
  background: rgba(34, 197, 94, 0.08);
}

.claim-comparison-table thead .pro-column {
  background: rgba(255, 188, 44, 0.10);
}

.claim-comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

.claim-comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.claim-comparison-table td.free-column,
.claim-comparison-table td.pro-column {
  text-align: center;
}

/* Zebra rows */
.claim-comparison-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.check-icon {
  display: block;
  margin: 0 auto 8px;
}

.feature-detail {
  display: block;
  font-size: 14px;
  color: var(--muted-gray);
  margin-top: 4px;
}

.pro-plus {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

/* Pricing values inside comparison table */
.price {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

.price.price-pro strong {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted-gray);
  margin-top: 4px;
}

.cell-muted {
  color: var(--muted-gray);
}

.emph {
  font-weight: 600;
}

.claim-comparison-table tbody tr:hover td {
  background: rgba(255, 188, 44, 0.06);
}

.claim-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.claim-pricing-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.claim-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.claim-pricing-card.gratuit {
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
  border: 2px solid var(--primary);
  background: rgba(255, 252, 235, 0.95);
}

.claim-pricing-card.gratuit::before {
  transform: translateY(0);
}

.claim-pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.claim-pricing-card.gratuit:hover {
  transform: translateY(-8px) scale(1.05);
}

.claim-pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-md) 0;
  color: var(--text-dark);
  position: relative;
}

.claim-pricing-card.gratuit .claim-pricing-header h3::after {
  content: '✨';
  position: absolute;
  right: -var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.claim-pricing-badge {
  font-size: 0.75rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 188, 44, 0.1);
  color: #B8860B;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  border: 1px solid rgba(255, 188, 44, 0.2);
}

.claim-pricing-badge.pro {
  background: var(--gradient-primary);
  color: var(--shell);
  border: none;
}

.claim-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.claim-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}

.claim-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Steps */
.claim-steps-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto 48px;
  width: 100%;
  text-align: center;
}

.claim-step {
  display: flex;
  gap: 24px;
  align-items: center;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.claim-step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--shell);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.claim-step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.claim-step-content p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.claim-cta-secondary {
  display: flex;
  justify-content: center;
}

/* Split CTAs under comparison table */
.claim-cta-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}

.claim-cta-col {
  text-align: center;
}

.claim-cta-col--pro {
  text-align: center;
}

.claim-cta-note {
  font-size: 12px;
  color: var(--muted-gray);
  margin-top: 8px;
}

.claim-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-xl);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.claim-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.claim-btn-secondary:hover::before {
  left: 100%;
}

.claim-btn-secondary:hover {
  background: var(--primary);
  color: var(--shell);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 188, 44, 0.3);
}

.claim-btn-secondary:active {
  transform: translateY(-2px) scale(0.98);
}

/* Info note */
.claim-info-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted-gray);
  font-style: italic;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--surface-soft);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  max-width: 600px;
  margin: 32px auto 0;
}

/* Result section */
.claim-result-section {
  background: var(--surface-soft);
}

.claim-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.claim-result-item {
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.claim-result-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.claim-result-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.claim-result-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

/* Page exists section */
.claim-exists-section {
  background: var(--surface-alt);
}

.claim-exists-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* Community section */
.claim-community-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Help section */
.claim-help-section {
  background: var(--surface-soft);
  padding: 60px 0;
}

.claim-help-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 32px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}


/* FAQ */
.claim-faq-container {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.claim-faq-item {
  background: var(--surface-alt);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.claim-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.claim-faq-item summary {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.claim-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.claim-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.claim-faq-item summary::-webkit-details-marker {
  display: none;
}

.claim-faq-item p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted-gray);
  line-height: 1.6;
  font-size: 15px;
}

.claim-final-cta {
  display: flex;
  justify-content: center;
}

/* Burger menu styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 0 0 16px 16px;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.claim-link.current.mobile {
  background: var(--primary);
  color: var(--shell);
  border: 2px solid var(--primary);
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: default;
}

.login-container.mobile {
  display: flex;
  align-items: center;
  background: #333;
  border-radius: 24px;
  padding: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-container.mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(51, 51, 51, 0.4);
}

.login-container.mobile:hover .login-btn {
  background: #FFD700;
}

.login-container.mobile .login-text {
  color: var(--shell);
  font-weight: 500;
  font-size: 16px;
  padding: 0 16px;
}

.login-container.mobile .login-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--shell);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-decoration: none;
}

/* Override global mobile styles for claim page */
.claim-link::after {
  display: none !important;
}

.claim-link span {
  display: inline !important;
}

/* Mobile responsive for new header */
@media (max-width: 768px) {
  .header-nav {
    gap: 12px;
    position: relative;
  }

  .claim-link.current:not(.mobile),
  .login-container:not(.mobile) {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  /* Ensure no crown icons on mobile */
  .claim-link::after {
    display: none !important;
  }

  .claim-link span {
    display: inline !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .claim-hero-shell {
    min-height: auto;
    padding: 2px;
  }
  
  .claim-hero-container {
    min-height: auto;
    border-radius: 12px;
  }
  
  .claim-hero-section {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    min-height: auto;
    padding: 20px 0;
  }
  
  .claim-hero-right {
    padding-bottom: 20px;
    padding-right: 0;
    justify-content: center;
    align-items: center;
  }
  
  .claim-mockups-container {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .claim-preview-card.main {
    display: none;
  }

  .claim-steps-cascade {
    display: none;
  }

  .claim-connector {
    display: none;
  }

  .claim-qr-mockup {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin: 0;
    width: 160px;
    height: 160px;
  }

  .claim-event-mockup {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin: 0;
    width: 220px;
    height: 100px;
  }

  .claim-stats-mockup {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    margin: 0;
    width: 220px;
  }
  
  .claim-content {
    padding: 0 20px 40px;
  }
  
  .claim-header {
    padding: 16px 20px;
  }
  
  .claim-container {
    padding: 0 20px;
    max-width: 100%;
  }
  
  .claim-section {
    padding: 50px 0;
  }
  
  .claim-section-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .claim-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  
  .claim-pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .claim-comparison-table {
    margin: 0 -16px;
    border-radius: 0;
    overflow-x: auto;
  }

  /* Improved mobile table layout */
  .claim-comparison-table table,
  .claim-comparison-table thead,
  .claim-comparison-table tbody,
  .claim-comparison-table th,
  .claim-comparison-table td,
  .claim-comparison-table tr {
    display: block;
  }

  .claim-comparison-table thead {
    display: none;
  }

  .claim-comparison-table tbody tr {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .claim-comparison-table tbody td {
    padding: 8px 0;
    border: 0;
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .claim-comparison-table tbody td:first-child {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
    justify-content: center;
  }

  .claim-comparison-table tbody td.free-column,
  .claim-comparison-table tbody td.pro-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }

  .claim-comparison-table tbody td.free-column::before,
  .claim-comparison-table tbody td.pro-column::before {
    display: inline-block;
    min-width: 80px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .claim-comparison-table tbody td.free-column::before {
    content: 'Gratuit:';
    color: #22c55e;
  }

  .claim-comparison-table tbody td.pro-column::before {
    content: 'Pro:';
    color: var(--primary);
  }

  .feature-detail,
  .pro-plus,
  .pro-text {
    font-size: 14px;
    text-align: right;
  }

  .check-icon {
    margin: 0;
  }

  .claim-cta-split {
    grid-template-columns: 1fr;
  }
  
  .claim-result-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .claim-steps-container {
    max-width: 100%;
  }
  
  .claim-step {
    gap: 16px;
  }
  
  .claim-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .claim-headline {
    font-size: 2rem;
    line-height: 1.1;
    text-align: center;
  }
  
  .claim-subtitle {
    font-size: 16px;
    text-align: center;
  }
  
  .claim-already-note {
    text-align: center;
    font-size: 13px;
  }
  
  .claim-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .claim-btn-large {
    padding: 18px 32px;
  }
}

@media (max-width: 480px) {
  .claim-hero-shell {
    padding: 1px;
  }
  
  .claim-hero-container {
    border-radius: 8px;
  }
  
  .claim-section {
    padding: 40px 0;
  }
  
  .claim-container {
    padding: 0 16px;
  }
  
  .claim-content {
    padding: 0 16px 32px;
  }
  
  .claim-header {
    padding: 12px 16px;
  }
  
  .claim-headline {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .claim-section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  
  .claim-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .claim-already-note {
    font-size: 12px;
  }
  
  .claim-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .claim-btn-large {
    padding: 16px 24px;
  }
  
  .claim-preview-card {
    max-width: 300px;
  }
  
  .claim-step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .claim-step-content p {
    font-size: 14px;
  }
  
  .claim-benefit {
    padding: 24px 16px;
  }
  
  .claim-pricing-card {
    padding: 24px;
  }
  
  .claim-result-item {
    padding: 20px;
  }
}

/* Premium Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0) scale(1);
  }
}

@keyframes morphing {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    border-radius: 50%;
  }
  25% { 
    transform: scale(1.1) rotate(90deg);
    border-radius: 30%;
  }
  50% { 
    transform: scale(0.9) rotate(180deg);
    border-radius: 50%;
  }
  75% { 
    transform: scale(1.05) rotate(270deg);
    border-radius: 40%;
  }
}

@keyframes shimmerAdvanced {
  0% { 
    background-position: -200% center;
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0);
  }
  100% { 
    background-position: 200% center;
    transform: translateX(10px);
  }
}

@keyframes floatComplex {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(1deg);
  }
  50% { 
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 188, 44, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 188, 44, 0.6);
  }
}

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

@keyframes textReveal {
  from {
    background-position: -200% center;
  }
  to {
    background-position: 200% center;
  }
}

.claim-hero-left > * {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.claim-hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.claim-hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.claim-hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.claim-hero-left > *:nth-child(4) { animation-delay: 0.4s; }

.claim-preview-card {
  animation: fadeInUpCard 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  opacity: 0;
}

/* Micro-interactions */
.claim-pill {
  position: relative;
  overflow: hidden;
}

.claim-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 188, 44, 0.1), transparent);
  transition: left 0.5s;
}

.claim-pill:hover::before {
  left: 100%;
}

/* Enhanced button interactions */
.claim-btn-primary {
  position: relative;
  overflow: hidden;
}

.claim-btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.claim-btn-primary:active::after {
  width: 100%;
  height: 100%;
}

/* Preview card content animations */
.claim-menu-item {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.claim-menu-item:hover {
  background: #f8f9fa;
  transform: translateX(4px);
  border-left: 2px solid var(--primary);
  padding-left: 10px;
}

.claim-event-preview {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.claim-event-preview:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 188, 44, 0.2);
}

/* Benefit cards hover effects */
.claim-benefit {
  position: relative;
  overflow: hidden;
}

.claim-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #FFD700);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.claim-benefit:hover::before {
  transform: translateX(0);
}

.claim-benefit:hover .claim-benefit-icon {
  animation: pulse 0.6s ease-in-out;
}

/* Pricing cards enhanced animations */
.claim-pricing-card.gratuit {
  position: relative;
}

.claim-pricing-card.gratuit::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), #FFD700, var(--primary));
  background-size: 200% 200%;
  border-radius: 22px;
  z-index: -1;
  animation: shimmer 2s ease-in-out infinite;
}

/* Step numbers enhanced animation */
.claim-step-number {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.claim-step-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #FFD700, var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.claim-step:hover .claim-step-number::before {
  opacity: 1;
}

.claim-step:hover .claim-step-number {
  transform: scale(1.1);
}

/* FAQ enhanced interactions */
.claim-faq-item {
  position: relative;
  overflow: hidden;
}

.claim-faq-item::before {
  display: none;
}

.claim-faq-item summary {
  transition: none;
}

/* Trust items floating effect */
.claim-trust-item {
  transition: all 0.3s ease;
}

.claim-trust-item:hover {
  transform: translateY(-2px);
}

.claim-trust-item:hover svg {
  animation: float 2s ease-in-out infinite;
}

/* Premium Visual Effects */
.claim-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 188, 44, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 188, 44, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Scrollbar (claim page): unify with global — yellow track, white handle */
html {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #ffffff var(--primary); /* thumb, track */
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 6px;
  border: 2px solid var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

/* Parallax effects */
.claim-section:nth-child(even) {
  position: relative;
}

.claim-section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 188, 44, 0.01) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 188, 44, 0.015) 0%, transparent 40%);
  animation: backgroundMove 20s ease-in-out infinite;
}

/* Magnetic effect for buttons */
.claim-btn-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow effects */
.claim-pricing-card.gratuit {
  animation: glowPulse 4s ease-in-out infinite;
}

/* Loading state animations */
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
}

/* Footer Styles */
.claim-footer {
  background: linear-gradient(135deg, #0f1115 0%, #1a1d23 100%);
  position: relative;
  overflow: hidden;
}

.claim-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 188, 44, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 188, 44, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.claim-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.claim-footer-content {
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.claim-footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.claim-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.claim-footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 32px;
  opacity: 0.9;
  filter: brightness(1.2);
}

.claim-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.claim-footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 188, 44, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 188, 44, 0.2);
}

.claim-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
}

.claim-footer-column h4 {
  color: #FFFFFA;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: 0.02em;
}

.claim-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.claim-footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.claim-footer-column a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.claim-footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.claim-footer-column a:hover::before {
  width: 100%;
}

.footer-download-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

/* Store buttons in footer - same style as home page */
.claim-footer .store-buttons {
  display: flex;
  gap: 16px;
  margin-top: var(--spacing-sm);
}

.claim-footer .store-buttons.center {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--spacing-sm);
}

.claim-footer .store-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 28px;
  border: 2px solid var(--primary);
  color: var(--shell);
  background: var(--primary);
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.claim-footer .store-button:hover {
  box-shadow: 0 8px 20px rgba(255, 188, 44, 0.4);
  background: #FFD700;
}

.claim-footer .store-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: var(--shell);
  fill: var(--shell);
}

/* Disable the underline effect for store buttons */
.claim-footer .store-button::before {
  display: none;
}

.claim-footer .store-button:hover {
  transform: none;
}

/* Responsive adjustments for footer store buttons */
@media (max-width: 768px) {
  .claim-footer .store-buttons.center {
    gap: 10px;
    margin-top: var(--spacing-xs);
  }
  
  .claim-footer .store-button {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 24px;
    justify-content: center;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .claim-footer .store-buttons.center {
    margin-top: var(--spacing-xs);
    gap: 8px;
  }
  
  .claim-footer .store-button {
    padding: 10px 14px;
    font-size: 13px;
    min-width: 140px;
  }
  
  .claim-footer .store-icon {
    width: 18px;
    height: 18px;
  }
}

.claim-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.claim-footer-bottom-left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.footer-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.footer-back-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(255, 188, 44, 0.05);
  transform: translateX(-4px);
}

.footer-back-link svg {
  transition: transform 0.3s ease;
}

.footer-back-link:hover svg {
  transform: translateX(-2px);
}

/* Footer responsive */
@media (max-width: 768px) {
  .claim-footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .claim-footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .claim-footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .claim-footer-content {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .claim-footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .claim-footer-social {
    justify-content: center;
  }

  .claim-footer-brand {
    text-align: center;
    align-items: center;
  }

  .claim-footer-tagline {
    text-align: center;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .claim-preview-card {
    transform: none !important;
  }
}

/* Focus and accessibility */
.claim-btn-primary:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.claim-faq-item summary:focus {
  outline: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Subtle floating motion that preserves each card's base tilt */
@keyframes floatCard {
  0%   { transform: var(--tilt) translateY(0); }
  50%  { transform: var(--tilt) translateY(-8px); }
  100% { transform: var(--tilt) translateY(0); }
}


/* Desktop layout: top-align content and position mockups with 20%/80% split */
@media (min-width: 1024px) {
  /* Left column (texte/CTA) ~30% viewport width and centered content */
  .claim-content {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .claim-hero-section {
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    width: 30vw;
    max-width: none;
    height: 100%;
  }

  .claim-hero-left {
    align-items: center;
    text-align: center;
  }

  /* Main preview card anchored bottom-right inside the 80% area */
  .claim-preview-card.main {
    right: 5vw;
    bottom: 5vh;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  }

  /* Steps container: cascade left with deck effect */
  .claim-steps-cascade {
    position: absolute;
    bottom: 5vh;
    left: 10%;
    display: flex;
    flex-direction: column;
    gap: -10px;
    z-index: 3;
  }

  .claim-qr-mockup,
  .claim-event-mockup,
  .claim-stats-mockup {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
  }

  .ui-illustration:first-child {
    transform: rotate(-2deg) translateX(8px);
    z-index: 1;
    margin-bottom: -54px;
    width: 440px;
  }
  .ui-illustration:nth-child(2) {
    transform: rotate(1deg) translateX(8px);
    z-index: 2;
    margin-left: 0px;
    margin-bottom: -49px;
    width: 460px;
  }
  .claim-stats-mockup {
    transform: rotate(-0.5deg) translateX(-16px);
    z-index: 3;
    margin-left: 40px;
    width: 400px;
  }
}

/* Unify mockup styles and entrance animations */
.ui-illustration,
.claim-stats-mockup {
  /* Entrance animation like main card */
  animation: fadeInUpCard 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.ui-illustration:first-child { animation-delay: 0.55s; }
.ui-illustration:nth-child(2) { animation-delay: 0.7s; }
.claim-stats-mockup {
  animation-delay: 0.85s;
  /* Match card styling for stats block */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(1.1);
}
.qr-label {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.event-header .event-title {
  font-weight: 700;
}

.event-meta,
.event-desc,
.qr-label {
  color: var(--text-dark);
}

.price-small {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.pro-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Stacking Cards Section */
.features-stack-section {
  background: linear-gradient(135deg, #0f1115 0%, #1a1d23 100%);
  position: relative;
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-xl);
}

.features-stack-container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.features-stack-title {
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFA;
  margin-bottom: var(--spacing-3xl);
  letter-spacing: -0.02em;
}

.stack-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.stack-cards__item {
  position: sticky;
  transform-origin: center top;
  margin-bottom: 2rem;
  height: 80vh;
  display: flex;
  align-items: center;
}

.stack-cards__item:nth-child(1) {
  top: 2rem;
  transform: translateY(0px);
  z-index: 1;
}

.stack-cards__item:nth-child(2) {
  top: 2rem;
  transform: translateY(80px);
  z-index: 2;
}

.stack-cards__item:nth-child(3) {
  top: 2rem;
  transform: translateY(160px);
  z-index: 3;
}

.stack-cards__item:last-child {
  margin-bottom: 2rem;
}

.features-stack-section::after {
  content: '';
  display: block;
  height: 20vh;
}

.stack-card-content {
  background: rgba(255, 255, 250, 0.95);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 188, 44, 0.1);
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  height: 70vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.stack-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stack-card-image {
  flex-shrink: 0;
  width: 40%;
  max-width: 500px;
  height: 60vh;
  background: linear-gradient(135deg, rgba(255, 188, 44, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 188, 44, 0.3);
  position: relative;
}

.stack-card-placeholder {
  color: rgba(255, 188, 44, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card-placeholder svg {
  width: 80px;
  height: 80px;
}

.stack-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: var(--spacing-xl);
}

.stack-card-info h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 var(--spacing-lg) 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.stack-card-info p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--spacing-xl) 0;
  flex: 1;
}

.stack-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.feature-tag {
  background: rgba(255, 188, 44, 0.1);
  color: #b8860b;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-sm);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  border: 1px solid rgba(255, 188, 44, 0.2);
}

/* Text display for different screen sizes */
.desktop-text {
  display: block;
}

.mobile-text {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-stack-section {
    padding-top: var(--spacing-2xl);
  }

  .features-stack-container {
    padding: 0 var(--spacing-sm);
  }

  .stack-cards__item {
    height: 60vh;
    margin-bottom: 1rem;
    position: sticky;
    transform-origin: center top;
  }

  .stack-cards__item:nth-child(1) {
    top: 2rem;
    transform: translateY(0px);
    z-index: 1;
  }

  .stack-cards__item:nth-child(2) {
    top: 2rem;
    transform: translateY(-20px);
    z-index: 2;
  }

  .stack-cards__item:nth-child(3) {
    top: 2rem;
    transform: translateY(-40px);
    z-index: 3;
  }

  .stack-card-content {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
    height: 55vh;
    gap: var(--spacing-sm);
  }

  .stack-card-image {
    width: 100%;
    max-width: none;
    height: 120px;
    margin-bottom: var(--spacing-xs);
  }

  .stack-card-info {
    padding-left: 0;
    justify-content: flex-start;
    gap: var(--spacing-xs);
  }

  .stack-card-info h3 {
    font-size: 1.5rem;
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.2;
  }

  .stack-card-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 var(--spacing-sm) 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .stack-card-features {
    gap: var(--spacing-xs);
    margin-top: auto;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: block;
  }

  .features-stack-title {
    margin-bottom: var(--spacing-2xl);
  }
}

@media (max-width: 480px) {
  .stack-card-content {
    padding: var(--spacing-md);
    height: 90vh;
  }

  .stack-cards__item {
    height: 95vh;
  }

  .stack-card-image {
    height: 35vh;
  }

  .features-stack-title {
    margin-bottom: var(--spacing-xl);
  }
}

/* Animation classes for JavaScript */
.stack-cards__item--scaled {
  transform: scale(0.95) translateY(-20px);
  opacity: 0.8;
}

.stack-cards__item--hidden {
  transform: scale(0.9) translateY(-40px);
  opacity: 0.4;
}
