:root {
  --indigo: #4F2D9F;
  --indigo-dark: #3B1F7A;
  --indigo-light: #6B4BC4;
  --indigo-bg: #F5F0FF;
  --indigo-glow: rgba(79, 45, 159, 0.15);
  --orange: #F5851F;
  --orange-dark: #D97316;
  --orange-light: #FFF3E8;
  --yellow: #F5C518;
  --yellow-bg: #FFFBEB;
  --green: #10B981;
  --green-bg: #ECFDF5;
  --red: #EF4444;
  --red-bg: #FEF2F2;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(79,45,159,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { color: var(--indigo); text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(79,45,159,0.2); }
  50% { box-shadow: 0 0 40px rgba(79,45,159,0.35); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--indigo);
}

.nav-logo img { height: 30px; width: auto; }

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--indigo); }

.nav-cta {
  background: var(--indigo);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--indigo-dark); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,45,159,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,133,31,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-bg);
  color: var(--indigo);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge span { font-size: 16px; }

.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(79,45,159,0.25);
}

.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,45,159,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-600);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

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

.hero-note {
  font-size: 13px;
  color: var(--gray-400);
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-visual {
  margin-top: 60px;
  position: relative;
  animation: fadeUp 0.8s ease 0.5s both;
}

/* ==========================================================================
   App Screenshots Slider (Splide - full width fade)
   ========================================================================== */
/* Hero screenshot ribbon — infinite scroll */
.hero-ribbon {
  margin-top: 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding-bottom: 20px;
  animation: fadeUp 0.8s ease 0.5s both;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-ribbon-track {
  display: flex;
  gap: 24px;
  animation: ribbonScroll 50s linear infinite;
  width: max-content;
}
.hero-ribbon:hover .hero-ribbon-track {
  animation-play-state: paused;
}
.ribbon-card {
  flex-shrink: 0;
  width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(79,45,159,0.18), 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}
.ribbon-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Ribbon preview overlay */
.ribbon-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10, 5, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ribbon-preview-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.ribbon-preview {
  position: fixed;
  z-index: 9999;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease, top 0.4s cubic-bezier(0.32, 0.72, 0, 1), left 0.4s cubic-bezier(0.32, 0.72, 0, 1), width 0.4s cubic-bezier(0.32, 0.72, 0, 1), height 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.ribbon-preview.active {
  opacity: 1;
}
.ribbon-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Social proof — pills cloud */
.social-proof-pills {
  padding: 32px 0 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.sp-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sp-pill {
  display: inline-block;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.25s;
}
.sp-pill:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79,45,159,0.1);
}


.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--indigo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--gray-900); color: white; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo);
  background: var(--indigo-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-dark .section-label {
  background: rgba(107,75,196,0.2);
  color: var(--indigo-light);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-dark .section-header h2 { color: white; }

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

.section-dark .section-header p { color: var(--gray-400); }

/* ============================================
   PROBLEM CARDS
   ============================================ */
.section-problem {
  background: linear-gradient(135deg, #1a1025 0%, #0f0a18 50%, #1a0f2e 100%);
  position: relative;
  overflow: hidden;
}

.section-problem::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-problem::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(107,75,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-problem .section-label {
  background: rgba(79,45,159,0.2);
  color: #c4b5fd;
  border: 1px solid rgba(79,45,159,0.3);
}

.section-problem .section-header h2 {
  color: #fff;
}

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

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(79,45,159,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79,45,159,0.15), 0 0 0 1px rgba(79,45,159,0.2);
}

.problem-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.problem-card:hover .problem-number {
  color: rgba(79,45,159,0.15);
}

.problem-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79,45,159,0.2), rgba(107,75,196,0.1));
  border: 1px solid rgba(79,45,159,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  margin-bottom: 24px;
  transition: all 0.4s;
}

.problem-card:hover .problem-icon-wrap {
  background: linear-gradient(135deg, rgba(79,45,159,0.35), rgba(107,75,196,0.2));
  border-color: rgba(79,45,159,0.4);
  box-shadow: 0 0 24px rgba(79,45,159,0.2);
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f0f3;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
}

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-bg), var(--indigo), var(--indigo-bg));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--indigo);
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(79,45,159,0.3);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.section-features {
  background: linear-gradient(180deg, #0f0a18 0%, #1a1025 40%, #150d22 100%);
  position: relative;
  overflow: hidden;
}

.section-features::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-features .section-label {
  background: rgba(79,45,159,0.2);
  color: #c4b5fd;
  border: 1px solid rgba(79,45,159,0.3);
}

.section-features .section-header h2 {
  color: #fff;
}

.ft-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ft-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ft-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(79,45,159,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(79,45,159,0.12), 0 0 0 1px rgba(79,45,159,0.15);
}

/* Hero card (full width) */
.ft-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(79,45,159,0.25) 0%, rgba(59,31,122,0.15) 100%);
  border: 1px solid rgba(79,45,159,0.3);
  padding: 0;
}

