/* ============================================================================
   NeuroConnect 360° — Site web premium · Édition 2026
   Design system inspiré Linear · Vercel · Stripe · Anthropic · Resend
   Brand orange #F08826 · Navy #1A4F8F · ACAS gradient
   ============================================================================ */

/* ----- TOKENS ----- */
:root {
  /* Brand */
  --brand-orange: #F08826;
  --brand-orange-2: #FF9F45;
  --brand-orange-3: #FF6B35;
  --brand-orange-dark: #C2671A;
  --brand-orange-soft: #FCE6CF;
  --brand-orange-wash: #FEF7EE;
  --brand-blue: #1A4F8F;
  --brand-blue-2: #2E6BB0;
  --brand-blue-3: #4A8BD9;
  --brand-blue-dark: #0C2B4F;
  --brand-blue-deep: #050B1B;
  --brand-blue-soft: #DDE7F2;
  --brand-blue-wash: #F0F5FA;
  --brand-purple: #7C3AED;
  --brand-green: #10B981;

  /* Surface palette */
  --ink: #050B1B;
  --ink-2: #0F172A;
  --body: #334155;
  --muted: #64748B;
  --subtle: #94A3B8;
  --line: #E2E8F0;
  --line-2: #F1F5F9;
  --hairline: #EEF2F7;
  --bg: #FFFFFF;
  --bg-2: #FAFAFA;
  --bg-soft: #FAFBFC;
  --cream: #FAF9F6;
  --bg-cream: #FBF8F4;

  /* Dark surfaces */
  --dark-bg: #050B1B;
  --dark-bg-2: #0A1428;
  --dark-surface: #0F1B33;
  --dark-line: rgba(255,255,255,0.08);
  --dark-line-2: rgba(255,255,255,0.14);
  --dark-text: rgba(255,255,255,0.94);
  --dark-muted: rgba(255,255,255,0.62);
  --dark-subtle: rgba(255,255,255,0.42);

  /* Gradients */
  --grad-warm: linear-gradient(135deg, #F08826 0%, #FF6B35 100%);
  --grad-cool: linear-gradient(135deg, #1A4F8F 0%, #2E6BB0 100%);
  --grad-brand: linear-gradient(135deg, #F08826 0%, #1A4F8F 100%);
  --grad-aurora: linear-gradient(135deg, #F08826 0%, #FF6B35 25%, #C2671A 50%, #1A4F8F 75%, #2E6BB0 100%);

  /* Status */
  --success: #059669;
  --success-soft: #D1FAE5;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Aptos", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Inter Tight", "Inter", "Segoe UI", "Aptos", Helvetica, sans-serif;
  --font-serif: "Georgia", "Cambria", "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", "Consolas", monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-10: 80px;
  --space-12: 112px;
  --space-16: 160px;
  --space-20: 200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-3xl: 40px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px -4px rgba(15,23,42,0.08);
  --shadow-lg: 0 24px 56px -12px rgba(15,23,42,0.14);
  --shadow-xl: 0 48px 96px -24px rgba(15,23,42,0.20);
  --shadow-2xl: 0 64px 128px -32px rgba(15,23,42,0.30);
  --shadow-orange: 0 12px 32px -8px rgba(240,136,38,0.45);
  --shadow-glow-orange: 0 0 0 1px rgba(240,136,38,0.18), 0 16px 48px -12px rgba(240,136,38,0.40);
  --shadow-inner: inset 0 1px 0 rgba(255,255,255,0.10);

  /* Motion */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms var(--ease);
  --t-base: 320ms var(--ease);
  --t-slow: 600ms var(--ease-out);

  /* Container */
  --container-max: 1240px;
  --container-pad: 24px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "cv11", "ss01", "ss03", "cv02", "cv05";
  font-variation-settings: "opsz" 28;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, button, textarea, select { font: inherit; color: inherit; }

::selection { background: rgba(240,136,38,0.25); color: var(--ink); }

/* Focus visible — premium ring with glow */
:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 6px rgba(240,136,38,0.15);
}

/* Premium typography polish */
.display, .h1, .h2, h1, h2 {
  text-wrap: balance;
}
.lead, p {
  text-wrap: pretty;
}

/* =============================================================================
   SCROLL PROGRESS BAR — Linear/Stripe signature pattern
   ============================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-warm);
  z-index: 60;
  transition: width 50ms linear;
  box-shadow: 0 0 12px rgba(240,136,38,0.6);
  pointer-events: none;
}

/* =============================================================================
   BACK-TO-TOP — Floating premium button
   ============================================================================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: white;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease-spring), background 0.2s, box-shadow 0.2s;
  z-index: 40;
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--brand-orange);
  box-shadow: var(--shadow-orange);
}
.back-to-top .icon {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  stroke-width: 2;
}
@media (max-width: 540px) {
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* =============================================================================
   NOISE OVERLAY — Subtle film grain for premium dark sections
   ============================================================================= */
.has-noise { position: relative; }
.has-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 320 320' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* =============================================================================
   MOBILE MENU — Hamburger + drawer
   ============================================================================= */
.site-header__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all var(--t-fast);
}
.site-header__menu-btn:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.site-header__menu-btn span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.site-header__menu-btn span:nth-child(1) { top: 13px; }
.site-header__menu-btn span:nth-child(2) { top: 19px; }
.site-header__menu-btn span:nth-child(3) { top: 25px; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.site-header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}
@media (max-width: 860px) {
  .site-header__menu-btn { display: block; }
}

/* Mobile drawer */
.site-nav-drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(24px);
  padding: var(--space-7) var(--space-5);
  z-index: 49;
  flex-direction: column;
  gap: var(--space-3);
  animation: drawer-slide 0.35s var(--ease-out);
  overflow-y: auto;
}
.site-nav-drawer.is-open { display: flex; }
@keyframes drawer-slide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-nav-drawer__link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  transition: color var(--t-fast), padding var(--t-fast);
}
.site-nav-drawer__link:hover {
  color: var(--brand-orange);
  padding-left: var(--space-4);
}
.site-nav-drawer .btn {
  margin-top: var(--space-5);
  width: 100%;
  font-size: 16px;
  padding: 16px 24px;
}
body.is-menu-open { overflow: hidden; }

/* =============================================================================
   SCROLLSPY — Active section highlight on nav
   ============================================================================= */
.site-nav__link.is-active {
  color: var(--ink);
  font-weight: 600;
}
.site-nav__link.is-active::after {
  width: 100%;
}

/* =============================================================================
   MARQUEE — Tech stack auto-scroll
   ============================================================================= */
.techstack__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
}
.techstack__track {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.techstack__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .techstack__track { animation: none; }
}

/* =============================================================================
   3D TILT MOCKUP — perspective sur hover (JS pilote --tilt-x, --tilt-y)
   ============================================================================= */
