/* PikScan Expenses · Modern app landing */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body.landing-v3 {
  --brand: #168a96;
  --brand-2: #2dbdce;
  --brand-violet: #0f6d7a;
  --brand-glow: rgba(22, 138, 150, 0.35);
  --gradient-brand: linear-gradient(135deg, #168a96 0%, #2dbdce 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(22, 138, 150, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0, 172, 242, 0.12), transparent 50%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 55%);
  --gradient-text: linear-gradient(135deg, #168a96, #2dbdce);
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --shadow-md: 0 8px 40px -12px rgba(22, 138, 150, 0.15);
  --shadow-product: 0 40px 80px -24px rgba(22, 138, 150, 0.35);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
}

html.dark body.landing-v3 {
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(22, 138, 150, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0, 172, 242, 0.15), transparent 50%),
    linear-gradient(180deg, #0a0a12 0%, #111827 55%);
  --brand-glow: rgba(0, 172, 242, 0.35);
  --shadow-md: 0 8px 40px -12px rgba(0, 0, 0, 0.5);
  --shadow-product: 0 40px 80px -24px rgba(22, 138, 150, 0.25);
}

/* Header glass pill */
body.landing-v3 .site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface-solid) 85%, transparent);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

body.landing-v3 .nav-desktop a {
  font-weight: 600;
  font-size: 0.9375rem;
}

body.landing-v3 .nav-desktop a:hover {
  color: var(--brand-2);
}

/* Hero · full viewport app landing */
body.landing-v3 .hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 2.5rem) 0 5rem;
  text-align: center;
}

@media (min-width: 1100px) {
  body.landing-v3 .hero { text-align: left; }
}

body.landing-v3 .hero__badge {
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.12), rgba(0, 172, 242, 0.08));
  border: 1px solid color-mix(in srgb, var(--brand) 25%, var(--border));
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(12px);
}

body.landing-v3 .hero__badge-dot {
  background: var(--gradient-brand);
  box-shadow: 0 0 0 4px rgba(22, 138, 150, 0.2);
  animation: badge-pulse 2.5s ease infinite;
}

body.landing-v3 .hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

body.landing-v3 .hero__accent {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 5s linear infinite;
}

body.landing-v3 .hero__tagline {
  color: var(--text);
  font-weight: 600;
}

body.landing-v3 .hero__stage {
  position: relative;
  min-height: clamp(380px, 45vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.landing-v3 .hero__stage::before {
  content: "";
  position: absolute;
  width: min(420px, 90%);
  height: min(420px, 90%);
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.12;
  filter: blur(60px);
  pointer-events: none;
}

body.landing-v3 .phone--screenshot .phone__frame {
  border-radius: 2.75rem;
  border: 3px solid color-mix(in srgb, var(--text) 8%, transparent);
  box-shadow: var(--shadow-product);
  animation: float 5s ease-in-out infinite;
}

body.landing-v3 .spec-label {
  display: inline-flex !important;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  position: absolute;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

body.landing-v3 .spec-label:nth-child(1) { top: 8%; left: 0; animation-delay: 0s; }
body.landing-v3 .spec-label:nth-child(2) { top: 22%; right: -2%; animation-delay: 0.4s; }
body.landing-v3 .spec-label:nth-child(3) { top: 42%; left: -4%; animation-delay: 0.8s; }
body.landing-v3 .spec-label:nth-child(4) { bottom: 38%; right: 0; animation-delay: 1.2s; }
body.landing-v3 .spec-label:nth-child(5) { bottom: 22%; left: 2%; animation-delay: 0.6s; }
body.landing-v3 .spec-label:nth-child(6) { top: 58%; right: -6%; animation-delay: 1s; }

@media (max-width: 1099px) {
  body.landing-v3 .spec-label { display: none !important; }
}

body.landing-v3 .spin-badge {
  display: grid !important;
  place-items: center;
  position: absolute;
  top: 4%;
  right: 8%;
  width: 5.5rem;
  height: 5.5rem;
  opacity: 0.7;
}

body.landing-v3 .spin-badge__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 20s linear infinite;
  fill: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.landing-v3 .spin-badge__core {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
}

body.landing-v3 .spin-badge__core svg {
  display: block;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* Core features · 4-column strip */
.core-features {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.core-features__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .core-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .core-features__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.core-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.core-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
}

.core-feature__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 1.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.12), rgba(0, 172, 242, 0.08));
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 15%, var(--border));
}