.ft-hero:hover {
  border-color: rgba(79,45,159,0.5);
  box-shadow: 0 20px 60px rgba(79,45,159,0.2), 0 0 0 1px rgba(79,45,159,0.3);
}

.ft-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 36px 32px;
}

.ft-hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ft-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  background: rgba(79,45,159,0.2);
  border: 1px solid rgba(79,45,159,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Icon + Title inline */
.ft-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ft-head h3 { margin: 0; }

.ft-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79,45,159,0.25), rgba(107,75,196,0.12));
  border: 1px solid rgba(79,45,159,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  transition: all 0.4s;
}

.ft-hero .ft-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.ft-card:hover .ft-icon-wrap {
  background: linear-gradient(135deg, rgba(79,45,159,0.4), rgba(107,75,196,0.2));
  border-color: rgba(79,45,159,0.5);
  box-shadow: 0 0 20px rgba(79,45,159,0.15);
}

.ft-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f0f3;
}

.ft-hero h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.ft-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* Feature pills */
.ft-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.3s;
  line-height: 1.3;
}

.ft-card:hover .ft-pill {
  border-color: rgba(79,45,159,0.25);
  background: rgba(79,45,159,0.08);
}

.ft-hero .ft-pill {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.ft-hero:hover .ft-pill {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal[data-reveal="from-left"]   { transform: translateX(-60px); }
.reveal[data-reveal="from-right"]  { transform: translateX(60px); }
.reveal[data-reveal="from-top"]    { transform: translateY(-50px); }
.reveal[data-reveal="from-bottom"] { transform: translateY(50px); }
.reveal[data-reveal="from-scale"]  { transform: scale(0.82); }
.reveal[data-reveal="from-rotate-l"] { transform: rotate(-4deg) translateX(-30px) scale(0.92); }
.reveal[data-reveal="from-rotate-r"] { transform: rotate(4deg) translateX(30px) scale(0.92); }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* ============================================
   COMPARISON TABLE (light)
   ============================================ */
.section-comparison {
  background: var(--white);
}

.cmp-wrap {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
}

.cmp-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* Header */
.cmp-table thead th {
  padding: 20px 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cmp-table thead th:first-child { text-align: left; color: transparent; }

.cmp-table thead th.cmp-hl {
  background: var(--indigo);
  color: #fff;
  position: relative;
}

.cmp-table thead th.cmp-hl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo-light), #c4b5fd);
  border-radius: 3px 3px 0 0;
}

.cmp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp-brand img { filter: brightness(0) invert(1); }

/* Body */
.cmp-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  color: var(--gray-500);
  transition: background 0.2s;
}

.cmp-table tbody tr:hover td {
  background: var(--gray-50);
}

.cmp-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-800);
}

.cmp-table tbody td.cmp-hl {
  background: var(--indigo-bg);
  position: relative;
}

.cmp-table tbody td.cmp-hl::before,
.cmp-table tbody td.cmp-hl::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(79,45,159,0.1);
}