.app-mockup {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.hero__visual .app-mockup {
  transform: perspective(1400px) rotateY(var(--tilt-x)) rotateX(var(--tilt-y));
  will-change: transform;
}
.hero__visual .app-mockup:hover {
  transition: transform 0.1s linear;
}

/* =============================================================================
   MAGNETIC BUTTONS — CSS custom prop pour translation (JS pilote --mx, --my)
   ============================================================================= */
.btn {
  --mx: 0px;
  --my: 0px;
}
.btn.is-magnetic {
  transform: translate(var(--mx), var(--my));
}
.btn.is-magnetic:hover {
  transform: translate(var(--mx), calc(var(--my) - 2px));
}

/* =============================================================================
   SECTION DIVIDERS — Subtle gradient lines between sections (optional)
   ============================================================================= */
.section + .section,
.section + .partners-section,
.partners-section + .section {
  /* Already separated by padding */
}

/* ----- LAYOUT ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-16) 0;
  position: relative;
}
.section--tight { padding: var(--space-10) 0; }

@media (max-width: 768px) {
  .section { padding: var(--space-12) 0; }
  .section--tight { padding: var(--space-8) 0; }
}

/* ----- TYPOGRAPHY ----- */

/* Modern eyebrow pill with dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brand-orange);
  margin-bottom: var(--space-5);
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(240,136,38,0.04));
  border: 1px solid rgba(240,136,38,0.20);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 8px var(--brand-orange);
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}
.eyebrow--blue {
  color: var(--brand-blue);
  background: linear-gradient(135deg, rgba(26,79,143,0.10), rgba(26,79,143,0.04));
  border-color: rgba(26,79,143,0.20);
}
.eyebrow--blue::before { background: var(--brand-blue); box-shadow: 0 0 8px var(--brand-blue); }
.eyebrow--white {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}
.eyebrow--white::before { background: var(--brand-orange); box-shadow: 0 0 12px var(--brand-orange); }
@keyframes eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Display titles — modern bold with subtle gradient */
.display {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 0.98;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 48;
}
.display--orange {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display--blue {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display--gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.display--aurora {
  background: var(--grad-aurora);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora-text 8s ease infinite;
}
@keyframes aurora-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.display--white { color: white; }

.h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.text-italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.88em;
  letter-spacing: 0;
}

/* =============================================================================
   ICON SYSTEM — SVG sprite Lucide-inspired
   Toutes les icônes sont définies dans un <svg> sprite en haut du <body>
   et référencées par <svg class="icon"><use href="#i-..."/></svg>
   ============================================================================= */
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: block;
}
.icon--xs { width: 12px; height: 12px; stroke-width: 2.2; }
.icon--sm { width: 16px; height: 16px; stroke-width: 2; }
.icon--md { width: 22px; height: 22px; }
.icon--lg { width: 26px; height: 26px; }
.icon--xl { width: 32px; height: 32px; stroke-width: 1.5; }
.icon--filled { fill: currentColor; stroke: none; }

/* Icon-sprite is hidden but accessible via use */
.sprite-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}

.btn--primary {
  background-color: var(--brand-orange);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 100%);
  color: white;
  box-shadow: var(--shadow-orange), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(240,136,38,0.55), inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn--primary::after {
  content: '→';
  font-size: 18px;
  line-height: 1;
  transition: transform var(--t-base);
}
.btn--primary:hover::after { transform: translateX(4px); }

.btn--secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 17px 30px;
  font-size: 16px;
}

/* ----- HEADER ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.site-logo img {
  width: 34px;
  height: 34px;
}
.site-logo__nc { color: var(--brand-blue); }
.site-logo__360 { color: var(--brand-orange); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-7);
}
.site-nav__link {
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t-fast);
  position: relative;
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transition: width var(--t-base);
}
.site-nav__link:hover::after { width: 100%; }

@media (max-width: 1024px) {
  .site-nav__link { font-size: 13px; }
  .site-nav { gap: var(--space-5); }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
}

/* =============================================================================
   AURORA — Global animated gradient overlay (used in hero & CTA)
   ============================================================================= */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  isolation: isolate;
}
.aurora::before,
.aurora::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.50;
  will-change: transform;
}
.aurora::before {
  top: -30%;
  right: -20%;
  background: radial-gradient(circle, rgba(240,136,38,0.55), transparent 70%);
  animation: aurora-1 24s ease-in-out infinite;
}
.aurora::after {
  bottom: -30%;
  left: -20%;
  background: radial-gradient(circle, rgba(26,79,143,0.45), transparent 70%);
  animation: aurora-2 28s ease-in-out infinite;
}
@keyframes aurora-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(-60px, 40px) rotate(120deg) scale(1.1); }
  66% { transform: translate(40px, -30px) rotate(240deg) scale(0.95); }
}
@keyframes aurora-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(50px, -40px) rotate(-90deg) scale(0.95); }
  66% { transform: translate(-30px, 50px) rotate(-180deg) scale(1.1); }
}

/* Dotted grid background utility */
.dotted-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
}
.dotted-bg--dark {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
}

/* =============================================================================
   HERO — Premium with aurora + app mockup
   ============================================================================= */
.hero {
  position: relative;
  padding: var(--space-12) 0 var(--space-16);
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 35%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

.hero__content {
  animation: fade-up 800ms var(--ease-out) both;
}

.hero__live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-xs);
}
.hero__live-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  color: #047857;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16,185,129,0.20);
}
.hero__live-pill-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.30);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__live-pill-arrow {
  font-size: 14px;
  color: var(--muted);
  transition: transform var(--t-base);
}
.hero__live-pill:hover .hero__live-pill-arrow { transform: translateX(3px); }

.hero__title {
  margin-bottom: var(--space-5);
  font-size: clamp(44px, 7.5vw, 92px);
}
.hero__title-line { display: block; }
.hero__title-accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  margin-bottom: var(--space-7);
  max-width: 560px;
  color: var(--body);
}

.hero__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__trust-check .icon { width: 10px; height: 10px; stroke-width: 3; }

/* Hero visual — app preview mockup */
.hero__visual {
  position: relative;
  animation: fade-up 1000ms var(--ease-out) 200ms both;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 20%, rgba(240,136,38,0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(26,79,143,0.12), transparent 50%);
  filter: blur(40px);
  z-index: -1;
}

/* App mockup — sophisticated CSS-built UI preview */
.app-mockup {
  position: relative;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  isolation: isolate;
}
.app-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(240,136,38,0.30), rgba(26,79,143,0.20), rgba(240,136,38,0.10));
  z-index: -1;
}