.core-feature h3 {
  margin: 0 0 0.625rem;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.core-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats band */
.stats-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--gradient-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-band__grid { grid-template-columns: repeat(4, 1fr); }
}

.stats-band__item {
  text-align: center;
}

.stats-band__item strong {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-band__item span {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

/* App screens showcase */
.app-screens {
  overflow: hidden;
}

.app-screens__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem clamp(1rem, 4vw, 2rem) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-screens__track::-webkit-scrollbar { display: none; }

.app-screens__shot {
  flex: 0 0 min(240px, 72vw);
  scroll-snap-align: center;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.app-screens__shot:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-product);
}

.app-screens__shot img {
  width: 100%;
  height: auto;
  display: block;
}

.app-screens__shot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  background: var(--surface-solid);
  border-top: 1px solid var(--border);
}

/* Download strip · dual CTA */
.download-strip {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.download-strip__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.08), rgba(0, 172, 242, 0.05));
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--border));
  position: relative;
  overflow: hidden;
}

.download-strip__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.08;
  filter: blur(40px);
}

@media (min-width: 900px) {
  .download-strip__inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.download-strip__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.download-strip h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.download-strip p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.7;
}

.download-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}

.btn-store-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  border: none;
}

.btn-store-lg small {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-store-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.25);
}

html.dark .btn-store-lg {
  background: #fff;
  color: #111;
}

/* Feature cards modern */
body.landing-v3 .feature-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

body.landing-v3 .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 25%, var(--border));
}

body.landing-v3 .feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.12), rgba(0, 172, 242, 0.06));
  border: 1px solid color-mix(in srgb, var(--brand) 12%, var(--border));
}

/* Section headers */
body.landing-v3 .section__eyebrow {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
}

body.landing-v3 .section__title {
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* Value chain modern */
body.landing-v3 .value-chain {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

body.landing-v3 .value-chain__row {
  transition: background 0.3s;
}

body.landing-v3 .value-chain__row:hover {
  background: color-mix(in srgb, var(--brand) 3%, var(--surface-solid));
}

/* Pricing featured card */
body.landing-v3 .pricing-card--featured {
  background: linear-gradient(160deg, rgba(22, 138, 150, 0.06), rgba(0, 172, 242, 0.04));
  border: 2px solid color-mix(in srgb, var(--brand) 35%, var(--border));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

body.landing-v3 .pricing-card__badge {
  background: var(--gradient-brand);
}

/* Review cards */
body.landing-v3 .review-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
}

/* CTA banner */
body.landing-v3 .cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-3xl);
  margin-inline: clamp(1rem, 4vw, 2rem);
  overflow: hidden;
  position: relative;
}

body.landing-v3 .cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

body.landing-v3 .cta-banner__inner {
  position: relative;
  z-index: 1;
}

/* Statement / highlights */
body.landing-v3 .statement {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

body.landing-v3 .statement__item {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

body.landing-v3 .statement__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

body.landing-v3 .statement__list {
  max-width: none;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  body.landing-v3 .statement__list {
    grid-template-columns: repeat(3, 1fr);
  }

  body.landing-v3 .statement__item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    border-bottom: none;
  }
}

body.landing-v3 .statement__text strong {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.landing-v3 .statement__watermark {
  display: block !important;
  opacity: 0.04;
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  color: var(--brand);
}

/* FAQ modern */
body.landing-v3 .faq-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.25s;
}

body.landing-v3 .faq-item[open] {
  border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
  box-shadow: var(--shadow-sm);
}

body.landing-v3 .faq-item summary {
  font-weight: 700;
  padding: 1.25rem 1.5rem;
}

/* Footer */
body.landing-v3 .site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

/* Scroll progress */
body.landing-v3 .scroll-progress {
  height: 4px;
  background: var(--gradient-brand);
}

/* === Layout v4 · refinements === */

body.landing-v3 {
  --section-gap: clamp(4rem, 10vw, 7rem);
}

body.landing-v3 .site-header {
  padding: 0.75rem clamp(0.75rem, 3vw, 1.5rem) 0;
  height: auto;
  background: transparent;
  border: none;
}

body.landing-v3 .site-header .container {
  max-width: min(var(--container), calc(100% - 1.5rem));
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  box-shadow: 0 8px 32px -12px rgba(22, 138, 150, 0.18);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

body.landing-v3 .site-header.is-scrolled {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.landing-v3 .site-header.is-scrolled .container {
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  border-color: color-mix(in srgb, var(--brand) 18%, var(--border));
  box-shadow: var(--shadow-md);
}

body.landing-v3 .hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--brand) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 5%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 20%, transparent 72%);
  pointer-events: none;
}