.cmp-table tbody td.cmp-hl::before { left: 0; }
.cmp-table tbody td.cmp-hl::after { right: 0; }

.cmp-table tbody tr:hover td.cmp-hl {
  background: rgba(79,45,159,0.08);
}

/* Section row */
.cmp-section-row td {
  background: var(--gray-50) !important;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo) !important;
  opacity: 0.6;
  padding: 10px 18px;
  text-align: left !important;
  border-bottom: 1px solid var(--gray-100);
}

/* Status indicators */
.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.cmp-yes {
  background: rgba(16,185,129,0.1);
  position: relative;
}

.cmp-yes::before, .cmp-yes::after {
  content: '';
  position: absolute;
  background: #10b981;
  border-radius: 2px;
}

.cmp-yes::before {
  width: 6px; height: 2px;
  transform: rotate(45deg);
  left: 6px; top: 14px;
}

.cmp-yes::after {
  width: 11px; height: 2px;
  transform: rotate(-45deg);
  left: 9px; top: 12px;
}

.cmp-no {
  background: var(--gray-100);
  position: relative;
}

.cmp-no::before, .cmp-no::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.cmp-no::before { transform: translate(-50%, -50%) rotate(45deg); }
.cmp-no::after { transform: translate(-50%, -50%) rotate(-45deg); }

.cmp-partial {
  background: rgba(245,133,31,0.1);
  position: relative;
}

.cmp-partial::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.cmp-partial::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

/* Reevio column = stronger green */
.cmp-hl .cmp-yes { background: rgba(16,185,129,0.15); }
.cmp-hl .cmp-yes::before, .cmp-hl .cmp-yes::after { background: #059669; }

/* Price text */
.cmp-price-good {
  font-weight: 700;
  font-size: 13px;
  color: #059669;
}

.cmp-price {
  font-size: 13px;
  color: var(--gray-400);
}

/* Note */
.cmp-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--indigo-bg);
  border: 1px solid rgba(79,45,159,0.1);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--indigo);
}

/* ============================================
   PRICING
   ============================================ */
.section-pricing {
  background: linear-gradient(180deg, #f3eeff 0%, #f9f7ff 35%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.section-pricing::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,45,159,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* (old toggle styles removed - using pt-* pill selector) */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(79,45,159,0.12); }

/* --- Pricing card reveal animation --- */
.pricing-card.pricing-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-card.pricing-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.pricing-card.popular.pricing-reveal.revealed {
  transform: translateY(0) scale(1.05);
}

/* --- Popular card : mise en avant renforcée --- */
.pricing-card.popular {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px var(--indigo), 0 25px 50px rgba(79,45,159,0.2);
  transform: scale(1.05);
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f9f5ff 100%);
}
.pricing-card.popular::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(79,45,159,0.15), transparent 50%, rgba(107,77,199,0.1));
  pointer-events: none;
  z-index: -1;
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); box-shadow: 0 0 0 2px var(--indigo), 0 30px 60px rgba(79,45,159,0.25); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
}

.pricing-value {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--gray-400);
}

.pricing-annual {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 24px;
  min-height: 18px;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.pricing-btn:hover { border-color: var(--indigo); color: var(--indigo); }

.pricing-card.popular .pricing-btn {
  background: var(--indigo);
  color: white;
  border-color: var(--indigo);
}

.pricing-card.popular .pricing-btn:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
}

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

.pricing-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.pricing-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li.disabled::before { content: '\2717'; color: var(--gray-300); }

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   TRUST / PRIVACY
   ============================================ */
.section-trust {
  background: linear-gradient(135deg, #1a0a3e 0%, #2d1566 40%, #1a0f2e 100%);
  position: relative;
  overflow: hidden;
}

.section-trust::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-trust .section-label {
  background: rgba(255,255,255,0.08);
  color: #c4b5fd;
  border: 1px solid rgba(255,255,255,0.12);
}

.section-trust .section-header h2 { color: #fff; }
.section-trust .section-header p { color: rgba(255,255,255,0.6); }

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

.trust-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,181,253,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(79,45,159,0.15), 0 0 0 1px rgba(196,181,253,0.1);
}

.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,181,253,0.15), rgba(139,92,246,0.08));
  border: 1px solid rgba(196,181,253,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #c4b5fd;
  transition: all 0.4s;
}

