/* ─── DESIGN TOKENS ─── */
:root {
  --wine:       #7A1F35;
  --wine-dark:  #50121F;
  --wine-soft:  #9B3048;
  --wine-pale:  #F5E8EB;
  --gold:       #B8955A;
  --gold-light: #D4AE72;
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --grey-50:    #F7F5F3;
  --grey-100:   #EDE9E4;
  --grey-200:   #D6CEC5;
  --grey-400:   #9B9087;
  --grey-700:   #4A4440;
  --dark:       #1C1410;
  --nav-h:      68px;
  --font-title: 'Plus Jakarta Sans', sans-serif;
}


/* ─── SECTION 3 ÉTAPES ─── */
.steps-section {
  padding: 80px 0 96px;
  background: var(--off-white);
}

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

.step-card {
  background: #fff;
  border: 1.5px solid rgba(122,31,53,.18);
  border-radius: 18px;
  padding: 36px 28px 32px;
  box-shadow: 0 4px 24px rgba(122,31,53,.07), 0 1px 6px rgba(0,0,0,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  /* equal height so desc aligns across all cards */
  height: 100%;
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(122,31,53,.13), 0 2px 10px rgba(0,0,0,.05);
  border-color: rgba(122,31,53,.35);
}

/* Number + title on the same row */
.step-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
  justify-content: center;
}

.step-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wine);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
}


/* ── Step title animated word ── */
.step-title-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.step-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.2;
}
.step-word {
  display: inline-block;
  color: var(--dark);
  font-weight: 700;
}
.step-word.exit-right {
  animation: stepWordExitRight .55s cubic-bezier(.4,0,.6,1) forwards;
}
.step-word.enter-left {
  animation: stepWordEnterLeft .55s cubic-bezier(.2,0,.2,1) forwards;
}
@keyframes stepWordExitRight {
  0%   { opacity:1; transform: translateX(0); }
  100% { opacity:0; transform: translateX(55%); }
}
@keyframes stepWordEnterLeft {
  0%   { opacity:0; transform: translateX(-55%); }
  100% { opacity:1; transform: translateX(0); }
}

/* ── Step icon wrap — all blocs ── */
.step-icon-wrap {
  width: 100%;
  height: 130px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon { width:110px; height:110px; display:block; }

/* ── Scan line — Bloc 1 ── */
.scan-line {
  animation: scanMove 2s ease-in-out infinite;
}
@keyframes scanMove {
  0%, 100% { transform: translateY(-12px); opacity:.2; }
  50%       { transform: translateY(12px);  opacity:.9; }
}

/* ── Progress circle — Bloc 2 ── */
.prog-circle-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
.prog-svg {
  display: block;
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.prog-track {
  fill: none;
  stroke: var(--grey-100);
  stroke-width: 5;
}
.prog-fill {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  /* stroke and offset updated via JS */
}
.prog-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.prog-pct {
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.02em;
  transition: opacity .3s ease;
}
/* Check overlay — always display:flex, controlled via opacity/scale only */
.prog-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(.65);
  transition: opacity .4s cubic-bezier(.22,1,.36,1),
              transform .45s cubic-bezier(.34,1.15,.64,1);
}
.prog-check.show {
  opacity: 1;
  transform: scale(1);  /* scale internal only — container unchanged */
}
/* SVG inside check sized to fit the 80px circle comfortably */
.prog-check svg {
  width: 48px;
  height: 48px;
  display: block;
}

/* ── Search demo — Bloc 3 ── */

.search-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;           /* fixed height — no layout shift */
  background: #fff;
  border: 1.5px solid rgba(122,31,53,.25);
  border-radius: 10px;
  padding: 0 14px;
  margin-bottom: 8px;
  font-size: .78rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  box-sizing: border-box;
  overflow: hidden;
}
.search-bar svg {
  flex-shrink: 0;
  display: block;
}
.search-typed {
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .01em;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
}
.search-cursor {
  color: var(--wine);
  animation: blink .75s step-end infinite;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1;
  margin-left: 1px;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.search-results {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--grey-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
  box-sizing: border-box;
}
.search-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: .73rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-50);
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .38s cubic-bezier(.22,1,.36,1),
              transform .38s cubic-bezier(.22,1,.36,1),
              background .15s ease;
  line-height: 1.3;
}
.search-item:last-child { border-bottom: none; }
.search-item.visible { opacity:1; transform:translateY(0); }
.search-item:hover { background: var(--grey-50); }

.search-item-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--wine);
  opacity: .4;
  flex-shrink: 0;
}
/* Badge IA — pill, right-aligned, never deforms the row */
.search-badge-ia {
  margin-left: auto;
  flex-shrink: 0;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--wine);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.6;
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0;
}
.step-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-400);
  font-weight: 400;
  width: 100%;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card  { padding: 28px 22px; }
}


/* ─── TITRE GLOBAL — police unifiée via --font-title ─── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── PAGES ─── */
.page { display:none; min-height:100vh; padding-top: 48px; background: var(--white); }
.page.active { display:block; animation: fadeUp .55s cubic-bezier(.22,1,.36,1); }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  pointer-events: none;
  padding: 0 80px;
}

.nav-inner {
  pointer-events: all;
  max-width: 860px;
  width: calc(100% - 40px);
  margin: 14px auto 0;
  padding: 8px 32px;
  background: rgba(255,255,255,.96);
  border: 1.5px solid rgba(192,0,0,.35);
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgba(192,0,0,.10),
    0 1px 6px rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform-origin: top center;
  transition:
    max-width .5s cubic-bezier(.4,0,.2,1),
    box-shadow .35s cubic-bezier(.4,0,.2,1),
    background .35s,
    border-color .35s;
  will-change: max-width, box-shadow;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner.scrolled {
  max-width: 1000px;
  box-shadow:
    0 8px 40px rgba(192,0,0,.16),
    0 2px 12px rgba(0,0,0,.07);
  border-color: rgba(192,0,0,.55);
  background: rgba(255,255,255,.98);
}



.nav-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: #C00000;
  letter-spacing: .06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  user-select: none;
  flex-shrink: 0;
}
.nav-logo-ia {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #C00000;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-links a:hover {
  color: #A00000;
  background: rgba(192,0,0,.07);
}
.nav-links a.active {
  color: #C00000;
  font-weight: 700;
  background: rgba(192,0,0,.08);
}

.nav-btn {
  background: #C00000;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,0,0,.2);
}
.nav-btn:hover {
  background: #A00000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,0,0,.32);
}

.mobile-btn {
  display: none;
  background: rgba(192,0,0,.07);
  border: 1.5px solid rgba(192,0,0,.3);
  border-radius: 8px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #C00000;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content:'';
  flex:0 0 28px;
  height:1px;
  background:var(--wine-soft);
  opacity:.4;
}

.display {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}
.display em { font-style:italic; color:var(--wine); }

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey-400);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  border: none;
}
.btn-wine {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 4px 20px rgba(122,31,53,.18);
}
.btn-wine:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(122,31,53,.28);
}
.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}
.btn-outline:hover {
  background: var(--wine-pale);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--wine-dark);
}
.btn-white:hover {
  background: var(--grey-50);
  transform: translateY(-1px);
}

/* ─── SECTION HELPERS ─── */
.container { max-width:1140px; margin:0 auto; padding:0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header { margin-bottom:56px; }
.section-header.center { text-align:center; }
.section-header.center .eyebrow { justify-content:center; }

.divider {
  height:1px;
  background: linear-gradient(90deg, transparent, var(--grey-100), transparent);
}

/* ─── HERO ─── */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 80px 28px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 10%, rgba(122,31,53,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 90%, rgba(184,149,90,.05) 0%, transparent 50%);
  pointer-events:none;
}