.app-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #FAFBFC, #F1F5F9);
  border-bottom: 1px solid var(--line);
}
.app-mockup__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E2E8F0;
}
.app-mockup__dot:nth-child(1) { background: #FF6058; }
.app-mockup__dot:nth-child(2) { background: #FFBC2D; }
.app-mockup__dot:nth-child(3) { background: #28C940; }
.app-mockup__url {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  background: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
}
.app-mockup__url::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}

.app-mockup__body {
  padding: var(--space-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.app-mockup__hero-card {
  grid-column: span 2;
  padding: 18px;
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(240,136,38,0.02));
  border: 1px solid rgba(240,136,38,0.20);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-mockup__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}
.app-mockup__hero-text {
  flex: 1;
  min-width: 0;
}
.app-mockup__hero-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.app-mockup__hero-sub {
  font-size: 11.5px;
  color: var(--muted);
}
.app-mockup__hero-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-orange);
  background: rgba(240,136,38,0.12);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240,136,38,0.25);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-mockup__stat {
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.app-mockup__stat-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-mockup__stat-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(240,136,38,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.app-mockup__stat-icon .icon { width: 8px; height: 8px; stroke-width: 2.5; }
.app-mockup__stat--blue .app-mockup__stat-icon {
  background: rgba(26,79,143,0.18);
  color: var(--brand-blue);
}
.app-mockup__stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.app-mockup__spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}
.app-mockup__spark-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-orange), rgba(240,136,38,0.30));
  border-radius: 2px;
  animation: spark-grow 1.2s var(--ease-out) backwards;
}
.app-mockup__spark-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.app-mockup__spark-bar:nth-child(2) { height: 50%; animation-delay: 0.08s; }
.app-mockup__spark-bar:nth-child(3) { height: 35%; animation-delay: 0.16s; }
.app-mockup__spark-bar:nth-child(4) { height: 65%; animation-delay: 0.24s; }
.app-mockup__spark-bar:nth-child(5) { height: 80%; animation-delay: 0.32s; }
.app-mockup__spark-bar:nth-child(6) { height: 100%; animation-delay: 0.4s; }
@keyframes spark-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}
.app-mockup__stat--blue .app-mockup__spark-bar {
  background: linear-gradient(180deg, var(--brand-blue), rgba(26,79,143,0.30));
}

.app-mockup__row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.app-mockup__row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,79,143,0.12), rgba(26,79,143,0.04));
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-mockup__row-icon .icon { width: 18px; height: 18px; stroke-width: 1.8; }
.app-mockup__row-icon--green {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  color: #059669;
}
.app-mockup__row-text { flex: 1; min-width: 0; }
.app-mockup__row-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.app-mockup__row-sub {
  font-size: 10.5px;
  color: var(--muted);
}
.app-mockup__row-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-orange);
  background: rgba(240,136,38,0.08);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Floating chips around mockup */
.hero__chip {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 14px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
  white-space: nowrap;
}
.hero__chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.hero__chip-icon .icon { width: 12px; height: 12px; stroke-width: 2.2; }
.hero__chip--ai {
  top: -20px;
  left: -30px;
  animation: float 7s ease-in-out infinite;
}
.hero__chip--ai .hero__chip-icon { background: linear-gradient(135deg, var(--brand-purple), #5B21B6); }
.hero__chip--payment {
  bottom: 50px;
  right: -40px;
  animation: float 7s ease-in-out infinite 2.5s;
}
.hero__chip--payment .hero__chip-icon { background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-3)); }
.hero__chip--share {
  bottom: -20px;
  left: 30px;
  animation: float 7s ease-in-out infinite 1.2s;
}
.hero__chip--share .hero__chip-icon { background: linear-gradient(135deg, #10B981, #059669); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.30); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.10); }
}

@media (max-width: 900px) {
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .hero__chip--share, .hero__chip--ai, .hero__chip--payment { display: none; }
}
@media (max-width: 540px) {
  .app-mockup__body { gap: 8px; padding: 14px; }
  .hero__title { font-size: clamp(36px, 9vw, 56px); }
}

/* Hero partner badge */
.hero__partner {
  margin-top: var(--space-7);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: all var(--t-base);
}
.hero__partner:hover {
  background: white;
  border-color: rgba(240,136,38,0.30);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero__partner-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__partner-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.hero__partner-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* =============================================================================
   TECH STACK STRIP — Built with credibility
   ============================================================================= */
.techstack {
  padding: var(--space-7) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.techstack__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.techstack__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  max-width: 980px;
  margin: 0 auto;
}
.techstack__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  transition: all var(--t-base);
  font-family: var(--font-mono);
}
.techstack__item:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.techstack__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* =============================================================================
   STATS BAR — Premium dark with mesh gradient + counter
   ============================================================================= */
.stats-bar {
  background: var(--dark-bg);
  color: white;
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(240,136,38,0.20), transparent 50%),
    radial-gradient(at 80% 70%, rgba(46,107,176,0.25), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.stats-bar__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-10);
}
.stats-bar__header .display {
  font-size: clamp(28px, 3.5vw, 44px);
  color: white;
  margin-bottom: var(--space-3);
}
.stats-bar__subtitle {
  color: var(--dark-muted);
  font-size: 16px;
  line-height: 1.6;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .stats-bar__grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.stat-item {
  position: relative;
  padding: var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  text-align: left;
  isolation: isolate;
  overflow: hidden;
  transition: all var(--t-base);
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-6);
  width: 40px;
  height: 4px;
  background: var(--brand-orange);
  border-radius: 2px;
  box-shadow: 0 0 16px var(--brand-orange);
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle at top right, rgba(240,136,38,0.15), transparent 70%);
  z-index: -1;
}
.stat-item:hover {
  border-color: rgba(240,136,38,0.30);
  transform: translateY(-4px);
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
  display: inline-block;
}
.stat-item__suffix {
  font-size: 0.6em;
  color: var(--brand-orange-2);
  font-weight: 700;
  margin-left: 4px;
}
.stat-item__label {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.6;
  max-width: 280px;
}

/* =============================================================================
   SECTION HEADERS
   ============================================================================= */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-10);
}
.section-header--left {
  text-align: left;
  margin-left: 0;
}
.section-header__lead {
  margin-top: var(--space-5);
  color: var(--body);
}

/* =============================================================================
   SOLUTION — BENTO GRID with glow card mouse-follow
   ============================================================================= */
.solution-section {
  position: relative;
  background: var(--bg);
}
.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 0% 20%, rgba(240,136,38,0.06), transparent 40%),
    radial-gradient(at 100% 80%, rgba(26,79,143,0.06), transparent 40%);
  pointer-events: none;
}
.solution-section > .container { position: relative; z-index: 1; }

.modes-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-4);
}
@media (max-width: 1024px) {
  .modes-bento { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .modes-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
}

/* Glow card with mouse-following spotlight */
.mode-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  padding: var(--space-6);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x) var(--mouse-y),
    rgba(240,136,38,0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  z-index: 0;
}
.mode-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(240,136,38,0.40), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  z-index: 0;
}
.mode-card > * { position: relative; z-index: 1; }
.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mode-card:hover::before,
.mode-card:hover::after { opacity: 1; }