body.landing-v3 .hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.75;
  color: color-mix(in srgb, var(--text-muted) 92%, var(--text));
}

body.landing-v3 .section {
  padding: var(--section-gap) 0;
}

body.landing-v3 .section--alt {
  background:
    radial-gradient(ellipse 70% 55% at 0% 40%, rgba(22, 138, 150, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 75%, rgba(0, 172, 242, 0.05), transparent 50%),
    var(--bg-2);
}

body.landing-v3 .section__head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

body.landing-v3 .section__subtitle {
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

body.landing-v3 .features-bento {
  gap: 1.25rem;
}

@media (min-width: 992px) {
  body.landing-v3 .features-bento .feature-card:nth-child(-n+3) {
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--brand) 6%, var(--surface-solid)),
      var(--surface-solid) 55%
    );
    border-color: color-mix(in srgb, var(--brand) 14%, var(--border));
  }
}

body.landing-v3 .value-chain__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--border));
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

body.landing-v3 .steps-row {
  gap: 1.25rem;
}

@media (min-width: 900px) {
  body.landing-v3 .steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface-solid);
    box-shadow: var(--shadow-sm);
  }

  body.landing-v3 .step-card {
    padding: 2rem 1.75rem;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--border);
    background: transparent;
    transition: background 0.3s var(--ease);
  }

  body.landing-v3 .step-card:last-child {
    border-right: none;
  }

  body.landing-v3 .step-card:hover {
    background: color-mix(in srgb, var(--brand) 4%, var(--surface-solid));
  }
}

body.landing-v3 .step-card__num {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.875rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

body.landing-v3 .pricing-grid {
  align-items: stretch;
  gap: 1.5rem;
}

body.landing-v3 .pricing-card {
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

body.landing-v3 .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

body.landing-v3 .pricing-card--featured:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-product);
}

body.landing-v3 .reviews-carousel {
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

body.landing-v3 .review-card {
  padding: 1.75rem;
  min-height: 100%;
}

body.landing-v3 .review-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
}

body.landing-v3 .app-screens {
  padding-bottom: var(--section-gap);
}

body.landing-v3 .app-screens__track {
  gap: 1.5rem;
  padding-block: 1rem 2rem;
}

body.landing-v3 .app-screens__track.is-marquee {
  display: flex;
  width: max-content;
  animation: app-screens-marquee 45s linear infinite;
}

body.landing-v3 .app-screens:hover .app-screens__track.is-marquee {
  animation-play-state: paused;
}

@keyframes app-screens-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

body.landing-v3 .contact-band {
  padding: clamp(2rem, 6vw, 4rem) 0 var(--section-gap);
}

body.landing-v3 .contact-band__grid {
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-3xl);
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  gap: 2rem;
}

body.landing-v3 .contact-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

body.landing-v3 .footer-grid {
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}

@media (min-width: 768px) {
  body.landing-v3 .footer-grid {
    grid-template-columns: 1.6fr 1fr auto;
    align-items: start;
  }
}

body.landing-v3 .footer-tagline {
  max-width: 22rem;
  line-height: 1.7;
  margin-top: 1rem;
}