/* Subtle grid pattern */
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(122,31,53,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,31,53,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-sub {
  max-width: 520px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grey-400);
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .7s .3s ease forwards;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s .2s ease forwards;
}

.hero-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
}

.hero-word {
  display: inline-block;
  font-weight: 700;
  color: #C00000;
  animation: none;
}

.hero-word.exit {
  animation: wordExit 0.65s ease-in-out forwards;
}
.hero-word.enter {
  animation: wordEnter 0.65s ease-in-out forwards;
}

@keyframes wordExit {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60%); }
}
@keyframes wordEnter {
  0%   { opacity: 0; transform: translateY(-60%); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display:flex; gap:12px; flex-wrap:wrap;
  opacity:0; animation: fadeUp .7s .4s ease forwards;
}

.hero-visual {
  position:relative;
  opacity:0; animation: fadeUp .8s .3s ease forwards;
}

.hero-card {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(28,20,16,.08), 0 8px 24px rgba(28,20,16,.04);
}

.hero-card-title {
  font-family: var(--font-title);
  font-size:1.1rem;
  color:var(--dark);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
}

.bottle-item {
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--grey-100);
}
.bottle-item:last-child { border-bottom:none; padding-bottom:0; }

.bottle-emoji { font-size:1.5rem; }

.bottle-info { flex:1; }
.bottle-name { font-weight:600; font-size:.88rem; color:var(--dark); margin-bottom:3px; }
.bottle-meta { font-size:.72rem; color:var(--grey-400); }

.bottle-badge {
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:100px;
  background: rgba(122,31,53,.1);
  color: var(--wine-soft);
}

.hero-floating {
  position:absolute;
  background:#fff;
  border:1px solid var(--grey-100);
  border-radius:14px;
  padding:14px 18px;
  box-shadow: 0 8px 32px rgba(28,20,16,.1);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.78rem;
  font-weight:500;
  white-space:nowrap;
}

.hero-float-1 {
  bottom:-20px; left:-30px;
  animation: floatA 4s ease-in-out infinite;
}
.hero-float-2 {
  top:-16px; right:-20px;
  animation: floatB 4s ease-in-out 1s infinite;
}

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

/* ─── STATS BAR ─── */
/* ─── WINEIA EN CHIFFRES ─── */
.chiffres-section {
  padding: 88px 0 96px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.chiffres-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,26,42,.05) 0%, transparent 65%);
  pointer-events: none;
}
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.chiffre-card {
  background: #fff;
  border: 1.5px solid rgba(139,26,42,.25);
  border-radius: 20px;
  padding: 36px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s cubic-bezier(.34,1.2,.64,1), transform .3s cubic-bezier(.34,1.2,.64,1), border-color .3s;
}
.chiffre-card:hover {
  box-shadow: 0 12px 40px rgba(139,26,42,.13);
  transform: translateY(-5px);
  border-color: rgba(139,26,42,.5);
}
.chiffre-card--dark {
  background: var(--dark);
  border-color: transparent;
}
.chiffre-card--dark:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.chiffre-card--wine {
  background: #8B1A2A;
  border-color: transparent;
}
.chiffre-card--wine:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(139,26,42,.35);
}
.chiffre-accent-line {
  width: 28px;
  height: 3px;
  background: #8B1A2A;
  border-radius: 2px;
  margin-bottom: 4px;
}
.chiffre-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: #8B1A2A;
  line-height: 1;
  letter-spacing: -.04em;
}
.chiffre-label {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-400);
}
@media (max-width: 680px) {
  .chiffres-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .chiffres-grid { grid-template-columns: 1fr; }
}

/* ─── USE CASES ─── */
.cases-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--grey-100);
  border-radius:16px;
  overflow:hidden;
}

.case-card {
  background:var(--white);
  padding:36px 30px;
  transition: background .3s;
}
.case-card:hover { background:var(--grey-50); }
.case-card:hover .case-icon { transform:scale(1.1); }

.case-icon {
  font-size:2rem;
  margin-bottom:18px;
  display:block;
  transition:transform .3s;
}
.case-card h3 {
  font-family: var(--font-title);
  font-size:1.05rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:10px;
}
.case-card p {
  font-size:.82rem;
  line-height:1.75;
  color:var(--grey-400);
}
.case-em { color:var(--wine); font-style:italic; }

/* ─── REVIEWS ANIMATED ─── */
.reviews-section { background:var(--grey-50); overflow:hidden; padding:80px 0; }

.reviews-track-wrap {
  overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  margin: 40px 0 0;
}

.reviews-track {
  display:flex;
  gap:24px;
  width:max-content;
  animation: scrollTrack 35s linear infinite;
}

.reviews-track:hover { animation-play-state:paused; }

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

.review-card {
  flex-shrink:0;
  width:340px;
  background:#fff;
  border:1px solid var(--grey-100);
  border-radius:16px;
  padding:28px;
  box-shadow: 0 2px 12px rgba(28,20,16,.04);
  transition: box-shadow .3s, transform .3s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(28,20,16,.09);
  transform:translateY(-3px);
}

.review-stars {
  color:var(--gold);
  font-size:.9rem;
  margin-bottom:14px;
  letter-spacing:2px;
}

.review-text {
  font-size:.88rem;
  line-height:1.75;
  color:var(--grey-700);
  font-style:italic;
  margin-bottom:18px;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:300;
}

.review-author {
  display:flex;
  align-items:center;
  gap:12px;
}
.review-avatar {
  width:38px; height:38px;
  border-radius:50%;
  background:var(--wine-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-title);
  font-size:1rem;
  color:var(--wine-soft);
  font-weight:600;
  flex-shrink:0;
}
.review-name { font-weight:700; font-size:.82rem; color:var(--dark); }
.review-info { font-size:.7rem; color:var(--grey-400); margin-top:2px; }

/* ─── FEATURES PAGE ─── */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(310px,1fr));
  gap:20px;
}

.feat-card {
  background:var(--white);
  border:1px solid var(--grey-100);
  border-radius:16px;
  padding:32px;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;
  overflow:hidden;
}
.feat-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--wine), var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s ease;
}
.feat-card:hover {
  border-color:rgba(122,31,53,.2);
  box-shadow:0 12px 40px rgba(28,20,16,.08);
  transform:translateY(-4px);
}
.feat-card:hover::before { transform:scaleX(1); }

.feat-icon-wrap {
  width:52px; height:52px;
  background:var(--wine-pale);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  margin-bottom:20px;
}

.feat-card h3 {
  font-family: var(--font-title);
  font-size:1.1rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:10px;
}
.feat-card p {
  font-size:.82rem;
  line-height:1.8;
  color:var(--grey-400);
}
.feat-badge {
  display:inline-block;
  margin-top:16px;
  padding:4px 12px;
  background:var(--wine-pale);
  color:var(--wine-soft);
  border-radius:100px;
  font-size:.63rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Store section */
.store-section {
  background:var(--grey-50);
  border-radius:24px;
  padding:64px;
  margin-top:80px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px;
  align-items:center;
}
.store-section h2 {
  font-size:2rem;
  margin-bottom:14px;
}
.store-section p {
  font-size:1rem;
  color:var(--grey-400);
  margin-bottom:32px;
  line-height:1.7;
}
.store-btns { display:flex; gap:12px; flex-wrap:wrap; }

.store-btn {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 24px;
  background:#fff;
  border:1.5px solid var(--grey-200);
  border-radius:12px;
  cursor:pointer;
  transition:all .3s;
  text-align:left;
}
.store-btn:hover {
  border-color:var(--wine);
  box-shadow:0 4px 20px rgba(122,31,53,.12);
  transform:translateY(-2px);
}
.store-icon { font-size:1.8rem; }
.store-sub {
  font-size:.58rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--grey-400);
  display:block;
}
.store-name {
  font-family: var(--font-title);
  font-size:1.05rem;
  font-weight:600;
  color:var(--dark);
  display:block;
  margin-top:1px;
}
.store-art {
  font-size:8rem;
  opacity:.12;
  user-select:none;
}