/* Bento spans */
.mode-card--lg { grid-column: span 3; grid-row: span 1; }
.mode-card--md { grid-column: span 2; }
.mode-card--sm { grid-column: span 2; }
@media (max-width: 1024px) {
  .mode-card--lg { grid-column: span 4; }
  .mode-card--md { grid-column: span 2; }
  .mode-card--sm { grid-column: span 2; }
}
@media (max-width: 640px) {
  .mode-card--lg,
  .mode-card--md,
  .mode-card--sm { grid-column: span 1; }
}

.mode-card__num {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0;
  z-index: 2;
}

.mode-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(240,136,38,0.04));
  color: var(--brand-orange);
  border: 1px solid rgba(240,136,38,0.18);
  transition: all var(--t-base);
}
.mode-card__icon .icon { width: 24px; height: 24px; stroke-width: 1.7; }
.mode-card:nth-child(5) .mode-card__icon .icon { color: white; }
.mode-card:nth-child(2) .mode-card__icon {
  background: linear-gradient(135deg, rgba(26,79,143,0.10), rgba(26,79,143,0.04));
  color: var(--brand-blue);
  border-color: rgba(26,79,143,0.18);
}
.mode-card:nth-child(3) .mode-card__icon {
  background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(16,185,129,0.04));
  color: #059669;
  border-color: rgba(16,185,129,0.18);
}
.mode-card:nth-child(4) .mode-card__icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(124,58,237,0.04));
  color: #7C3AED;
  border-color: rgba(124,58,237,0.18);
}
.mode-card:nth-child(5) .mode-card__icon {
  background: var(--grad-brand);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.mode-card:hover .mode-card__icon {
  transform: scale(1.05) rotate(-3deg);
}

.mode-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.mode-card__desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.mode-card--lg .mode-card__title { font-size: 26px; }
.mode-card--lg .mode-card__desc { font-size: 15px; }

.mode-card__tags {
  margin-top: auto;
  padding-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mode-card__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  letter-spacing: 0;
}

/* =============================================================================
   APP PREVIEW SECTION — Big sophisticated mockup with feature callouts
   ============================================================================= */
.preview-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: var(--space-16) 0;
}
.preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(240,136,38,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26,79,143,0.08), transparent 50%);
  pointer-events: none;
}
.preview-section > .container { position: relative; z-index: 1; }

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: center;
}
@media (max-width: 1024px) {
  .preview-grid { grid-template-columns: 1fr; }
}

.preview__heading {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

.preview__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.preview__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.preview__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  box-shadow: var(--shadow-xs);
}
.preview__feature-icon .icon { width: 22px; height: 22px; stroke-width: 1.7; }
.preview__feature-text { flex: 1; min-width: 0; }
.preview__feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.preview__feature-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.preview__mockup-wrap {
  position: relative;
  perspective: 2000px;
}
.preview__mockup-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(240,136,38,0.20), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(26,79,143,0.20), transparent 60%);
  filter: blur(60px);
  z-index: -1;
}

.app-mockup--lg { transform: rotate(-1deg); }
.app-mockup--lg .app-mockup__body { padding: var(--space-6); gap: 14px; }

/* =============================================================================
   AUDIENCE — Modern cards
   ============================================================================= */
.audience-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(240,136,38,0.06), transparent 60%);
  pointer-events: none;
}
.audience-section > .container { position: relative; z-index: 1; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.audience-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  isolation: isolate;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
  z-index: 1;
}
.audience-card:nth-child(2)::before { background: var(--grad-cool); }
.audience-card:nth-child(3)::before { background: var(--grad-brand); }
.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--mouse-x) var(--mouse-y),
    rgba(240,136,38,0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  z-index: 0;
}
.audience-card > * { position: relative; z-index: 1; }
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.audience-card:hover::before { transform: scaleX(1); }
.audience-card:hover::after { opacity: 1; }

.audience-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(240,136,38,0.04));
  border: 1px solid rgba(240,136,38,0.15);
  color: var(--brand-orange);
}
.audience-card__avatar .icon { width: 30px; height: 30px; stroke-width: 1.5; }
.audience-card:nth-child(2) .audience-card__avatar { color: var(--brand-blue); }
.audience-card:nth-child(3) .audience-card__avatar { color: var(--brand-orange-dark); }
.audience-card:nth-child(2) .audience-card__avatar {
  background: linear-gradient(135deg, rgba(26,79,143,0.10), rgba(26,79,143,0.04));
  border-color: rgba(26,79,143,0.15);
}
.audience-card:nth-child(3) .audience-card__avatar {
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(26,79,143,0.10));
  border-color: rgba(240,136,38,0.15);
}

.audience-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.audience-card__desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.audience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.audience-card__list li {
  font-size: 14px;
  color: var(--body);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.audience-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(240,136,38,0.12);
  border: 1px solid rgba(240,136,38,0.25);
}
.audience-card__list li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 2px;
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
}
.audience-card:nth-child(2) .audience-card__list li::before {
  background: rgba(26,79,143,0.12);
  border-color: rgba(26,79,143,0.25);
}
.audience-card:nth-child(2) .audience-card__list li::after {
  color: var(--brand-blue);
}

/* =============================================================================
   FEATURES — Bento with glow
   ============================================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-item {
  --mouse-x: 50%;
  --mouse-y: 50%;
  padding: var(--space-6);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--mouse-x) var(--mouse-y),
    rgba(240,136,38,0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
  z-index: 0;
}
.feature-item > * { position: relative; z-index: 1; }
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240,136,38,0.30);
  box-shadow: var(--shadow-md);
}
.feature-item:hover::before { opacity: 1; }

.feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,79,143,0.10), rgba(26,79,143,0.04));
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(26,79,143,0.15);
}
.feature-item__icon .icon { width: 22px; height: 22px; stroke-width: 1.7; }
.feature-item:nth-child(6n+1) .feature-item__icon,
.feature-item:nth-child(6n+4) .feature-item__icon {
  background: linear-gradient(135deg, rgba(240,136,38,0.10), rgba(240,136,38,0.04));
  color: var(--brand-orange);
  border-color: rgba(240,136,38,0.15);
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.feature-item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================================================
   HOW IT WORKS — Premium dark with connecting timeline
   ============================================================================= */
.how-section {
  background: var(--dark-bg);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 20%, rgba(240,136,38,0.18), transparent 50%),
    radial-gradient(at 80% 80%, rgba(46,107,176,0.18), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.how-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}

.how-section .display { color: white; }
.how-section .lead { color: var(--dark-muted); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, rgba(240,136,38,0.40), rgba(46,107,176,0.40), rgba(240,136,38,0.40));
  z-index: 0;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
}

.how-step {
  position: relative;
  padding: var(--space-7);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  transition: all var(--t-base);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at top left, rgba(240,136,38,0.15), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(240,136,38,0.30);
  background: rgba(255,255,255,0.06);
}
.how-step:hover::before { opacity: 1; }