body.landing-v3 .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.landing-v3 .footer-nav a {
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

body.landing-v3 .footer-nav a:hover {
  color: var(--brand);
}

body.landing-v3 .btn-glow {
  box-shadow: 0 4px 20px -4px rgba(22, 138, 150, 0.45);
}

body.landing-v3 .btn-glow:hover {
  box-shadow: 0 8px 28px -4px rgba(22, 138, 150, 0.55);
}

body.landing-v3 .btn-store--stacked {
  white-space: normal;
  text-align: left;
  align-items: center;
  padding: 0.875rem 1.375rem;
  border-radius: 1rem;
  gap: 0.75rem;
}

body.landing-v3 .btn-store__copy {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.25;
}

body.landing-v3 .btn-store__lead {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

body.landing-v3 .btn-store__sub {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.95;
}

body.landing-v3 .btn-store__note {
  font-size: 0.6875rem;
  font-weight: 600;
  opacity: 0.75;
}

body.landing-v3 .core-features {
  margin-top: -3rem;
}

body.landing-v3 .stats-band__item strong {
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.85));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
  body.landing-v3 .site-header .container {
    padding-inline: 0.875rem;
    border-radius: 1.25rem;
  }

  body.landing-v3 .nav-mobile.is-open {
    top: calc(var(--header-h) + 0.5rem);
    margin-inline: 0.75rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }
}

/* Hero trust bar */
body.landing-v3 .hero__trust {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

@media (min-width: 1100px) {
  body.landing-v3 .hero__trust { text-align: left; }
}

/* Stats band · 5 columns */
.stats-band__grid--5 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .stats-band__grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .stats-band__grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* Problem section */
.problem-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 50%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 80%, color-mix(in srgb, #ef4444 6%, transparent), transparent 50%);
}

.problem-section__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .problem-section__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
  }
}

.problem-section__head {
  text-align: center;
}

@media (min-width: 900px) {
  .problem-section__head {
    text-align: left;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

.problem-section__head .section__eyebrow {
  display: block;
  margin-bottom: 0.875rem;
}

.problem-section__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.problem-section__panels {
  display: grid;
  gap: 1rem;
}

.problem-section__pain {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .problem-section__pain {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-section__pain li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  border-radius: 1.125rem;
  background: color-mix(in srgb, var(--surface-solid) 92%, #ef4444 8%);
  border: 1px solid color-mix(in srgb, #ef4444 18%, var(--border));
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.problem-section__pain-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, #ef4444 12%, var(--surface-solid));
  color: #f87171;
  flex-shrink: 0;
}

.problem-section__others {
  padding: 1.25rem 1.375rem;
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--surface-solid) 94%, var(--text) 6%);
  border: 1px solid var(--border);
}

.problem-section__others-lead {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  text-transform: none;
  color: var(--text);
}

.problem-section__others ul {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-section__others li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.problem-section__others li svg {
  flex-shrink: 0;
  color: color-mix(in srgb, #ef4444 70%, var(--text-muted));
  opacity: 0.85;
}

.problem-section__answer {
  position: relative;
  padding: 1.375rem 1.5rem;
  border-radius: 1.375rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 14%, var(--surface-solid)), color-mix(in srgb, var(--brand) 6%, var(--surface-solid)));
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brand) 8%, transparent),
    0 20px 40px -24px color-mix(in srgb, var(--brand) 35%, transparent);
  overflow: hidden;
}

.problem-section__answer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient-brand);
  border-radius: 4px 0 0 4px;
}

.problem-section__answer-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.problem-section__answer-label svg {
  flex-shrink: 0;
}

.problem-section__answer > p:last-child {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
}

/* Why PikScan comparison */
.compare-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 60%),
    color-mix(in srgb, var(--brand) 2%, var(--surface));
}

.compare-board {
  max-width: 52rem;
  margin: 0 auto;
  border-radius: var(--radius-2xl, 1.375rem);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 24px 48px -32px color-mix(in srgb, var(--brand) 28%, transparent);
  overflow: hidden;
}

.compare-board__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.compare-board__label {
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.compare-board__label--others {
  color: var(--text-muted);
  background: color-mix(in srgb, var(--text) 4%, var(--surface-solid));
}

.compare-board__label--pikscan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--brand);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 12%, var(--surface-solid)), color-mix(in srgb, var(--brand) 4%, var(--surface-solid)));
  border-left: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
}