/* ─── PRICING PAGE ─── */
.pricing-section { padding:96px 0; }

/* Animated pricing title */
.pricing-title-wrap {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 200;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 14px;
}
.pricing-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.2;
}
.pricing-word {
  display: inline-block;
  font-weight: 700;
  color: #C00000;
  letter-spacing: -.01em;
}
.pricing-word.exit { animation: wordExit 0.65s ease-in-out forwards; }
.pricing-word.enter { animation: wordEnter 0.65s ease-in-out forwards; }

/* Counter numbers */
.stat-num[data-target] { transition: none; }

.pricing-grid {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:24px;
  align-items:start;
  max-width:800px;
  margin:0 auto;
}

.price-card {
  background:var(--white);
  border:1.5px solid var(--grey-100);
  border-radius:20px;
  overflow:hidden;
  transition:all .3s;
}
.price-card:hover {
  box-shadow:0 16px 48px rgba(28,20,16,.08);
  transform:translateY(-4px);
}
.price-card.featured {
  border-color:var(--wine);
  box-shadow: 0 20px 60px rgba(122,31,53,.15);
}

.price-card-head {
  padding:32px 32px 24px;
  border-bottom:1px solid var(--grey-100);
}
.price-card.featured .price-card-head {
  background:var(--wine-dark);
}

.price-tag-badge {
  display:inline-block;
  background:var(--gold);
  color:var(--wine-dark);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:4px 12px;
  border-radius:100px;
  margin-bottom:16px;
}

.price-name {
  font-family: var(--font-title);
  font-size:1.3rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:6px;
}
.price-card.featured .price-name { color:#fff; }

.price-desc {
  font-size:.8rem;
  color:var(--grey-400);
  line-height:1.5;
}
.price-card.featured .price-desc { color:rgba(255,255,255,.6); }

.price-amount {
  font-family: var(--font-title);
  font-size:5rem;
  font-weight:700;
  color:var(--dark);
  line-height:1;
  margin:24px 0 6px;
  display:flex;
  align-items:baseline;
  gap:4px;
}
.price-amount sup {
  font-size:1.4rem;
  font-weight:400;
  color:var(--grey-400);
  align-self:flex-start;
  margin-top:12px;
}
.price-amount .count-num {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: baseline;
}

/* Rolling digit system */
.roller {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
}

.digit-slot {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 1em;
  line-height: 1;
  min-width: 0.58em;
}

.digit-slot .d-cur,
.digit-slot .d-nxt {
  display: block;
  line-height: 1;
}

.digit-slot .d-nxt {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}

.digit-static {
  display: inline-block;
  line-height: 1;
}

.digit-static {
  display: inline-block;
  line-height: 1;
}
.price-card.featured .price-amount { color:#fff; }
.price-card.featured .price-amount sup { color:rgba(255,255,255,.5); }

.price-period {
  font-size:.72rem;
  color:var(--grey-400);
  margin-bottom:0;
  line-height:1.5;
}
.price-card.featured .price-period { color:rgba(255,255,255,.45); }

.price-optional {
  display:block;
  margin-top:4px;
  font-size:.68rem;
  color:rgba(255,255,255,.35);
  font-style:italic;
}

.price-card-body { padding:28px 32px 32px; }

.price-setup {
  background:var(--grey-50);
  border-radius:10px;
  padding:14px 16px;
  font-size:.8rem;
  color:var(--grey-700);
  margin-bottom:24px;
  display:flex;
  align-items:center;
  gap:8px;
}
.price-setup strong { color:var(--dark); }

.price-features { list-style:none; margin-bottom:28px; }
.price-features li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:9px 0;
  font-size:.83rem;
  color:var(--grey-700);
  border-bottom:1px solid var(--grey-50);
}
.price-features li:last-child { border-bottom:none; }
.price-check {
  width:18px; height:18px;
  border-radius:50%;
  background:rgba(122,31,53,.1);
  color:var(--wine-soft);
  font-size:.65rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:1px;
}
.price-card.featured .price-check {
  background:rgba(184,149,90,.18);
  color:var(--gold-light);
}

.price-btn {
  width:100%;
  padding:14px;
  border-radius:12px;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.03em;
  cursor:pointer;
  border:none;
  transition:all .25s;
  text-align:center;
}
.price-btn-outline {
  background:transparent;
  border:1.5px solid var(--grey-200);
  color:var(--grey-700);
}
.price-btn-outline:hover { border-color:var(--wine); color:var(--wine); background:var(--wine-pale); }
.price-btn-fill {
  background:var(--gold);
  color:var(--wine-dark);
  box-shadow:0 4px 20px rgba(184,149,90,.3);
}
.price-btn-fill:hover { background:var(--gold-light); transform:translateY(-1px); box-shadow:0 8px 28px rgba(184,149,90,.35); }

/* Add-ons */
.addons-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
  margin-top:48px;
}
.addon-card {
  background:var(--white);
  border:1px solid var(--grey-100);
  border-radius:14px;
  padding:22px 22px 20px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  transition:all .3s;
}
.addon-card:hover {
  border-color:rgba(122,31,53,.2);
  box-shadow:0 4px 20px rgba(28,20,16,.06);
}
.addon-icon { font-size:1.4rem; flex-shrink:0; }
.addon-name { font-weight:700; font-size:.85rem; color:var(--dark); margin-bottom:4px; }
.addon-price { font-family: var(--font-title); font-weight:600; color:var(--wine-soft); font-size:1.1rem; }
.addon-per { font-size:.68rem; color:var(--grey-400); font-weight:400; }

/* Argument card */
.arg-card {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  border-radius:20px;
  padding:56px;
  text-align:center;
  margin-top:56px;
  position:relative;
  overflow:hidden;
}
.arg-card::before {
  content:'';
  position:absolute;
  width:300px; height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  top:-100px; right:-80px;
}
.arg-card::after {
  content:'';
  position:absolute;
  width:200px; height:200px;
  border-radius:50%;
  background:rgba(255,255,255,.03);
  bottom:-80px; left:-60px;
}
.arg-text {
  font-family: var(--font-title);
  font-size:clamp(1.4rem,3vw,2.2rem);
  font-weight:400;
  font-style:italic;
  color:#fff;
  line-height:1.4;
  margin-bottom:24px;
  position:relative;
  z-index:1;
}
.arg-text strong { font-weight:700; color:var(--gold-light); }
.arg-sub { color:rgba(255,255,255,.55); font-size:.85rem; position:relative; z-index:1; }

/* ─── FAQ ─── */
.faq-wrap { max-width:740px; margin:0 auto; }