.how-step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(240,136,38,0.10);
  border: 1px solid rgba(240,136,38,0.30);
  border-radius: var(--radius-pill);
}
.how-step__num::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 8px var(--brand-orange);
}

.how-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.how-step__desc {
  font-size: 14.5px;
  color: var(--dark-muted);
  line-height: 1.65;
}

/* =============================================================================
   TESTIMONIAL — Quote spotlight
   ============================================================================= */
.testimonial-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(240,136,38,0.06), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(26,79,143,0.06), transparent 50%);
  pointer-events: none;
}
.testimonial-section > .container { position: relative; z-index: 1; }

.testimonial-card {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  position: relative;
  box-shadow: var(--shadow-md);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: var(--space-7);
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 1;
  color: rgba(240,136,38,0.12);
  font-weight: 700;
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
}

.testimonial__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-5);
  color: var(--brand-orange);
}
.testimonial__rating .icon { width: 22px; height: 22px; }

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 1;
}
.testimonial__quote em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}
.testimonial__author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.testimonial__author-text { text-align: left; }
.testimonial__author-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.testimonial__author-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* =============================================================================
   PARTENAIRES — ACAS premium
   ============================================================================= */
.partners-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background:
    radial-gradient(circle at 30% 30%, rgba(240,136,38,0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26,79,143,0.08), transparent 50%);
  pointer-events: none;
}
.partners-section > .container { position: relative; z-index: 1; }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-7);
}

.partner-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--grad-brand);
  z-index: 1;
}
.partner-card::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(240,136,38,0.08), transparent 70%);
  z-index: -1;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
@media (min-width: 768px) {
  .partner-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.partner-card__logo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .partner-card__logo-wrap { margin: 0; }
}
.partner-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.partner-card__content {
  flex: 1;
  min-width: 0;
}
.partner-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.05;
  animation: aurora-text 12s ease infinite;
}
.partner-card__fullname {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}
.partner-card__desc {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.partner-card__contributions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.partner-card__contributions li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
}
.partner-card__contributions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--grad-warm);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(240,136,38,0.4);
}
.partner-card__contributions li strong {
  color: var(--ink);
  font-weight: 600;
}

.partners-footer {
  margin-top: var(--space-7);
  padding: var(--space-6) var(--space-7);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.partners-footer p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}
.partners-footer em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 17px;
}
.partners-footer a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.partners-footer a:hover { color: var(--brand-orange-dark); }

/* =============================================================================
   BRACELET — Premium split
   ============================================================================= */
.bracelet-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.bracelet-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(240,136,38,0.10), transparent 60%);
  pointer-events: none;
}

.bracelet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .bracelet-grid { grid-template-columns: 1fr; }
}

.bracelet__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bracelet__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.bracelet__circle--outer {
  width: 380px;
  height: 380px;
  border-color: rgba(240,136,38,0.20);
  animation: pulse-outer 3s ease-in-out infinite;
}
.bracelet__circle--mid {
  width: 250px;
  height: 250px;
  border-color: rgba(240,136,38,0.40);
  animation: pulse-mid 3s ease-in-out infinite;
}
.bracelet__circle--inner {
  width: 144px;
  height: 144px;
  background: var(--grad-warm);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    0 0 0 1px rgba(240,136,38,0.30),
    0 24px 56px -12px rgba(240,136,38,0.55);
}
.bracelet__circle--inner .icon { width: 56px; height: 56px; stroke-width: 1.5; }
@keyframes pulse-outer {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes pulse-mid {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.bracelet__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(240,136,38,0.15), rgba(240,136,38,0.05));
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240,136,38,0.25);
  margin-bottom: var(--space-5);
}
.bracelet__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}

.bracelet__features {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 540px) {
  .bracelet__features { grid-template-columns: 1fr; }
}

.bracelet__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all var(--t-base);
}
.bracelet__feature:hover {
  border-color: rgba(240,136,38,0.30);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.bracelet__feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--grad-warm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bracelet__feature-icon .icon { width: 16px; height: 16px; stroke-width: 2; }
.bracelet__feature-text {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
}
.bracelet__feature-text strong { color: var(--ink); font-weight: 600; }

/* =============================================================================
   PRICING — Toggle + premium cards
   ============================================================================= */
.pricing-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 50% 0%, rgba(240,136,38,0.08), transparent 50%),
    radial-gradient(at 50% 100%, rgba(26,79,143,0.06), transparent 50%);
  pointer-events: none;
}
.pricing-section > .container { position: relative; z-index: 1; }

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin: 0 auto var(--space-8);
  box-shadow: var(--shadow-xs);
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
}
.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t-base);
}
.pricing-toggle__btn.is-active {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-md);
}
.pricing-toggle__save {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: rgba(16,185,129,0.15);
  color: #059669;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.pricing-toggle__btn.is-active .pricing-toggle__save {
  background: rgba(16,185,129,0.30);
  color: #D1FAE5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
  margin-bottom: var(--space-8);
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15,23,42,0.18);
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(240,136,38,0.04) 0%, white 40%);
  border-color: rgba(240,136,38,0.25);
  box-shadow: var(--shadow-glow-orange);
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--grad-warm);
}

.pricing-card__badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: var(--grad-warm);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-1);
}
.pricing-card__price-unit {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-card__price-period {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.pricing-card__price[data-monthly] .pricing-card__price-yearly,
.pricing-card__price[data-yearly] { display: none; }
body.is-yearly .pricing-card__price[data-monthly] { display: none; }
body.is-yearly .pricing-card__price[data-yearly] { display: block; }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  flex-grow: 1;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--body);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(240,136,38,0.12);
  border: 1px solid rgba(240,136,38,0.25);
}
.pricing-card__features li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
}
.pricing-card__features li.is-emphasized {
  font-weight: 600;
  color: var(--ink);
}

.pricing-card .btn { width: 100%; }

/* Payment methods strip */
.payment-methods {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-7);
  text-align: center;
}
.payment-methods__label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.payment-methods__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.payment-methods__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  padding: 8px 14px 8px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: all var(--t-base);
}
.payment-methods__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6) inset;
}
.payment-methods__item:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}
.payment-methods__footnote {
  font-size: 12.5px;
  color: var(--muted);
}

/* =============================================================================
   FAQ — Accordions
   ============================================================================= */