.trust-card:hover .trust-icon-wrap {
  background: linear-gradient(135deg, rgba(196,181,253,0.25), rgba(139,92,246,0.15));
  border-color: rgba(196,181,253,0.35);
  box-shadow: 0 0 24px rgba(139,92,246,0.15);
}

.trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f0f3;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.trust-badge-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(196,181,253,0.25);
  color: rgba(255,255,255,0.9);
}

.trust-badge-pill svg { color: #c4b5fd; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--indigo); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.32, 0.72, 0, 1), padding 0.35s ease;
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,45,159,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-seo-text {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-seo-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 700px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--indigo); }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-current:hover { background: var(--gray-100); color: var(--gray-700); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px;
  min-width: 120px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 4px;
}

.lang-dropdown a:hover { background: var(--indigo-bg); color: var(--indigo); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .problem-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
  .ft-bento { grid-template-columns: 1fr; }
  .ft-hero { grid-column: span 1; }
  .ft-head { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular.pricing-reveal.revealed { transform: translateY(0) scale(1); }
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
}

/* ============================================
   ADDITIONAL STYLES FOR LANDING V2
   ============================================ */

/* Header (alias for .nav) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.header.on-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.header.on-hero .nav a { color: rgba(255,255,255,0.85); }
.header.on-hero .nav a:hover { color: white; }
.header.on-hero .mobile-menu-btn { color: white; }
.header.on-hero .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.header.on-hero .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.15);
  color: white;
}
.header.on-hero .btn.btn-primary {
  background: white;
  color: var(--indigo) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header.on-hero .btn.btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header .logo { height: 32px; width: auto; }
.header .logo-light { display: block; }
.header .logo-dark { display: none; }
.header.on-hero .logo-light { display: none; }
.header.on-hero .logo-dark { display: block; }
.header.scrolled .logo-light { display: block; }
.header.scrolled .logo-dark { display: none; }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header .nav {
  position: static;
  background: none;
  backdrop-filter: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.header .nav a:hover { color: var(--indigo); }
.header.scrolled .nav a { color: var(--gray-600); }
.header.scrolled .nav a:hover { color: var(--indigo); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons (generic) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-sm { padding: 8px 18px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; font-weight: 700; font-family: 'Sora', sans-serif; }
.btn.btn-primary {
  background: var(--indigo);
  color: white !important;
  box-shadow: 0 2px 8px rgba(79,45,159,0.25);
}
.btn.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79,45,159,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-bg);
}
.btn-white {
  background: white;
  color: var(--indigo) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--indigo-bg);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white !important;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

/* Hero section - gradient background variant */
.hero {
  background: linear-gradient(135deg, #1a0a3e 0%, #4F2D9F 40%, #6B4BC4 70%, #8B6FD8 100%);
  color: white;
  text-align: center;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-glow 2s ease infinite;
}
.hero h1 { color: white; }
.hero h1 em {
  background: linear-gradient(135deg, #c4b5fd, #fbbf24, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p, .hero-sub { color: rgba(255,255,255,0.8); }
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-note { color: rgba(255,255,255,0.5); }

/* (v2 features styles removed - using ft-bento) */

/* (old comparison styles removed - using cmp-* classes) */

/* Pricing card (alias classes for v2) */
.pricing-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.pricing-card-price .amount {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.pricing-card-price .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-500);
}
.pricing-card-price .period {
  font-size: 14px;
  color: var(--gray-400);
  margin-left: 4px;
}
.pricing-card-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 20px;
  min-height: 18px;
}
.pricing-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.pricing-card-features {
  list-style: none;
}
.pricing-card-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.pricing-card-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}
.pricing-card-features li.disabled::before { content: '\2717'; color: var(--gray-300); }

/* Pricing toggle — dark pill selector (dhero style) */
.pt-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
}
.pt-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #1a1a2e;
  border-radius: 100px;
  padding: 5px;
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12), inset 0 1px 2px rgba(0,0,0,0.2);
}
.pt-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: white;
  border-radius: 100px;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 0;
}
.pt-track.annual .pt-slider {
  transform: translateX(100%);
}
.pt-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: none;
  padding: 12px 32px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.35s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.pt-btn.active {
  color: #1a1a2e;
}
.pt-save {
  display: inline-block;
  background: var(--indigo);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 0.3s, color 0.3s;
}
.pt-btn.active .pt-save {
  background: var(--indigo);
  color: white;
}