.compare-board__mark {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.3125rem;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

.compare-board__rows {
  display: grid;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row:hover {
  background: color-mix(in srgb, var(--brand) 2%, var(--surface-solid));
}

.compare-row__others,
.compare-row__pikscan {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.compare-row__others {
  color: var(--text-muted);
  font-weight: 500;
}

.compare-row__pikscan {
  font-weight: 700;
  color: var(--text);
  background: color-mix(in srgb, var(--brand) 5%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--brand) 12%, var(--border));
  box-shadow: inset 0 0 0 0 var(--brand);
  transition: box-shadow 0.25s;
}

.compare-row:hover .compare-row__pikscan {
  box-shadow: inset 3px 0 0 var(--brand);
}

.compare-row__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  flex-shrink: 0;
}

.compare-row__icon--no {
  background: color-mix(in srgb, #ef4444 10%, var(--surface-solid));
  color: #f87171;
  border: 1px solid color-mix(in srgb, #ef4444 16%, var(--border));
}

.compare-row__icon--yes {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, var(--surface-solid)), color-mix(in srgb, var(--brand) 8%, var(--surface-solid)));
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--brand) 35%, transparent);
}

@media (max-width: 639px) {
  .compare-board__head {
    display: none;
  }

  .compare-board__rows {
    padding: 0.625rem;
    gap: 0.625rem;
  }

  .compare-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
  }

  .compare-row__others,
  .compare-row__pikscan {
    flex-wrap: wrap;
    padding: 1rem 1.125rem;
  }

  .compare-row__others {
    padding-bottom: 0.875rem;
    border-bottom: 1px dashed var(--border);
  }

  .compare-row__others::before,
  .compare-row__pikscan::before {
    display: block;
    width: 100%;
    content: attr(data-label);
    margin-bottom: 0.125rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

  .compare-row__pikscan::before {
    color: var(--brand);
  }

  .compare-row__pikscan {
    border-left: none;
    background: color-mix(in srgb, var(--brand) 6%, var(--surface-solid));
    box-shadow: none;
  }

  .compare-row:hover .compare-row__pikscan {
    box-shadow: none;
  }
}

/* Privacy section */
.privacy-section {
  background: color-mix(in srgb, var(--brand) 4%, var(--surface));
}

.privacy-section__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .privacy-section__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.privacy-card {
  padding: 2rem 1.75rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.privacy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand) 25%, var(--border));
}

.privacy-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.privacy-card h3 {
  margin: 0 0 0.625rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.privacy-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.privacy-section__badge {
  text-align: center;
  margin: 0;
  padding: 0.875rem 1.5rem;
  display: inline-block;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.1), rgba(0, 172, 242, 0.06));
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--border));
  border-radius: 999px;
}

.privacy-section .privacy-section__badge {
  display: block;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.testimonials-grid--single {
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .testimonials-grid--single { grid-template-columns: 1fr; }
}

.testimonials-grid--duo {
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .testimonials-grid--duo { grid-template-columns: repeat(2, 1fr); }
}

.review-card--appstore {
  border-color: rgba(22, 138, 150, 0.18);
}

.review-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.review-card--link:hover {
  border-color: rgba(22, 138, 150, 0.35);
  box-shadow: 0 12px 40px -20px rgba(22, 138, 150, 0.35);
  transform: translateY(-2px);
}

.app-store-rating {
  margin: 0.75rem 0 0;
}

.app-store-rating a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.app-store-rating a:hover {
  color: var(--brand);
}

.app-store-rating__score {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-store-rating__stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

.app-store-rating__label {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-card__date {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonials-grid .review-card__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Footer email */
.footer-email {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
}

.footer-email a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-email a:hover {
  color: var(--brand);
}

/* Trust chips */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

@media (min-width: 1100px) {
  .trust-chips { justify-content: flex-start; }
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--surface-solid) 88%, var(--brand) 12%);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

.trust-chips svg {
  color: var(--brand);
  flex-shrink: 0;
}

body.landing-v3 .hero {
  overflow: visible;
}

/* Hero · vidéo d'arrière-plan (split layout conservé) */
.hero--bg-video {
  overflow: hidden;
}

.hero--bg-video .hero__mesh {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.hero--bg-video .hero__mesh::before,
.hero--bg-video .hero__mesh::after {
  display: none;
}

.hero--bg-video .hero__video-overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.58) 0%, rgba(2, 6, 23, 0.32) 45%, rgba(2, 6, 23, 0.68) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.22) 48%, rgba(2, 6, 23, 0.55) 100%);
}