.faq-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,23,42,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.faq-section > .container { position: relative; z-index: 1; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item:hover {
  border-color: rgba(240,136,38,0.30);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: rgba(240,136,38,0.40);
  box-shadow: var(--shadow-md);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: background var(--t-base);
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary:hover { background: var(--cream); }

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(240,136,38,0.10);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all var(--t-base);
}
.faq-item[open] .faq-item__icon {
  background: var(--brand-orange);
  color: white;
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  animation: faq-slide 320ms var(--ease-out);
}
.faq-item__answer p { margin-bottom: var(--space-3); }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer a {
  color: var(--brand-orange);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================================
   FINAL CTA — Aurora dark
   ============================================================================= */
.final-cta {
  background: var(--dark-bg);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(240,136,38,0.30), transparent 40%),
    radial-gradient(at 80% 70%, rgba(46,107,176,0.30), transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: aurora-cta 16s ease-in-out infinite;
}
@keyframes aurora-cta {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 100% 50%, 0% 50%; }
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.final-cta .display { color: white; margin-bottom: var(--space-4); }
.final-cta .lead { color: var(--dark-muted); margin-bottom: var(--space-7); }

.final-cta__ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   FOOTER — Sophisticated dark
   ============================================================================= */
.site-footer {
  background: var(--ink);
  color: var(--dark-muted);
  padding: var(--space-12) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,136,38,0.40), transparent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer__brand .site-logo { color: white; }
.site-footer__brand .site-logo__nc { color: white; }
.site-footer__brand .site-logo__360 { color: var(--brand-orange); }
.site-footer__brand-tagline {
  margin-top: var(--space-4);
  color: var(--dark-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  max-width: 300px;
  line-height: 1.5;
}

.site-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: var(--space-5);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.site-footer__links a {
  color: var(--dark-muted);
  font-size: 14px;
  transition: color var(--t-fast);
}
.site-footer__links a:hover {
  color: white;
}

.site-footer__bottom {
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.site-footer__copyright {
  font-size: 12.5px;
  color: var(--dark-subtle);
}
.site-footer__legal {
  display: flex;
  gap: var(--space-5);
  font-size: 12.5px;
}
.site-footer__legal a {
  color: var(--dark-subtle);
  transition: color var(--t-fast);
}
.site-footer__legal a:hover {
  color: white;
}

.site-footer__partner {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__partner-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark-subtle);
  margin-bottom: 10px;
}
.site-footer__partner-link {
  display: inline-flex;
  background: white;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: transform var(--t-fast);
}
.site-footer__partner-link:hover { transform: translateY(-2px); }
.site-footer__partner-logo {
  height: 36px;
  width: auto;
  display: block;
}

/* =============================================================================
   ANIMATIONS / SCROLL REVEAL
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================================================
   LEGAL PAGES
   ============================================================================= */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-12) var(--container-pad);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: -0.025em;
}
.legal-page__date {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}
.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}
.legal-page p {
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.legal-page ul {
  margin: var(--space-3) 0 var(--space-5);
  padding-left: var(--space-5);
}
.legal-page li {
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}
.legal-page a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-5) 0;
  font-size: 14px;
}
.legal-page th, .legal-page td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal-page th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
}

.callout {
  background: var(--brand-blue-wash);
  border-left: 4px solid var(--brand-blue);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  margin: var(--space-5) 0;
}
.callout--orange {
  background: var(--brand-orange-wash);
  border-color: var(--brand-orange);
}
.callout strong { color: var(--ink); }

/* =============================================================================
   RESPONSIVE TWEAKS
   ============================================================================= */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .pricing-card { padding: var(--space-6); }
}

/* =============================================================================
   BETA BANNER
   ============================================================================= */
.beta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 10px var(--space-5);
  background: linear-gradient(90deg, var(--dark-bg) 0%, var(--brand-blue-dark) 50%, var(--dark-bg) 100%);
  color: white;
  font-size: 13px;
  text-decoration: none;
  transition: background var(--t-fast);
  position: relative;
  overflow: hidden;
}
.beta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}
.beta-banner:hover {
  text-decoration: none;
  background: var(--brand-blue-dark);
}
.beta-banner__dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
.beta-banner__text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}
.beta-banner__text strong {
  color: var(--brand-orange-2);
  font-weight: 700;
}
.beta-banner__cta {
  color: var(--brand-orange);
  font-weight: 700;
  white-space: nowrap;
}
.beta-banner:hover .beta-banner__cta { color: white; }
@media (max-width: 540px) {
  .beta-banner { font-size: 12px; padding: 8px var(--space-3); }
  .beta-banner__cta { width: 100%; text-align: center; }
}

/* =============================================================================
   FEEDBACK / BETA TESTERS PAGE
   ============================================================================= */
.beta-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--brand-blue-dark) 100%);
  color: white;
  padding: var(--space-12) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}