.faq-item {
  border-bottom:1px solid var(--grey-100);
  overflow:hidden;
}
.faq-q {
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:600;
  font-size:.95rem;
  color:var(--dark);
  gap:20px;
  user-select:none;
  transition:color .2s;
}
.faq-q:hover { color:var(--wine); }
.faq-ico {
  width:26px; height:26px;
  border-radius:50%;
  border:1.5px solid var(--grey-200);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem;
  color:var(--grey-400);
  flex-shrink:0;
  transition:all .3s;
}
.faq-item.open .faq-ico {
  transform:rotate(45deg);
  border-color:var(--wine);
  color:var(--wine);
  background:var(--wine-pale);
}
.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(0,1,0,1);
}
.faq-item.open .faq-a {
  max-height:300px;
  transition:max-height .5s cubic-bezier(.5,0,.5,1);
}
.faq-a-inner {
  padding:0 0 22px;
  font-size:.88rem;
  line-height:1.8;
  color:var(--grey-400);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  border-radius:24px;
  padding:64px 48px;
  text-align:center;
  margin:80px 0 100px;
  position:relative;
  overflow:hidden;
}
.cta-banner::before {
  content:'🍷';
  position:absolute;
  font-size:180px;
  opacity:.04;
  right:-20px; top:-30px;
  user-select:none;
}
.cta-banner h2 {
  font-size:2.2rem;
  color:#fff;
  margin-bottom:14px;
}
.cta-banner p {
  color:rgba(255,255,255,.55);
  font-size:.95rem;
  margin-bottom:32px;
}
.cta-banner-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ─── FOOTER ─── */
footer {
  background:var(--dark);
  padding:48px 28px;
  text-align:center;
}
.footer-logo {
  font-family: var(--font-title);
  font-size:1.6rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:.04em;
  margin-bottom:8px;
}
footer p {
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.25);
  line-height:2;
}

/* ─── RESPONSIVE ─── */
@media (max-width:900px) {
  .pricing-grid { grid-template-columns:1fr; }
  .store-section { grid-template-columns:1fr; padding:40px 32px; }
  .store-art { display:none; }
  .cases-grid { grid-template-columns:repeat(2,1fr); }
  .arg-card { padding:40px 28px; }
}

@media (max-width:640px) {
  .nav-links, .nav-btn { display:none; }
  .mobile-btn { display:flex; }
  .nav-inner { margin: 10px 12px 0; padding: 16px 20px; position: relative; }
  .hero-title { font-size:2.4rem; }
  .cases-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:1fr; }
  .addons-grid { grid-template-columns:1fr 1fr; }
  .cta-banner { padding:40px 24px; border-radius:16px; }
  .page { padding-top: 100px; }
}

/* ═══════════════════════════════════════
   FEATURE SECTIONS (fp-*)
═══════════════════════════════════════ */
.fp-wrap {
  padding: 72px 48px;
  margin: 0 40px 32px;
  border: 1.5px solid rgba(139,26,42,.18);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(139,26,42,.06), 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fp-wrap.fp-visible { opacity:1; transform:translateY(0); }

.fp-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fp-reversed { direction: rtl; }
.fp-reversed > * { direction: ltr; }

.fp-kicker {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8B1A2A;
  margin-bottom: 12px;
}
.fp-heading {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.fp-body {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--grey-400);
}

/* ── CALENDAR ── */
.cal-wrap {
  background: #fafaf8;
  border: 1px solid rgba(139,26,42,.1);
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(139,26,42,.07);
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cal-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}
.cal-year {
  font-size: .72rem;
  color: var(--grey-400);
  font-weight: 500;
}
.cal-wdays {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  margin-bottom: 6px;
}
.cal-wdays span {
  text-align: center;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8B1A2A;
  padding: 4px 0;
}
.cal-body {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 3px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 500;
  color: #9b9087;
  position: relative;
  background: transparent;
  transition: background .2s cubic-bezier(.4,0,.2,1);
}
.cal-cell.empty { opacity: 0; pointer-events: none; }
.cal-cell.done {
  background: rgba(139,26,42,.08);
}
.cal-cell.done .cal-num { opacity: 0; }
.cal-cell.done::after {
  content: '';
  position: absolute;
  width: 10px; height: 7px;
  border-left: 1.8px solid #2d7a3a;
  border-bottom: 1.8px solid #2d7a3a;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  animation: checkmark .22s cubic-bezier(.4,0,.2,1) forwards;
}
/* Phase 2: red background sweep */
.cal-cell.red {
  background: rgba(139,26,42,.16) !important;
  transition: background .25s cubic-bezier(.4,0,.2,1);
}
.cal-cell.red::after {
  border-left-color: #8B1A2A !important;
  border-bottom-color: #8B1A2A !important;
}
@keyframes checkmark {
  to { transform: rotate(-45deg) scale(1); }
}
.cal-cell.today-cell {
  background: #8B1A2A;
  color: #fff;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   iPHONE 17 PRO — 3D CSS MOCKUP
   Inspired by devicescss.xyz / Flowbite style
═══════════════════════════════════════════ */
.phone-scene {
  width: 340px;
  margin: 0 auto;
  perspective: 1800px;
  perspective-origin: 50% 40%;
}

.phone {
  width: 340px;
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg) rotateZ(0deg);
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.34,1.2,.64,1);
}
.phone-scene:hover .phone {
  transform: rotateY(0deg) rotateX(0deg);
}

/* ── TITANIUM FRAME ─────────────────────── */
/* The frame IS the border — thick + metallic */
.phone-frame {
  position: relative;
  border-radius: 52px;
  /* Thick titanium border */
  border: 13px solid transparent;
  background:
    /* Screen bg shows through padding-box */
    linear-gradient(#f5efe9, #f5efe9) padding-box,
    /* Titanium metallic gradient for border */
    linear-gradient(145deg,
      #f0ece8 0%,
      #d8d3ce 10%,
      #c0bbb6 22%,
      #b0aba6 35%,
      #bab5b0 50%,
      #c8c3be 65%,
      #d6d1cc 80%,
      #e4dfd9 92%,
      #ece7e2 100%
    ) border-box;
  box-shadow:
    /* Hard edge highlight top-left */
    -1px -1px 0 rgba(255,255,255,.7),
    /* Outer shadow */
    0 0 0 1px rgba(120,115,110,.25),
    /* Depth near */
    0 6px 16px rgba(0,0,0,.18),
    /* Depth mid */
    0 24px 60px rgba(0,0,0,.22),
    /* Depth far */
    0 60px 120px rgba(0,0,0,.10),
    /* 3D right-side depth */
    6px 3px 20px rgba(0,0,0,.15),
    /* Inner glow */
    inset 0 2px 1px rgba(255,255,255,.95),
    inset 0 -1px 1px rgba(0,0,0,.08);
  /* Sheen on left edge from 3D tilt */
  filter: drop-shadow(2px 4px 24px rgba(0,0,0,.18));
}

/* ── VOL BUTTONS (left, 2 separate) ─────── */
.phone-btn-vol {
  position: absolute;
  left: -16px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(90deg,
    #c8c3be 0%, #d8d3ce 40%, #c0bbb6 100%);
  box-shadow: -1px 0 0 rgba(255,255,255,.5), inset 1px 0 0 rgba(0,0,0,.1);
}
.phone-btn-vol-1 { top: 110px; height: 36px; }
.phone-btn-vol-2 { top: 158px; height: 52px; }

/* ── POWER BUTTON (right) ──────────────── */
.phone-btn-pwr {
  position: absolute;
  right: -16px;
  top: 130px;
  width: 4px;
  height: 60px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg,
    #c0bbb6 0%, #d8d3ce 50%, #c8c3be 100%);
  box-shadow: 1px 0 0 rgba(255,255,255,.5), inset -1px 0 0 rgba(0,0,0,.1);
}

/* ── CAMERA MODULE (Pro tri-lens) ────────── */
.phone-cameras {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 96px;
  height: 96px;
  z-index: 4;
}
.phone-cam-housing {
  width: 86px;
  height: 86px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255,255,255,.15) 0%, transparent 60%),
    linear-gradient(145deg, #2a2520 0%, #1a1510 50%, #222018 100%);
  border-radius: 26px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 3px 12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 16px;
  gap: 12px;
  align-items: center;
  justify-items: center;
}
.phone-lens {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #4a4540, #0a0806);
  border: 1.5px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 2px rgba(0,0,0,.4),
    inset 0 1px 2px rgba(255,255,255,.08),
    0 0 8px rgba(40,80,160,.12);
}
.phone-lens.main  { width: 30px; height: 30px; grid-row: 1/3; grid-column: 1/2; align-self: center; }
.phone-lens.ultra { width: 20px; height: 20px; }
.phone-lens.tele  { width: 18px; height: 18px; }
.phone-lens-flash {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f5e8a0, #c8a84a);
  box-shadow: 0 0 6px rgba(200,168,74,.3);
}

/* ── SCREEN AREA ─────────────────────────── */
.phone-screen-outer {
  /* inset from camera housing */
  margin-top: 60px;
  border-radius: 38px;
  overflow: hidden;
  background: #0a0806;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6);
  min-height: 440px;
}

/* Glass reflection overlay */
.phone-screen-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.09) 0% 25%,
    rgba(255,255,255,.02) 40%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 20;
  border-radius: 38px;
}