/* Pricing card popular badge via data-badge */
.pricing-card.popular::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
}

/* (old trust-item/badge-item styles removed - using trust-card/badge-pill) */

/* CTA final (alias for gradient version) */
.cta-final {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a0a3e 0%, #4F2D9F 50%, #6B4BC4 100%);
  color: white;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.cta-final-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Footer extras */
.footer-brand .logo { height: 28px; width: auto; }
.footer-brand p { margin-top: 16px; }
.footer-company-info {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-500);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badges span {
  font-size: 12px;
  color: var(--gray-500);
}

/* Product Hunt badge */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.ph-badge:hover {
  background: rgba(255,97,84,0.15);
  border-color: rgba(255,97,84,0.3);
  color: #ff6154;
  transform: translateY(-2px);
}
.ph-badge svg {
  flex-shrink: 0;
}

/* Mobile menu extras */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
}
.mobile-menu-cta .btn { flex: 1; text-align: center; }
.mobile-menu-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.mobile-lang-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: var(--gray-600);
  background: var(--gray-50);
  transition: all 0.2s;
}
.mobile-lang-btn.active {
  background: var(--indigo-bg);
  color: var(--indigo);
  font-weight: 600;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  background: none;
  transition: all 0.2s;
}
.lang-current:hover { background: var(--gray-100); color: var(--gray-700); }
.lang-current svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }
.header.on-hero .lang-current { color: rgba(255,255,255,0.85); }
.header.on-hero .lang-current:hover { background: rgba(255,255,255,0.1); color: white; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px;
  min-width: 140px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 4px;
  text-decoration: none;
}
.lang-option:hover { background: var(--indigo-bg); color: var(--indigo); }
.lang-option.active { background: var(--indigo-bg); color: var(--indigo); font-weight: 600; }

/* FAQ question chevron (SVG inline) */
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  color: var(--gray-400);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--indigo);
}

/* Header button short/full labels */
.short-label { display: none; }
.full-label { display: inline; }

/* Additional responsive for v2 */
@media (max-width: 900px) {
  .ft-bento { grid-template-columns: 1fr; }
  .ft-hero { grid-column: span 1; }
  .ft-head { flex-wrap: wrap; }
  .header .nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn-sm { font-size: 12px; padding: 7px 12px; white-space: nowrap; }
  .short-label { display: inline; }
  .full-label { display: none; }
  .mobile-menu-btn { display: block; }
  .sp-cloud { gap: 8px; }
  .sp-pill { padding: 6px 14px; font-size: 12px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .ribbon-card { width: 320px; }
  .hero-ribbon-track { gap: 16px; }
  .cta-final-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  /* Hero mobile — titre compact et lisible */
  .hero { padding: 100px 0 60px; }
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 em br { display: none; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 28px;
  }
  .hero-cta { gap: 10px; margin-bottom: 14px; }
  .hero-cta .btn { padding: 14px 24px; font-size: 15px; max-width: 280px; }
  .hero-note { font-size: 12px; }
  .hero-ribbon { margin-top: 40px; }
  .ribbon-card { width: 260px; border-radius: 12px; }

  .footer-badges { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