.beta-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,136,38,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.beta-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}
.beta-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(240,136,38,0.15);
  border: 1px solid rgba(240,136,38,0.4);
  color: var(--brand-orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.beta-badge__dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
.beta-hero__title { color: white; margin-bottom: var(--space-4); }
.beta-hero__lead { color: var(--brand-blue-soft); margin-bottom: var(--space-8); max-width: 720px; }
.beta-hero__stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.beta-hero__stat { text-align: left; }
.beta-hero__stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.beta-hero__stat-label {
  font-size: 12px;
  color: var(--brand-blue-soft);
  margin-top: var(--space-1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feedback-section { background: var(--bg-soft); }
.feedback-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 1024px) {
  .feedback-wrapper { grid-template-columns: 1fr; gap: var(--space-8); }
}
.feedback-sidebar { position: relative; }
.feedback-sidebar__sticky { position: sticky; top: 100px; }
@media (max-width: 1024px) {
  .feedback-sidebar__sticky { position: static; }
}
.feedback-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.feedback-promises li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.feedback-promises__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.feedback-contact-card {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.feedback-contact-card__title {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
  font-size: 15px;
}
.feedback-contact-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.feedback-main {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 540px) {
  .feedback-main { padding: var(--space-5); border-radius: var(--radius-lg); }
}
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.feedback-fieldset { border: none; padding: 0; margin: 0; }
.feedback-fieldset__legend {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.feedback-fieldset__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: white;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.feedback-fieldset__title { flex: 1; }

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 540px) { .feedback-grid { grid-template-columns: 1fr; } }
.feedback-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.feedback-field:last-child { margin-bottom: 0; }
.feedback-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.feedback-label .required { color: #DC2626; font-weight: 700; }
.feedback-help { font-size: 12px; color: var(--muted); line-height: 1.4; }
.feedback-input,
.feedback-textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  color: var(--ink);
  transition: all var(--t-fast);
  width: 100%;
}
.feedback-input:hover, .feedback-textarea:hover { border-color: var(--subtle); }
.feedback-input:focus, .feedback-textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(240,136,38,0.15);
}
.feedback-input:invalid:not(:placeholder-shown):not(:focus),
.feedback-textarea:invalid:not(:placeholder-shown):not(:focus) { border-color: #FCA5A5; }
.feedback-textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
select.feedback-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%236B7280' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.feedback-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.feedback-radio-group--type {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.feedback-radio { display: block; cursor: pointer; position: relative; }
.feedback-radio input { position: absolute; opacity: 0; pointer-events: none; }
.feedback-radio__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--t-fast);
  height: 100%;
}
.feedback-radio:hover .feedback-radio__visual {
  border-color: var(--brand-orange-2);
  background: var(--brand-orange-wash);
}
.feedback-radio input:checked + .feedback-radio__visual {
  border-color: var(--brand-orange);
  background: var(--brand-orange-wash);
  box-shadow: 0 0 0 3px rgba(240,136,38,0.15);
}
.feedback-radio input:focus-visible + .feedback-radio__visual {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.feedback-radio__icon { font-size: 24px; margin-bottom: var(--space-1); }
.feedback-radio__title { font-weight: 700; font-size: 14px; color: var(--ink); }
.feedback-radio__desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.feedback-radio-group--severity {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.feedback-radio-pill { display: block; cursor: pointer; position: relative; }
.feedback-radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.feedback-radio-pill > span {
  display: block;
  padding: 10px 14px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  background: white;
  transition: all var(--t-fast);
}
.feedback-radio-pill:hover > span { border-color: var(--brand-orange-2); }
.feedback-radio-pill input:checked + span {
  border-color: var(--brand-orange);
  background: var(--brand-orange-wash);
  color: var(--brand-orange-dark);
}
.feedback-radio-pill--critical input:checked + span {
  border-color: #DC2626;
  background: #FEE2E2;
  color: #991B1B;
}
.feedback-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  padding: var(--space-3);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  transition: all var(--t-fast);
  margin-bottom: var(--space-3);
}
.feedback-checkbox:hover {
  background: white;
  border-color: var(--brand-orange-2);
}
.feedback-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.feedback-checkbox__visual {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: white;
  transition: all var(--t-fast);
  position: relative;
  margin-top: 1px;
}
.feedback-checkbox input:checked + .feedback-checkbox__visual {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}
.feedback-checkbox input:checked + .feedback-checkbox__visual::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.feedback-checkbox__text { flex: 1; font-size: 14px; line-height: 1.5; color: var(--body); }
.feedback-checkbox__text small {
  display: block;
  margin-top: var(--space-1);
  font-size: 12px;
  color: var(--muted);
}
.feedback-checkbox__text small a { color: var(--brand-blue); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; pointer-events: none; }
.feedback-field--conditional { display: none; animation: slideDown 0.3s ease-out; }
.feedback-field--conditional.is-visible { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.feedback-submit { text-align: center; padding-top: var(--space-3); }
.feedback-submit .btn { min-width: 280px; }
.feedback-submit-help { margin-top: var(--space-3); font-size: 12px; color: var(--muted); }
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: var(--space-2);
}
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7; cursor: not-allowed; }
.feedback-status {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1.5px solid;
  font-size: 14px;
  line-height: 1.5;
}
.feedback-status--error {
  background: #FEE2E2;
  border-color: #FCA5A5;
  color: #991B1B;
}
.feedback-status--success {
  background: #D1FAE5;
  border-color: #6EE7B7;
  color: #065F46;
}
.feedback-status ul { margin-top: var(--space-2); padding-left: var(--space-5); }
.feedback-success { text-align: center; padding: var(--space-10) var(--space-5); }
.feedback-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
}
.feedback-success__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.feedback-success__text {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto var(--space-5);
}
.feedback-success__id { font-size: 13px; color: var(--muted); margin-bottom: var(--space-6); }
.feedback-success__id code {
  background: var(--brand-blue-wash);
  color: var(--brand-blue-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
}
.feedback-success__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .feedback-success__actions { flex-direction: column; }
  .feedback-success__actions .btn { width: 100%; }
}

/* =============================================================================
   COOKIE BANNER — RGPD minimal
   ============================================================================= */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--dark-bg);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 56px -12px rgba(15, 23, 42, 0.50);
  padding: 18px 22px;
  animation: nc-cookie-slide-up 0.4s var(--ease-out);
  backdrop-filter: blur(20px);
}
@keyframes nc-cookie-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.cookie-banner__text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 640px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .cookie-banner__content { gap: 12px; }
  .cookie-banner__content .btn { width: 100%; }
}

/* =============================================================================
   v5.1 — PRO REFRESH · NOUVEAUX COMPOSANTS VISUELS
   Sections refondues avec photographies authentiques pour ancrage pro
   ============================================================================= */

/* ---------- PROBLEM SECTION (Storytelling avant solution — image éditoriale flottante) ---------- */
.problem-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(240,136,38,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
}
.problem-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-visual__img-float {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(5, 11, 27, 0.22))
          drop-shadow(0 10px 20px rgba(26, 79, 143, 0.12));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
}
.problem-visual:hover .problem-visual__img-float {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 36px 60px rgba(5, 11, 27, 0.28))
          drop-shadow(0 12px 24px rgba(26, 79, 143, 0.16));
}
.problem-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}
.problem-list__icon {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.problem-list li strong { color: var(--ink); font-weight: 700; }
.problem-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin: 0;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-3) 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px -6px rgba(240, 136, 38, 0.4);
}
.problem-arrow .icon { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-visual { max-width: 480px; margin: 0 auto; }
  .problem-visual__badge { right: 0; bottom: -16px; }
}

/* ---------- ECOSYSTEM FLOATER (image en icône flottante + texte) ---------- */
.ecosystem-floater {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: var(--space-8) auto var(--space-9);
  padding: 20px;
}
.ecosystem-floater__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.ecosystem-floater__visual::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(240, 136, 38, 0.16) 0%,
    rgba(26, 79, 143, 0.10) 35%,
    transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.ecosystem-floater__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: saturate(1.1) contrast(1.04)
          drop-shadow(0 40px 70px rgba(5, 11, 27, 0.30))
          drop-shadow(0 14px 30px rgba(26, 79, 143, 0.20));
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}
.ecosystem-floater:hover .ecosystem-floater__img {
  transform: translateY(-6px) scale(1.015);
  filter: saturate(1.15) contrast(1.05)
          drop-shadow(0 48px 80px rgba(5, 11, 27, 0.34))
          drop-shadow(0 18px 36px rgba(26, 79, 143, 0.24));
}
.ecosystem-floater__content {
  position: relative;
}
.ecosystem-floater__num {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: clamp(72px, 11vw, 132px);
  font-weight: 900;
  line-height: 0.85;
  background: linear-gradient(135deg, #F08826 0%, #FF6B35 50%, #FF9F45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  display: inline-block;
}
.ecosystem-floater__title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 var(--space-5);
}
.ecosystem-floater__text {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  max-width: 520px;
}
.ecosystem-floater__text strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .ecosystem-floater {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .ecosystem-floater__visual { max-width: 480px; margin: 0 auto; }
  .ecosystem-floater__text { margin: 0 auto; }
}