/* ── STATUS BAR ──────────────────────────── */
.phone-status-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 18px 6px;
  background: #f5efe9;
  position: relative;
  z-index: 2;
}
.psb-time {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #1c1410;
  justify-self: start;
}
.psb-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1c1410;
  justify-self: end;
}
.psb-battery {
  width: 22px; height: 11px;
  border: 1.5px solid rgba(28,20,16,.7);
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5px;
}
.psb-battery::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 2.5px; height: 5px;
  background: rgba(28,20,16,.6);
  border-radius: 0 1px 1px 0;
}
.psb-batt-fill {
  height: 100%; width: 72%;
  background: #1c1410;
  border-radius: 1px;
}

/* ── DYNAMIC ISLAND ──────────────────────── */
.phone-island {
  width: 104px; height: 30px;
  background: #050402;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 2px 14px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.03);
  transition: width .4s cubic-bezier(.34,1.2,.64,1), border-radius .4s cubic-bezier(.34,1.2,.64,1);
  overflow: hidden;
}
.phone-island::after {
  content: '';
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1c1a18, #060504);
  box-shadow: 0 0 4px rgba(30,70,130,.2);
}

/* ── SCREEN CONTENT ──────────────────────── */
.phone-screen {
  background: #f5efe9;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.phone-bar { display: none; }

/* Pay screen */
.pay-sheet {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px 20px;
}
.pay-merchant { display: flex; align-items: center; gap: 8px; }
.pay-logo { font-size: 1.6rem; }
.pay-mname {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #3a3330;
}
.pay-amt {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: #1c1410;
  line-height: 1;
}
.pay-hint {
  font-size: .58rem;
  color: #9b9087;
  letter-spacing: .04em;
  transition: opacity .3s;
}
.pay-fid {
  width: 96px; height: 96px;
  margin: 8px 0;
}
.pay-fid svg { width: 100%; height: 100%; overflow: visible; }
.pay-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8B1A2A;
}
.pay-check-ring svg { width: 44px; }

@media (max-width: 960px) {
  .fp-wrap { margin: 0 16px 20px; padding: 40px 24px; }
  .fp-inner { grid-template-columns: 1fr; gap: 36px; }
  .fp-reversed { direction: ltr; }
  .phone-scene, .phone { width: 280px; }
}
.notif-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 10px 16px;
}
.notif-lock { font-size: 1.4rem; opacity: .3; margin-top: 6px; }
.notif-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-radius: 14px;
  padding: 12px 12px 10px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  opacity: 0;
  transform: translateY(-12px) scale(.96);
  transition: opacity .45s cubic-bezier(.4,0,.2,1), transform .45s cubic-bezier(.4,0,.2,1);
}
.notif-card.show { opacity:1; transform: translateY(0) scale(1); }
.notif-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.notif-ico { font-size: .75rem; }
.notif-src {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #3a3330;
  flex: 1;
}
.notif-ts { font-size: .52rem; color: #9b9087; }
.notif-ttl {
  font-size: .68rem;
  font-weight: 700;
  color: #1c1410;
  margin-bottom: 3px;
}
.notif-msg {
  font-size: .58rem;
  line-height: 1.5;
  color: #6b6460;
  margin-bottom: 8px;
}
.notif-cta {
  display: block;
  width: 100%;
  background: #8B1A2A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: default;
  transition: opacity .2s;
}
.notif-pay {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 6px;
}
.notif-fidmini { width: 44px; height: 44px; }
.notif-fidmini svg { width: 100%; overflow: visible; }
.notif-payok {
  font-size: .58rem;
  font-weight: 700;
  color: #8B1A2A;
  letter-spacing: .05em;
  opacity: 0;
  transition: opacity .3s;
}

@media (max-width: 900px) {
  .fp-wrap { margin: 0 16px 20px; padding: 40px 24px; }
  .fp-inner { grid-template-columns: 1fr; gap: 36px; }
  .fp-reversed { direction: ltr; }
}

/* ══════════════════════════════════
   SECTION TÉLÉCHARGEMENT — 3 BLOCS
══════════════════════════════════ */
.dl-section {
  padding: 96px 0;
  background: #fff;
}

/* ── Grille asymétrique 3/4 + 1/4 ── */
.dl-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: stretch;
}

.dl-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dl-right {
  display: flex;
  flex-direction: column;
}

/* ── Bloc générique ── */
.dl-block {
  background: #fff;
  border: 1.5px solid rgba(139,26,42,.18);
  border-radius: 20px;
  padding: 36px 36px 32px;
  box-shadow:
    0 2px 16px rgba(0,0,0,.05),
    0 1px 4px rgba(0,0,0,.03);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: box-shadow .25s;
}
.dl-block:hover {
  box-shadow:
    0 8px 36px rgba(139,26,42,.10),
    0 2px 8px rgba(0,0,0,.05);
}

/* Bloc 3 — colonne droite (pleine hauteur, vertical) */
.dl-block-3 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
  padding: 32px 24px;
}

/* ── Texte dans les blocs ── */
.dl-block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dl-block-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(139,26,42,.6);
  margin: 0;
}
.dl-block-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0;
}
.dl-block-desc {
  font-size: .8rem;
  line-height: 1.65;
  color: var(--grey-400);
  margin: 0;
}

/* ── Bouton App Store ── */
.dl-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s;
  align-self: flex-start;
  margin-top: 4px;
}
.dl-store-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.dl-store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.dl-store-btn div { display: flex; flex-direction: column; gap: 1px; }
.dl-store-btn-sub  { font-size: .6rem; font-weight: 400; letter-spacing: .04em; }
.dl-store-btn-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }

.dl-store-btn--apple {
  background: #000;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.dl-store-btn--apple .dl-store-btn-sub  { color: rgba(255,255,255,.65); }
.dl-store-btn--apple .dl-store-btn-name { color: #fff; }

.dl-store-btn--google {
  background: #1a1a1a;
  color: #fff;
  border: 1.5px solid #1a1a1a;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.dl-store-btn--google .dl-store-btn-sub  { color: rgba(255,255,255,.6); }
.dl-store-btn--google .dl-store-btn-name { color: #fff; }

/* ── QR code ── */
.dl-block-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.dl-qr-frame {
  width: 100px;
  height: 100px;
  border: 1.5px solid rgba(139,26,42,.2);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
}
.dl-qr-canvas {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.dl-qr-legend {
  font-size: .58rem;
  color: var(--grey-400);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* ── Ring (bloc 3) ── */
.dl-ring-container {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.dl-ring-svg {
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}
.dl-ring-track {
  fill: none;
  stroke: var(--grey-100);
  stroke-width: 8;
}
.dl-ring-fill {
  fill: none;
  stroke: #8B1A2A;
  stroke-width: 8;
  stroke-linecap: round;
}
.dl-ring-glow {
  fill: none;
  stroke: #8B1A2A;
  stroke-width: 16;
  stroke-linecap: round;
  opacity: .10;
  filter: blur(3px);
}
.dl-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
}
.dl-ring-pct {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  transition: opacity .3s;
}
.dl-ring-sub {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-400);
  transition: opacity .3s;
}
.dl-ring-check {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.dl-ring-check svg {
  width: 44px;
  height: 44px;
  animation: checkGrow .65s cubic-bezier(.34, 1.25, .64, 1) forwards;
}

@keyframes checkGrow {
  0%   { width: 44px;  height: 44px;  opacity: 0; }
  20%  { opacity: 1; }
  100% { width: 136px; height: 136px; opacity: 1; }
}

/* ── Steps ── */
.dl-progress-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.dl-step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  color: var(--grey-400);
  font-weight: 500;
  transition: color .3s;
}
.dl-step.active { color: var(--dark); }
.dl-step.done   { color: #2d7a3a; }

.dl-step-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grey-200);
  flex-shrink: 0;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.dl-step.active .dl-step-dot {
  background: #8B1A2A;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(139,26,42,.15);
}
.dl-step.done .dl-step-dot { background: #2d7a3a; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dl-grid {
    grid-template-columns: 1fr;
  }
  .dl-right { order: -1; }
  .dl-block-3 { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .dl-block { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px 24px; }
  .dl-block-3 { flex-direction: column; }
  .dl-block-title { font-size: 1.1rem; }
}


/* ══════════════════════════════════════════════
   USE CASES STORIES
══════════════════════════════════════════════ */
.uc-section {
  padding: 96px 0;
  background: var(--off-white);
}
.uc-stories {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.uc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-100), transparent);
  margin: 56px 0;
}
.uc-story {
  display: grid;
  grid-template-columns: 48px 1fr 280px;
  gap: 32px;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.uc-story.uc-visible { opacity: 1; transform: translateY(0); }
.uc-story--right { grid-template-columns: 280px 1fr 48px; }
.uc-story--right .uc-story-content { order: 2; }
.uc-story--right .uc-story-visual  { order: 1; }
.uc-story--right .uc-story-badge   { order: 3; }

.uc-story-badge {
  font-size: 2rem;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.uc-story-content { display: flex; flex-direction: column; gap: 14px; }
.uc-step-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8B1A2A;
}
.uc-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.uc-desc {
  font-size: .88rem;
  color: var(--grey-400);
  line-height: 1.65;
}
.uc-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.uc-flow-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 6px 10px;
}
.uc-flow-step--end {
  background: rgba(139,26,42,.06);
  border-color: rgba(139,26,42,.18);
  color: #8B1A2A;
}
.uc-flow-num {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #8B1A2A;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.uc-flow-arrow { color: var(--grey-200); font-size: .8rem; }
.uc-quote {
  font-size: .78rem;
  color: var(--grey-400);
  font-style: italic;
  border-left: 2px solid rgba(139,26,42,.25);
  padding-left: 12px;
  line-height: 1.6;
}

/* Mock phone UI */
.uc-story-visual { display: flex; justify-content: center; }
.uc-phone-mock {
  width: 240px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--grey-100);
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
}
.uc-pm-bar {
  height: 8px;
  background: linear-gradient(90deg, #8B1A2A, #C00000);
  border-radius: 0;
}
.uc-pm-screen { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 9px; }
.uc-pm-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 2px;
}
.uc-pm-filter-row { display: flex; gap: 6px; }
.uc-pm-filter {
  font-size: .58rem; font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--grey-50);
  color: var(--grey-400);
  border: 1px solid var(--grey-100);
}
.uc-pm-filter--active {
  background: rgba(139,26,42,.08);
  color: #8B1A2A;
  border-color: rgba(139,26,42,.2);
}
.uc-pm-search {
  font-size: .68rem; padding: 6px 10px;
  background: var(--grey-50);
  border-radius: 8px;
  border: 1px solid var(--grey-100);
  color: var(--dark);
}
.uc-pm-result-label {
  font-size: .58rem; color: var(--grey-400); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.uc-pm-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--grey-50);
}
.uc-pm-item:last-child { border-bottom: none; padding-bottom: 0; }
.uc-pm-new { animation: pmSlideIn .5s cubic-bezier(.34,1.2,.64,1) both; }
@keyframes pmSlideIn {
  from { opacity:0; transform: translateX(-8px); }
  to   { opacity:1; transform: translateX(0); }
}
.uc-pm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.uc-pm-wine { font-size: .68rem; font-weight: 700; color: var(--dark); }
.uc-pm-meta { font-size: .58rem; color: var(--grey-400); }
.uc-pm-badge {
  margin-left: auto;
  font-size: .54rem; font-weight: 700;
  padding: 3px 7px; border-radius: 20px;
  background: rgba(139,26,42,.08);
  color: #8B1A2A; white-space: nowrap; flex-shrink: 0;
}

@media (max-width: 860px) {
  .uc-story, .uc-story--right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .uc-story--right .uc-story-content,
  .uc-story--right .uc-story-visual,
  .uc-story--right .uc-story-badge { order: unset; }
  .uc-story-badge { display: none; }
  .uc-phone-mock { width: 100%; max-width: 280px; }
}

/* ══════════════════════════════════════════════
   SIMPLIFIED PRICING — ACCUEIL
══════════════════════════════════════════════ */
.simple-pricing-section {
  padding: 96px 0;
  background: #fff;
}
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.sp-card {
  border: 1.5px solid var(--grey-100);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow .25s, border-color .25s;
}
.sp-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: rgba(139,26,42,.2);
}
.sp-card--featured {
  border-color: rgba(139,26,42,.35);
  background: rgba(139,26,42,.03);
  box-shadow: 0 4px 24px rgba(139,26,42,.1);
}
.sp-badge-premium {
  position: absolute;
  top: -1px; right: 20px;
  background: #8B1A2A;
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.sp-plan {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8B1A2A;
}
.sp-price {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.03em;
  line-height: 1;
}
.sp-period { font-size: .75rem; font-weight: 400; color: var(--grey-400); font-family: 'Plus Jakarta Sans', sans-serif; }
.sp-desc { font-size: .78rem; color: var(--grey-400); line-height: 1.6; }
.sp-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .76rem;
  color: var(--dark);
  font-weight: 500;
  flex: 1;
}
.sp-btn { margin-top: 8px; width: 100%; justify-content: center; }
@media (max-width: 600px) {
  .sp-grid { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════════════
   SIMPLIFIED DOWNLOAD SECTION
══════════════════════════════════════════════ */
.sdl-section {
  padding: 64px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
}
.sdl-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.sdl-text { text-align: center; width: 100%; }
.sdl-sub {
  font-size: .9rem;
  color: var(--grey-400);
  line-height: 1.65;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
}
.sdl-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.sdl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform .18s cubic-bezier(.34,1.3,.64,1), box-shadow .18s;
  min-width: 170px;
}
.sdl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.sdl-btn--apple {
  background: #000;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.sdl-btn--google {
  background: #000;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.sdl-btn-sub {
  display: block;
  font-size: .58rem;
  opacity: .7;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sdl-btn-name {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.sdl-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.sdl-badge {
  font-size: .68rem;
  font-weight: 600;
  color: var(--grey-400);
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ══════════════════════════════════════════════
   WINEIA CARD — Apple Pay style
══════════════════════════════════════════════ */
.wp-card-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  padding: 24px 0 40px;
}
.wp-card {
  width: 300px;
  height: 186px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6B1020 0%, #8B1A2A 25%, #A02030 50%, #7A1528 75%, #5A0E1C 100%);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(139,26,42,.4),
    0 8px 20px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.2);
  animation: cardRotate 8s ease-in-out infinite;
  will-change: transform;
}
@keyframes cardRotate {
  0%   { transform: rotate(8deg)  rotateX(4deg)  rotateY(0deg); }
  25%  { transform: rotate(6deg)  rotateX(2deg)  rotateY(8deg); }
  50%  { transform: rotate(10deg) rotateX(6deg)  rotateY(0deg); }
  75%  { transform: rotate(6deg)  rotateX(2deg)  rotateY(-8deg); }
  100% { transform: rotate(8deg)  rotateX(4deg)  rotateY(0deg); }
}
.wp-card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  animation: cardShine 4s ease-in-out infinite;
}
@keyframes cardShine {
  0%   { opacity: 0; transform: translateX(-100%); }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}
.wp-card::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px);
  pointer-events: none;
}
.wp-card-top, .wp-card-mid, .wp-card-bottom { position: absolute; left: 22px; right: 22px; }
.wp-card-top { top: 18px; display: flex; align-items: center; justify-content: space-between; }
.wp-card-brand { display: flex; align-items: center; gap: 7px; }
.wp-card-icon { font-size: 1.1rem; }
.wp-card-name {
  font-size: .85rem; font-weight: 800; color: #fff;
  letter-spacing: .08em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.wp-card-chip { opacity: .9; }
.wp-card-mid { top: 50%; transform: translateY(-50%); text-align: center; }
.wp-card-plan {
  font-size: .58rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 4px;
}
.wp-card-amount {
  font-family: var(--font-title); font-size: 2.2rem; font-weight: 700;
  color: #fff; letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.3); line-height: 1;
}
.wp-card-per { font-size: .75rem; font-weight: 400; opacity: .7; font-family: 'Plus Jakarta Sans', sans-serif; }
.wp-card-bottom { bottom: 18px; display: flex; align-items: center; justify-content: space-between; }
.wp-card-num { font-size: .65rem; letter-spacing: .14em; color: rgba(255,255,255,.7); font-family: monospace; }
.wp-card-shadow {
  width: 280px; height: 20px;
  background: radial-gradient(ellipse at center, rgba(139,26,42,.35) 0%, transparent 70%);
  margin-top: 12px; border-radius: 50%;
}

/* nsc-ok simple */
.nsc-ok {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: #2d7a3a;
  letter-spacing: .04em;
  margin-top: 4px;
}


/* ══════════════════════════════════════════════
   NOTIFICATION SCENE — fp-s3 (sans iPhone)
══════════════════════════════════════════════ */
.notif-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  margin: 0 auto;
}
.nsc-lock-row {
  text-align: center;
}
.nsc-time {
  display: block;
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -.04em;
  line-height: 1;
}
.nsc-date {
  display: block;
  font-size: .7rem;
  color: var(--grey-400);
  font-weight: 500;
  margin-top: 2px;
}
.nsc-card {
  width: 100%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  opacity: 0;
  transform: translateY(-10px) scale(.97);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.34,1.2,.64,1);
}
.nsc-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.nsc-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.nsc-app-icon {
  font-size: 1rem;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,26,42,.08);
  border-radius: 6px;
}
.nsc-app-info { display: flex; flex-direction: column; flex: 1; }
.nsc-app-name {
  font-size: .63rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--dark);
}
.nsc-app-time { font-size: .58rem; color: var(--grey-400); }
.nsc-title {
  font-size: .82rem; font-weight: 700;
  color: var(--dark); margin-bottom: 3px;
}
.nsc-body {
  font-size: .73rem; color: var(--grey-400);
  line-height: 1.5; margin-bottom: 10px;
}
.nsc-actions { display: flex; gap: 8px; }
.nsc-btn {
  flex: 1; padding: 7px 10px;
  border-radius: 10px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem; font-weight: 600;
  cursor: pointer;
  transition: transform .12s, opacity .12s;
}
.nsc-btn:active { transform: scale(.97); opacity: .8; }
.nsc-btn-primary {
  background: #8B1A2A; color: #fff;
  box-shadow: 0 2px 8px rgba(139,26,42,.22);
}
.nsc-btn-ghost {
  background: rgba(0,0,0,.05); color: var(--grey-400);
}
.nsc-fid-wrap {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(139,26,42,.1);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s cubic-bezier(.4,0,.2,1), transform .4s cubic-bezier(.34,1.1,.64,1);
}
.nsc-fid-wrap.visible { opacity: 1; transform: translateY(0); }
.nsc-fid-label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-400);
}
.nsc-fid-ring-wrap { width: 100px; height: 100px; position: relative; }
.nsc-fid-svg { width: 100px; height: 100px; overflow: visible; }
.nsc-fid-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .65rem; color: var(--grey-400); font-weight: 500;
}
.nsc-fid-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-200);
  transition: background .3s, box-shadow .3s;
}
.nsc-fid-dot.active {
  background: #8B1A2A;
  box-shadow: 0 0 0 3px rgba(139,26,42,.15);
  animation: dotPulse 1.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(139,26,42,.15); }
  50%      { box-shadow: 0 0 0 6px rgba(139,26,42,.06); }
}
.nsc-fid-ok {
  display: none; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; color: #2d7a3a;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════
   PAGE FONCTIONNALITÉS — BENTO GRID
══════════════════════════════════════════════ */
.ff-hero { padding: 80px 28px 60px; background: #fff; }
.ff-hero-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.ff-h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600; color: var(--dark);
  line-height: 1.1; letter-spacing: -.04em; margin: 12px 0 16px;
}
.ff-lead { font-size: .95rem; color: var(--grey-400); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.ff-bento-section { padding: 0 0 80px; background: #fff; }
.ff-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ff-tile--large { grid-column: span 2; }
.ff-tile {
  background: var(--off-white);
  border: 1.5px solid var(--grey-100);
  border-radius: 22px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .3s;
  opacity: 0; transform: translateY(24px);
}
.ff-tile.ff-visible { opacity: 1; transform: translateY(0); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.34,1.1,.64,1), box-shadow .3s; }
.ff-tile:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.ff-tile--dark { background: var(--dark); border-color: transparent; }
.ff-tile-num { font-size: .62rem; font-weight: 700; letter-spacing: .2em; color: rgba(139,26,42,.35); font-family: monospace; }
.ff-tile-icon { font-size: 2.2rem; line-height: 1; margin-bottom: 4px; }
.ff-tile-title {
  font-family: var(--font-title); font-size: 1.35rem; font-weight: 600;
  color: var(--dark); letter-spacing: -.02em; line-height: 1.2; margin: 0;
}
.ff-tile-desc { font-size: .78rem; color: var(--grey-400); line-height: 1.65; margin: 0; }
.ff-tile-tag {
  display: inline-block; font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(139,26,42,.07); color: #8B1A2A;
  border: 1px solid rgba(139,26,42,.15); align-self: flex-start; margin-top: auto;
}
.ff-scan-line { animation: ffScanMove 2.2s ease-in-out infinite; }
@keyframes ffScanMove {
  0%   { transform: translateY(-20px); opacity: 0; }
  20%  { opacity: 1; } 80% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
.ff-scan-anim { color: #8B1A2A; }
.ff-accord-pair { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; }
.ff-accord-arrow { font-size: 1.2rem; color: rgba(255,255,255,.5); animation: ffArrow 1.8s ease-in-out infinite; }
@keyframes ffArrow { 0%,100% { transform:translateX(0);opacity:.5; } 50% { transform:translateX(5px);opacity:1; } }
.ff-accord-bubble { animation: ffBubble 3s ease-in-out infinite; }
.ff-accord-bubble:last-child { animation-delay: 1.5s; }
@keyframes ffBubble { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-4px); } }
@media (max-width: 860px) { .ff-bento { grid-template-columns: 1fr 1fr; } .ff-tile--large { grid-column: span 2; } }
@media (max-width: 540px) { .ff-bento { grid-template-columns: 1fr; } .ff-tile--large { grid-column: span 1; } }

/* ══════════════════════════════════════════════
   FOOTER LANDING ZONE
══════════════════════════════════════════════ */
.footer-zone {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(139,26,42,.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 30%, rgba(90,15,30,.18) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30,8,18,.9) 0%, transparent 80%),
    linear-gradient(180deg, #0E0E11 0%, #0a060c 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Étoiles générées en CSS */
.footer-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 8%,  rgba(255,255,255,.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 58% 25%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 5%  55%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 70%, rgba(255,255,255,.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 48% 62%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 83% 68%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 28% 42%, rgba(184,149,90,.6)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 55%, rgba(184,149,90,.5)  0%, transparent 100%),
    radial-gradient(2px 2px at 50% 35%, rgba(184,149,90,.45) 0%, transparent 100%);
  pointer-events: none;
}

/* Reflet rouge-bordeaux au bas (là où flotte le footer) */
.footer-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 180px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(139,26,42,.35) 0%, transparent 80%);
  pointer-events: none;
}

.footer-zone-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 240px; /* espace pour le footer flottant */
}