.hero--bg-video .hero__inner {
  position: relative;
  z-index: 2;
}

.hero--bg-video .hero__badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e2e8f0;
}

.hero--bg-video h1,
.hero--bg-video .hero__subtitle {
  color: #fff;
}

.hero--bg-video .hero__tagline--product {
  color: #bfdbfe;
}

.hero--bg-video .hero__accent {
  -webkit-text-fill-color: transparent;
}

.hero--bg-video .trust-chips li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.hero--bg-video .hero__demo-caption {
  color: rgba(255, 255, 255, 0.82);
}

.hero--bg-video .hero__demo-frame--home {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.45);
}

.hero--bg-video .scroll-hint {
  color: rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.hero--bg-video .scroll-hint__line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent);
}

/* Hero · vidéo plein écran */
.hero--video {
  justify-content: center;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__video-bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.38) 42%, rgba(2, 6, 23, 0.72) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.65) 0%, rgba(2, 6, 23, 0.2) 50%, rgba(2, 6, 23, 0.6) 100%);
  pointer-events: none;
}

.hero--video .hero__mesh {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.hero--video .hero__mesh::before,
.hero--video .hero__mesh::after {
  display: none;
}

.hero--video .hero__inner {
  z-index: 2;
  display: block;
  text-align: center;
}

.hero--video .hero__content {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.hero--video .hero__badge {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e2e8f0;
}

.hero--video h1,
.hero--video .hero__tagline {
  color: #fff;
}

.hero--video .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
}

.hero--video .hero__actions,
.hero--video .trust-chips {
  justify-content: center;
}

.hero--video .trust-chips li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.hero--video .scroll-hint {
  color: rgba(255, 255, 255, 0.72);
  z-index: 2;
}

.hero--video .scroll-hint__line {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), transparent);
}