/* ---------- AUDIENCE CARDS WITH PHOTOS ---------- */
.audience-grid--with-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.audience-card--photo {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(5, 11, 27, 0.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.audience-card--photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(5, 11, 27, 0.18),
              0 8px 20px -6px rgba(26, 79, 143, 0.12);
  border-color: var(--brand-orange-soft);
}
.audience-card__photo {
  position: relative;
  aspect-ratio: 4 / 2.5;
  overflow: hidden;
  background: var(--bg-soft);
}
.audience-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.audience-card--photo:hover .audience-card__photo img { transform: scale(1.05); }
.audience-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,27,0) 50%, rgba(5,11,27,0.55) 100%);
  pointer-events: none;
}
.audience-card__photo-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 14px;
  box-shadow: 0 8px 20px -4px rgba(5, 11, 27, 0.25);
  z-index: 2;
}
.audience-card__photo-badge .icon {
  width: 22px;
  height: 22px;
  color: var(--brand-orange);
}
.audience-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 960px) {
  .audience-grid--with-photos { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ---------- HOW IT WORKS — Editorial typographique (XXL numéros + icônes) ---------- */
.how-grid--editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.how-step--editorial {
  position: relative;
  padding: 40px 32px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              border-color 0.4s ease;
}
.how-step--editorial:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 136, 38, 0.4);
}
.how-step__bignum {
  position: absolute;
  top: -14px;
  right: -10px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 200px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, rgba(240, 136, 38, 0.18) 0%, rgba(255, 159, 69, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.how-step__icon-xxl {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-3) 100%);
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 16px 32px -10px rgba(240, 136, 38, 0.5),
              0 4px 12px -4px rgba(255, 107, 53, 0.3);
}
.how-step__icon-xxl .icon {
  width: 30px;
  height: 30px;
  color: #fff;
}
.how-step__label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 136, 38, 0.9);
  margin-bottom: 10px;
}
.how-step--editorial .how-step__title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 12px;
  line-height: 1.2;
}
.how-step--editorial .how-step__desc {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
}
.how-step__bullets {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-step__bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.how-step__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-orange);
  font-weight: 700;
}

@media (max-width: 900px) {
  .how-grid--editorial { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .how-step__bignum { font-size: 160px; }
}

/* ---------- GALLERY (Le produit en action) ---------- */
.gallery-section {
  background: var(--bg);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px -6px rgba(5, 11, 27, 0.08);
  aspect-ratio: 4 / 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: zoom-in;
}
.gallery-item--lg {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -16px rgba(5, 11, 27, 0.22);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, rgba(5,11,27,0) 0%, rgba(5,11,27,0.88) 70%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.gallery-item__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(240, 136, 38, 0.92);
  color: #fff;
  border-radius: 20px;
}
.gallery-item__text {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--lg { grid-column: span 2; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-item, .gallery-item--lg { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ---------- TESTIMONIAL WITH PHOTO ---------- */
.testimonial-card--with-photo {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -25px rgba(5, 11, 27, 0.2),
              0 8px 30px -10px rgba(26, 79, 143, 0.12);
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card__media {
  position: relative;
  background: var(--ink-2);
  min-height: 100%;
}
.testimonial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.testimonial-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(240, 136, 38, 0.18) 0%,
    rgba(5, 11, 27, 0.0) 50%,
    rgba(26, 79, 143, 0.35) 100%
  );
  pointer-events: none;
}
.testimonial-card__content {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__author-avatar--logo {
  background: var(--bg-soft) !important;
  padding: 4px;
  overflow: hidden;
}
.testimonial__author-avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

@media (max-width: 820px) {
  .testimonial-card--with-photo { grid-template-columns: 1fr; }
  .testimonial-card__media { min-height: 240px; }
  .testimonial-card__media img { position: relative; height: 240px; }
}

/* ---------- PARTNER CARD — FEATURED ---------- */
.partner-card--featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -25px rgba(5, 11, 27, 0.2);
}
.partner-card__media {
  position: relative;
  background: var(--ink-2);
  min-height: 320px;
}
.partner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  filter: saturate(1.05);
}
.partner-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 11, 27, 0.15) 0%,
    rgba(26, 79, 143, 0.55) 100%
  );
  pointer-events: none;
}
.partner-card--featured .partner-card__logo-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 14px 30px -10px rgba(5, 11, 27, 0.35);
  z-index: 2;
}
.partner-card--featured .partner-card__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.partner-card--featured .partner-card__content {
  padding: clamp(28px, 4vw, 48px);
}

@media (max-width: 820px) {
  .partner-card--featured { grid-template-columns: 1fr; }
  .partner-card__media { min-height: 280px; }
}

/* ---------- BRACELET VISUAL WITH PHOTO (floating, no frame) ---------- */
.bracelet__visual--photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  isolation: isolate;
}
.bracelet__visual-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bracelet__visual--photo:hover .bracelet__visual-frame { transform: translateY(-6px) scale(1.015); }
.bracelet__visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.1)
          drop-shadow(0 28px 60px rgba(5, 11, 27, 0.35))
          drop-shadow(0 10px 30px rgba(16, 185, 129, 0.18));
}
.bracelet__visual-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.bracelet__visual-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: bracelet-pulse 3s ease-out infinite;
  z-index: -1;
}
@keyframes bracelet-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35); }
  70%  { box-shadow: 0 0 0 80px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.bracelet__visual-pin {
  position: absolute;
  top: 32px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  background: rgba(5, 11, 27, 0.92);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px -4px rgba(5, 11, 27, 0.5);
  z-index: 2;
}
.bracelet__visual-pin-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.9);
  animation: bracelet-dot 1.4s ease-in-out infinite;
}
@keyframes bracelet-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ---------- DEVICES SECTION (Multi-plateforme — mockup floating) ---------- */
.devices-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.devices-section::before {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26, 79, 143, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.devices-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
}
.devices-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.devices-visual__float {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 36px 70px rgba(5, 11, 27, 0.22))
          drop-shadow(0 14px 28px rgba(26, 79, 143, 0.15));
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}
.devices-visual:hover .devices-visual__float {
  transform: translateY(-6px) scale(1.015);
  filter: drop-shadow(0 44px 80px rgba(5, 11, 27, 0.28))
          drop-shadow(0 18px 36px rgba(26, 79, 143, 0.2));
}
.devices-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.devices-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--body);
}
.devices-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--brand-green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .devices-grid { grid-template-columns: 1fr; gap: 32px; }
  .devices-visual { max-width: 560px; margin: 0 auto; padding: 0; }
}

/* ---------- ECOSYSTEM SHOWCASE — Cleaner floating ---------- */
.ecosystem-showcase {
  box-shadow: 0 50px 100px -30px rgba(5, 11, 27, 0.35),
              0 16px 40px -8px rgba(26, 79, 143, 0.25);
}
.ecosystem-showcase__overlay {
  background: linear-gradient(180deg,
    rgba(5,11,27,0.0) 0%,
    rgba(5,11,27,0.25) 55%,
    rgba(5,11,27,0.85) 100%
  );
}