.footer-zone-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,232,235,.65);
  letter-spacing: .01em;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 540px;
}

.footer-zone-quote cite {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(184,149,90,.65);
}

/* ══════════════════════════════════════════════
   PRE-FOOTER CTA
══════════════════════════════════════════════ */
.prefooter-cta {
  background: linear-gradient(135deg, #0E0E11 0%, #1a0e2a 50%, #0E0E11 100%);
  padding: 100px 28px; text-align: center; position: relative; overflow: hidden;
}
.pf-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.pf-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.pf-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
  color: #F5F5F7; line-height: 1.15; letter-spacing: -.04em; margin-bottom: 16px;
}
.pf-sub { font-size: .9rem; color: #A1A1AA; margin-bottom: 36px; line-height: 1.65; }
.pf-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #8B1A2A; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem; font-weight: 700;
  padding: 16px 32px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 4px 32px rgba(139,26,42,.4);
  transition: transform .2s cubic-bezier(.34,1.2,.64,1), box-shadow .2s;
}
.pf-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(139,26,42,.55); }

/* ══════════════════════════════════════════════
   FOOTER PREMIUM
══════════════════════════════════════════════ */
.footer-premium {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 80px;
  pointer-events: none;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
}
.footer-premium.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-premium .container {
  pointer-events: all;
  max-width: 1000px;
  background: rgba(14,14,17,.97);
  border: 1.5px solid rgba(192,0,0,.35);
  border-radius: 16px 16px 0 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin: 0 auto;
  padding: 40px 40px 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,.35), 0 -2px 12px rgba(192,0,0,.12);
}
.fp-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.fp-col--brand { display: flex; flex-direction: column; gap: 14px; }
.fp-logo { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: #F5F5F7; letter-spacing: -.03em; }
.fp-logo-ia { color: #8B1A2A; font-style: italic; }
.fp-tagline { font-size: .78rem; color: #A1A1AA; line-height: 1.65; max-width: 220px; }
.fp-store-mini { display: flex; gap: 8px; flex-wrap: wrap; }
.fp-store-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #A1A1AA; text-decoration: none; font-size: .65rem; font-weight: 600;
  transition: background .2s, color .2s;
}
.fp-store-pill:hover { background: rgba(255,255,255,.12); color: #F5F5F7; }
.fp-copy { font-size: .62rem; color: rgba(161,161,170,.5); margin-top: 4px; }
.fp-col-title { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(161,161,170,.6); margin-bottom: 20px; }
.fp-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fp-links li a { font-size: .78rem; color: #A1A1AA; text-decoration: none; cursor: pointer; transition: color .2s, transform .2s; display: inline-block; }
.fp-links li a:hover { color: #F5F5F7; transform: translateY(-2px); }
.fp-socials { display: flex; gap: 10px; margin-bottom: 16px; }
.fp-social {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: #A1A1AA; text-decoration: none;
  transition: background .22s, color .22s, transform .22s;
}
.fp-social:hover { background: #8B1A2A; color: #fff; transform: translateY(-3px); }
.fp-social-hint { font-size: .68rem; color: rgba(161,161,170,.5); line-height: 1.6; }
.fp-bottom { padding: 24px 0; }
.fp-bottom-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); margin-bottom: 20px; }
.fp-bottom-row { display: flex; align-items: center; justify-content: space-between; }
.fp-bottom-copy { font-size: .65rem; color: rgba(161,161,170,.4); }
.fp-bottom-links { display: flex; gap: 20px; }
.fp-bottom-links a { font-size: .65rem; color: rgba(161,161,170,.4); text-decoration: none; transition: color .2s; }
.fp-bottom-links a:hover { color: #A1A1AA; }
@media (max-width: 860px) { .fp-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .fp-col--brand { grid-column: span 2; } }
@media (max-width: 540px) { .fp-grid { grid-template-columns: 1fr; } .fp-col--brand { grid-column: span 1; } .fp-bottom-row { flex-direction: column; gap: 12px; text-align: center; } }

/* ── PRIX HIGHLIGHTS (chiffres animés sans cartes forfaits) ── */
.prix-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  margin: 48px auto 16px;
  background: var(--off-white);
  border: 1.5px solid var(--grey-100);
  border-radius: 24px;
  overflow: hidden;
}
.ph-item {
  flex: 1;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ph-item--featured { background: var(--dark); }
.ph-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.ph-item--featured .ph-label { color: rgba(255,255,255,.5); }
.ph-amount {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.04em;
}
.ph-amount sup { font-size: 1.2rem; vertical-align: super; font-weight: 400; margin-right: 2px; }
.ph-item--featured .ph-amount { color: #fff; }
.ph-period {
  font-size: .68rem;
  color: var(--grey-400);
  letter-spacing: .02em;
}
.ph-item--featured .ph-period { color: rgba(255,255,255,.5); }
.ph-divider {
  width: 1px;
  height: 80px;
  background: var(--grey-100);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .prix-highlights { flex-direction: column; }
  .ph-divider { width: 80%; height: 1px; }
}

/* ── SDL STORE + QR layout ── */
.sdl-btns-qr {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.sdl-store-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sdl-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sdl-qr canvas {
  border-radius: 8px;
  border: 1.5px solid var(--grey-100);
  padding: 6px;
  background: #fff;
}
.sdl-qr-label {
  font-size: .6rem;
  color: var(--grey-400);
  letter-spacing: .06em;
  text-transform: uppercase;
}