@media (min-width: 1100px) {
  .hero--video .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero--video .hero__content {
    text-align: center;
    max-width: 42rem;
  }

  .hero--video .hero__badge,
  .hero--video .hero__subtitle {
    margin-inline: auto;
  }

  .hero--video .hero__actions,
  .hero--video .trust-chips {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-bg video {
    display: none;
  }

  .hero__video-overlay {
    background: rgba(2, 6, 23, 0.82);
  }
}

@media (max-width: 767px) {
  body.landing-v3 .hero {
    overflow: hidden;
  }
}

/* Hero · phone cluster */
.hero__stage--modern {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero__stage--modern .spec-label,
.hero__stage--modern .spin-badge,
.hero__stage--modern .phone__ring {
  display: none;
}

.hero__glow {
  position: absolute;
  inset: 10% 5% 5%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(22, 138, 150, 0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-cluster {
  position: relative;
  width: min(100%, 22rem);
  height: 26rem;
  margin-inline: auto;
  overflow: visible;
}

.phone-cluster .phone {
  position: absolute;
  width: 11.5rem;
  transition: transform 0.4s var(--ease);
}

.phone-cluster .phone__frame {
  width: 100%;
}

.phone-cluster .phone__screen--shot {
  position: relative;
  width: 100%;
}

.phone-cluster .phone__screen--shot img,
.phone-cluster .phone__screen--shot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone--float-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 13rem;
}

.phone--float-left {
  left: -2%;
  top: 14%;
  transform: rotate(-8deg) scale(0.92);
  z-index: 1;
  opacity: 0.88;
}

.phone--float-right {
  right: -2%;
  top: 18%;
  transform: rotate(8deg) scale(0.92);
  z-index: 2;
  opacity: 0.88;
}

@media (min-width: 1100px) {
  .phone-cluster { width: 26rem; height: 30rem; }
  .phone-cluster .phone { width: 12.5rem; }
  .phone--float-center { width: 14.5rem; }
}

@media (max-width: 767px) {
  .phone--float-left,
  .phone--float-right { display: none; }
  .phone-cluster { height: auto; min-height: 24rem; width: min(100%, 14rem); }
  .phone--float-center {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    transform: none;
  }
}

/* Privacy icon boxes */
.privacy-card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(22, 138, 150, 0.14), rgba(0, 172, 242, 0.08));
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  font-size: inherit;
}

/* App showcase */
.app-showcase {
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.app-showcase__track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem max(1.25rem, calc((100% - 72rem) / 2 + 1.25rem)) 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-showcase__track::-webkit-scrollbar { display: none; }

.app-showcase__shot {
  flex: 0 0 auto;
  width: min(72vw, 15rem);
  margin: 0;
  scroll-snap-align: center;
  text-align: center;
}

.app-showcase__frame {
  padding: 0.5rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 90%, #000 10%), var(--surface-solid));
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.app-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

.app-showcase__shot figcaption {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Steps visual */
.steps-visual {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.step-visual {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .step-visual {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .step-visual--reverse .step-visual__media { order: 2; }
  .step-visual--reverse .step-visual__body { order: 1; }
}

.step-visual__media {
  max-width: 16rem;
  margin-inline: auto;
  padding: 0.625rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 88%, #000 12%), var(--surface-solid));
  border: 1px solid var(--border);
  border-radius: 2rem;
  box-shadow: var(--shadow-md);
}

.step-visual__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}

.step-visual__num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.step-visual__body h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step-visual__body p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28rem;
}

/* Hero · démo vidéo encadrée */
.hero__tagline--product {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.45;
}

.hero__demo {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 2rem;
  width: 100%;
}

@media (min-width: 1100px) {
  .hero__demo {
    margin-top: 0;
    justify-self: stretch;
  }

  body.landing-v3 .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__demo-frame {
  position: relative;
  width: min(100%, 15rem);
  margin-inline: auto;
}

.hero__demo-frame--home {
  width: 50%;
  aspect-ratio: 1 / 1;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-product);
}

@media (min-width: 1100px) {
  .hero__demo-frame--home {
    width: 100%;
    margin-inline: 0;
  }
}

.hero__demo-frame--home video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__demo-frame--sub {
  width: min(100%, 13.5rem);
}

.hero__demo-frame .phone {
  width: 100%;
  margin-inline: auto;
}

.hero__demo-frame .phone__screen--shot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__demo-caption {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__demo-badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
}

/* Section · C'est quoi + hub */
.what-is-hub__steps {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .what-is-hub__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.what-is-step {
  padding: 1.25rem 1.35rem;
  border-radius: 1.25rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.what-is-step__num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-brand);
}

.what-is-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.what-is-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.hub-cards {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 768px) {
  .hub-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .hub-cards--inline {
    max-width: 56rem;
    margin-inline: auto;
  }
}

.hub-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.15rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hub-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 28%, var(--border));
  box-shadow: var(--shadow-md);
}

.hub-card strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hub-card__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.hub-card__arrow {
  justify-self: end;
  color: var(--brand);
  font-weight: 800;
}

.hub-card--cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 10%, var(--surface-solid)), var(--surface-solid));
  border-color: color-mix(in srgb, var(--brand) 24%, var(--border));
}

.section__cta {
  margin: 2rem 0 0;
  text-align: center;
}

.features-bento--compact .feature-card:nth-child(n+7) {
  display: none;
}

/* Sous-pages produit / fonctionnalités */
.page-sub .site-header {
  padding-top: 0.75rem;
}

.sub-hero {
  padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  background: var(--gradient-hero);
}

.sub-hero--compact {
  padding-bottom: 1.5rem;
}

.sub-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .sub-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.sub-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.sub-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sub-hero__lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.sub-hero__bullets {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.sub-hero__note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.audience-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
}

.audience-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.not-list {
  display: grid;
  gap: 0.875rem;
  max-width: 42rem;
}

.not-list__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
}

.not-list__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.not-list__item p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-muted);
}
