/* ==========================================================================
   SITE DIGIT - Complete Stylesheet
   All class names match the HTML files exactly.
   Mobile-first responsive design.
   Breakpoints: 640px (sm), 768px (md), 1024px (lg)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Font Imports
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Cal Sans';
  src: url('https://cdn.jsdelivr.net/npm/cal-sans@1.0.1/fonts/webfonts/CalSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --background: #f6f6f7;
  --foreground: #171717;
  --purple: #6F2C91;
  --purple-light: #a855f7;
  --purple-dark: #5a2377;
  --dark-bg: #2d2d5e;
  --gray-bg: #E8E8E8;
  --text-dark: #1a1a20;
  --text-muted: #5C5C5C;
  --text-gray: #66666f;
  --text-gray-2: #5d5d66;
  --text-gray-3: #53535c;
}

/* --------------------------------------------------------------------------
   Base Reset & Global Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Screen-reader only (accessible but visually hidden) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'Geist', Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

::selection {
  background: rgba(111, 44, 145, 0.15);
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.cal-sans {
  font-family: 'Cal Sans', 'Geist', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
}

.text-purple       { color: var(--purple); }
.text-purple-light { color: var(--purple-light); }
.text-muted        { color: var(--text-muted); }
.text-bold         { font-weight: 700; }
.inline-flex       { display: inline-flex; }

/* --------------------------------------------------------------------------
   Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: #c4c4cc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a0a0aa;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes heroCharIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes mobileMenuIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(30px, -20px) scale(1.05); }
  50%      { transform: translate(-15px, 15px) scale(0.97); }
  75%      { transform: translate(20px, 10px) scale(1.03); }
}

@keyframes about-float-reverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(-25px, 15px) scale(1.04); }
  50%      { transform: translate(20px, -20px) scale(0.96); }
  75%      { transform: translate(-10px, -15px) scale(1.02); }
}

@keyframes about-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.02); }
}

@keyframes about-gradient-rotate {
  0%   { --about-angle: 0deg; }
  100% { --about-angle: 360deg; }
}

@keyframes about-border-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes about-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes nr-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 246, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 226, 230, 0.6);
  padding: 12px 20px;
}

@media (min-width: 768px) {
  .site-header {
    padding: 16px 48px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  height: 36px;
  width: auto;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 13px;
  color: var(--text-gray-2);
  position: relative;
  transition: color 300ms ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.nav-link:hover {
  color: var(--purple);
}

.nav-underline {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
  border-radius: 1px;
}

.nav-link:hover .nav-underline {
  transform: scaleX(1);
}

/* Social icon links (header + mobile menu) */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #323237;
  transition: background 300ms ease, transform 200ms ease;
}

.social-icon-link:hover {
  background: var(--purple);
  transform: translateY(-1px);
}

.social-icon-link--lg {
  width: 40px;
  height: 40px;
}

.social-icon-img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

.social-icon-link--lg .social-icon-img {
  width: 18px;
  height: 18px;
}

/* Header actions (right side) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #3a3a3f;
  border-radius: 50%;
  transition: background 300ms ease;
}

.mobile-menu-btn:hover {
  background: var(--purple);
}

.mobile-menu-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Primary small button (Contact / Accueil in header) */
.btn-primary-sm {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--purple);
  color: white;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 300ms ease, transform 200ms ease;
}

@media (min-width: 768px) {
  .btn-primary-sm {
    display: inline-flex;
  }
}

.btn-primary-sm:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: mobileMenuIn 300ms ease forwards;
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.mobile-menu-logo {
  height: 36px;
  width: auto;
}

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

.mobile-menu-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--foreground);
  text-align: center;
  transition: color 300ms ease;
}

.mobile-menu-link:hover {
  color: var(--purple);
}

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

/* ==========================================================================
   BACK TO SITE BUTTON (NR page)
   ========================================================================== */
.btn-back-site {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray-2);
  transition: color 300ms ease;
}

@media (min-width: 768px) {
  .btn-back-site {
    display: inline-flex;
  }
}

.btn-back-site:hover {
  color: var(--purple);
}

.btn-back-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   MAIN HOME
   ========================================================================== */
.main-home {
  position: relative;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 10;
  min-height: calc(100svh - 56px);
  background: var(--background);
  border-radius: 0 0 64px 64px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 22px 20px 40px;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: calc(100svh - 64px);
    padding: 26px 48px 56px;
  }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--text-dark);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 62px;
  }
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-line > .text-purple,
.hero-line > .text-muted {
  display: contents;
}

.hero-char {
  opacity: 0;
  display: inline-block;
  will-change: transform, opacity;
  animation-name: heroCharIn;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 620px;
  margin: 20px auto 50px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 80px;
  }
}

.hero-subtitle strong {
  font-weight: 600;
}

/* ==========================================================================
   MARQUEE / LOGO CAROUSEL
   ========================================================================== */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  padding: 12px 0;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  will-change: transform;
  animation: logoScroll 58s linear infinite;
}

@media (min-width: 640px) {
  .logo-marquee-track {
    gap: 66px;
  }
}

@media (min-width: 768px) {
  .logo-marquee-track {
    gap: 90px;
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 56px;
  width: 110px;
}

@media (min-width: 640px) {
  .marquee-item {
    height: 64px;
    width: 150px;
  }
}

@media (min-width: 1024px) {
  .marquee-item {
    width: 170px;
  }
}

.marquee-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .marquee-logo {
    height: 36px;
  }
}

/* Gradient fades */
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .marquee-fade-left,
  .marquee-fade-right {
    width: 160px;
  }
}

@media (min-width: 1024px) {
  .marquee-fade-left,
  .marquee-fade-right {
    width: 224px;
  }
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

/* ==========================================================================
   CONTENT WRAPPER
   ========================================================================== */
.content-wrapper {
  position: relative;
  background: var(--gray-bg);
  margin-top: -64px;
  padding-top: 64px;
}

/* ==========================================================================
   SCROLL REVEAL SECTION
   ========================================================================== */
.scroll-reveal-section {
  background: var(--gray-bg);
  padding: 96px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .scroll-reveal-section {
    padding: 112px 48px;
  }
}

.scroll-reveal-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.scroll-reveal-heading {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 640px) {
  .scroll-reveal-heading {
    font-size: 37px;
  }
}

@media (min-width: 768px) {
  .scroll-reveal-heading {
    font-size: 56px;
  }
}

.scroll-reveal-char {
  display: inline;
  color: #6F2C91;
  transition: color 200ms ease;
}

.scroll-reveal-char.is-visible {
  color: #111111;
}

.sr-space {
  display: inline;
}

.sr-br {
  display: block;
}

@media (max-width: 639px) {
  .sr-br {
    display: inline;
  }
}

/* Tags - Mobile */
.tags-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .tags-mobile {
    display: none;
  }
}

/* Tags - Desktop */
.tags-desktop {
  display: none;
}

@media (min-width: 768px) {
  .tags-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: white;
  border-radius: 9999px;
  background: linear-gradient(135deg, #3a3a42, #2a2a30);
  white-space: nowrap;
}

.tag-pill--lg {
  padding: 8px 16px;
  font-size: 14px;
}

.tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.tag-pill--lg .tag-icon {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   RIBBON SECTION
   ========================================================================== */
.ribbon-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--gray-bg);
  padding: 40px 0;
}

@media (min-width: 640px) {
  .ribbon-section {
    padding: 72px 0;
  }
}

@media (min-width: 768px) {
  .ribbon-section {
    padding: 88px 0;
  }
}

.ribbon-container {
  position: relative;
  height: 110px;
  overflow-x: clip;
  overflow-y: visible;
}

@media (min-width: 640px) {
  .ribbon-container {
    height: 150px;
  }
}

@media (min-width: 768px) {
  .ribbon-container {
    height: 180px;
  }
}

.ribbon-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 12px 0;
  overflow: hidden;
  width: 190vw;
}

@media (min-width: 768px) {
  .ribbon-strip {
    padding: 16px 0;
  }
}

.ribbon-strip--purple {
  background: var(--purple);
  top: 26%;
  transform: translateX(-50%) rotate(5deg);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.ribbon-strip--dark {
  background: #09090b;
  top: 44%;
  transform: translateX(-50%) rotate(-5deg);
  width: 195vw;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 40px;
  padding: 0 48px;
  will-change: transform;
}

@media (min-width: 768px) {
  .ribbon-track {
    padding: 0 64px;
  }
}

.ribbon-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .ribbon-item {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .ribbon-item {
    font-size: 40px;
  }
}

.ribbon-logo {
  height: 1em;
  width: auto;
  flex-shrink: 0;
  margin: 0 25px;
}

@media (min-width: 768px) {
  .ribbon-logo {
    height: 36px;
  }
}

/* ==========================================================================
   FEATURES SECTION (Savoir-faire)
   ========================================================================== */
.features-section {
  background: var(--gray-bg);
  padding: 80px 24px 56px;
}

@media (min-width: 768px) {
  .features-section {
    padding: 128px 48px 80px;
  }
}

.section-inner-lg {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.features-header {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .features-header {
    margin-bottom: 80px;
  }
}

.features-header-text {
  max-width: 700px;
}

.section-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 56px;
  }
}

.section-subtitle {
  font-size: 17px;
  color: #53535c;
  max-width: 700px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.feature-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 400ms ease, box-shadow 400ms ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(111, 44, 145, 0.13);
}

.feature-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity 400ms ease;
}

.feature-card:hover .feature-accent {
  opacity: 1;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(111, 44, 145, 0.1);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION SEPARATOR
   ========================================================================== */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background: var(--gray-bg);
}

.separator-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
}

.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 44, 145, 0.25) 50%, transparent);
}

.separator-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.separator-dot {
  border-radius: 50%;
  background: var(--purple);
}

.separator-dot--sm {
  width: 4px;
  height: 4px;
  opacity: 0.4;
}

.separator-dot--md {
  width: 6px;
  height: 6px;
  opacity: 0.7;
}

/* ==========================================================================
   OFFERS SECTION
   ========================================================================== */
.offers-section {
  background: var(--gray-bg);
  padding: 56px 24px 96px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .offers-section {
    padding: 80px 48px 128px;
  }
}

/* Background blobs */
.offers-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.offers-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
}

.offers-blob--left {
  width: 600px;
  height: 600px;
  top: 20%;
  left: 12%;
  filter: blur(150px);
  opacity: 0.04;
}

.offers-blob--right {
  width: 450px;
  height: 450px;
  bottom: 5%;
  right: 8%;
  filter: blur(130px);
  opacity: 0.03;
}

.offers-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}

.offers-subtitle {
  font-size: 17px;
  color: #53535c;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Offer cards */
.offer-card {
  position: relative;
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 500ms ease, box-shadow 500ms ease;
}

@media (min-width: 640px) {
  .offer-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .offer-card {
    padding: 32px 40px;
  }
}

.offer-card:hover {
  transform: translateY(-2px);
}

.offer-card--light {
  background: white;
  border: 1px solid #e2e2e8;
}

.offer-card--light:hover {
  box-shadow: 0 12px 40px rgba(111, 44, 145, 0.1);
  border-color: rgba(111, 44, 145, 0.2);
}

.offer-card--dark {
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.offer-card--dark:hover {
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.25);
}

/* Reveal animation */
.offer-reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    transform 700ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    box-shadow 500ms ease,
    border-color 400ms ease;
  will-change: opacity, transform;
}

.offer-reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mouse glow effect */
.mouse-glow {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Offer glow overlay */
.offer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  border-radius: 28px;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(111, 44, 145, 0.08),
    transparent 50%
  );
}

.offer-glow--dark {
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(168, 85, 247, 0.1),
    transparent 50%
  );
}

.offer-card:hover .offer-glow {
  opacity: 1;
}

/* Top border gradient */
.offer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--purple-light), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.offer-card:hover .offer-top-border {
  opacity: 1;
}

/* Watermark */
.offer-watermark {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 10;
  font-size: 55px;
  font-weight: 700;
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  transition: opacity 500ms ease;
  color: #1a1a20;
}

.offer-watermark--dark {
  color: white;
}

.offer-card:hover .offer-watermark {
  opacity: 0.12;
}

/* Offer content */
.offer-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 1024px) {
  .offer-content {
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
  }
}

.offer-text {
  flex: 1;
  min-width: 0;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .offer-text {
    margin-bottom: 0;
  }
}

.offer-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .offer-title {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .offer-title {
    font-size: 34px;
  }
}

.offer-title--dark {
  color: white;
}

.offer-summary {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 440px;
}

.offer-summary--dark {
  color: #c0c0ca;
}

/* Offer separator line */
.offer-separator {
  height: 1px;
  width: 100%;
  background: #e8e8ee;
  margin-bottom: 20px;
  border-radius: 1px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .offer-separator {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .offer-separator-fill {
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--purple), var(--purple-light), var(--purple));
  }
}

.offer-separator--dark {
  background: rgba(255, 255, 255, 0.06);
}

.offer-separator-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 800ms ease;
}

.offer-card:hover .offer-separator-fill {
  width: 100%;
}

/* Feature items */
.offer-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

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

@media (min-width: 1024px) {
  .offer-features {
    width: 380px;
    flex-shrink: 0;
    margin-right: 64px;
  }
}

.offer-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 300ms ease;
  will-change: opacity, transform;
}

.offer-feature-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-feature--light {
  background: #f5f5f7;
}

.offer-feature--light:hover {
  background: #ede9f5;
}

.offer-feature--dark {
  background: rgba(255, 255, 255, 0.1);
}

.offer-feature--dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Check icon */
.offer-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-check img {
  width: 12px;
  height: 12px;
}

.offer-check--light {
  background: rgba(111, 44, 145, 0.1);
}

.offer-check--light img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(60%) saturate(3000%) hue-rotate(266deg) brightness(80%) contrast(100%);
}

.offer-check--dark {
  background: rgba(168, 85, 247, 0.2);
}

.offer-check--dark img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(80%) saturate(3000%) hue-rotate(250deg) brightness(100%) contrast(100%);
}

.offer-feature-text {
  font-size: 14px;
  line-height: 1.5;
}

.offer-feature-text--light {
  color: var(--text-gray-3);
}

.offer-feature-text--dark {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  position: relative;
  background: var(--dark-bg);
  color: white;
  padding: 64px 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-section {
    padding: 160px 48px;
  }
}

/* Background layers */
.about-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(111, 44, 145, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.08;
  pointer-events: none;
  background: var(--purple);
}

.about-ambient-glow--right {
  top: -20%;
  right: -15%;
}

.about-ambient-glow--left {
  bottom: -20%;
  left: -15%;
}

/* Grid background */
.about-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-grid-h {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 80px;
}

.about-grid-v {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 100%;
}

.about-grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Noise texture */
.about-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
}

/* Edge glow */
.about-edge-glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.about-edge-glow--top {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.about-edge-glow--bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
}

/* About inner */
.about-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 48px;
}

/* Section label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-label--center {
  justify-content: center;
}

.label-line {
  width: 32px;
  height: 1px;
  background: rgba(168, 85, 247, 0.5);
}

.label-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 30px;
  color: white;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 42px;
  }
}

@media (min-width: 768px) {
  .about-title {
    font-size: 60px;
  }
}

.about-desc {
  font-size: 17px;
  color: #c0c0cc;
  max-width: 520px;
  line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    transform 600ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    border-color 500ms ease,
    background 500ms ease;
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  .about-stat-card {
    padding: 40px;
  }
}

.about-stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

/* Mouse glow on stat card */
.stat-mouse-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  border-radius: 20px;
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(168, 85, 247, 0.08),
    transparent 50%
  );
}

.about-stat-card:hover .stat-mouse-glow {
  opacity: 1;
}

/* Stat watermark */
.stat-watermark {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 48px;
  font-weight: 700;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  color: white;
}

/* Stat inner */
.stat-inner {
  position: relative;
  z-index: 5;
}

.stat-counter-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, white, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 56px;
  }
}

.stat-suffix {
  font-size: 28px;
  font-weight: 600;
  color: var(--purple-light);
}

@media (min-width: 768px) {
  .stat-suffix {
    font-size: 32px;
  }
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-desc {
  font-size: 13px;
  color: #a0a0ac;
  line-height: 1.625;
  margin-bottom: 12px;
}

.stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* About divider */
.about-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.about-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.25), transparent);
}

.about-divider-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
}

/* Fundamentals */
.fundamentals-header {
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .fundamentals-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
}

.fundamentals-desc {
  font-size: 17px;
  color: #c0c0cc;
  max-width: 380px;
  line-height: 1.8;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .fundamentals-desc {
    text-align: right;
    margin-top: 0;
  }
}

.fundamentals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

/* About reveal item */
.about-reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    transform 700ms cubic-bezier(0.21, 0.47, 0.32, 0.98),
    border-color 500ms ease,
    background-color 500ms ease;
  will-change: opacity, transform;
}

.about-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fundamental card */
.fundamental-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 400ms ease, background-color 400ms ease;
}

.fundamental-card:hover {
  border-color: rgba(168, 85, 247, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.fundamental-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.fundamental-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
  border-radius: 20px;
  background: radial-gradient(
    350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(168, 85, 247, 0.08),
    transparent 50%
  );
}

.fundamental-card:hover .fundamental-glow {
  opacity: 1;
}

.fundamental-inner {
  position: relative;
  z-index: 5;
  padding: 28px;
}

.fundamental-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.fundamental-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-light);
  opacity: 0.5;
}

.fundamental-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fundamental-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.fundamental-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  border-radius: 1px;
  overflow: hidden;
}

.fundamental-divider-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 800ms ease;
  animation: about-gradient-shift 4s ease-in-out infinite;
  background-size: 200% 200%;
}

.fundamental-card:hover .fundamental-divider-fill {
  width: 100%;
}

.fundamental-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 17px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.fundamental-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid rgba(168, 85, 247, 0.3);
  padding-left: 12px;
}

.fundamental-quote p {
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  position: relative;
  background: var(--gray-bg);
  padding: 64px 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 80px 48px;
  }
}

/* Purple blur blobs */
.testimonials-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.testimonials-blob--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -10%;
}

.testimonials-blob--2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -5%;
}

.testimonials-blob--3 {
  width: 250px;
  height: 250px;
  bottom: -10%;
  left: 30%;
}

/* Testimonials block */
.testimonials-block {
  margin-bottom: 56px;
}

.testimonials-block:last-child {
  margin-bottom: 0;
}

.testimonials-block-header {
  text-align: center;
  margin-bottom: 32px;
}

.testimonials-block-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .testimonials-block-title {
    font-size: 28px;
  }
}

.testimonials-block-desc {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial group / grid */
.testimonial-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

/* Testimonial card */
.testimonial-card {
  background: var(--background);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 400ms ease, box-shadow 400ms ease;
  position: relative;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 32px;
  }
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Stack animation (desktop hover effect) */
.testimonial-card-stack {
  transition: transform 500ms ease, opacity 500ms ease, box-shadow 400ms ease;
}

@media (max-width: 767px) {
  .testimonial-card-stack {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Expanded testimonial */
.testimonial-expanded {
  background: var(--background);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .testimonial-expanded {
    padding: 40px;
  }
}

.testimonial-text {
  font-size: 15px;
  color: #3a3a42;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-read-more {
  color: var(--purple);
  font-weight: 500;
  cursor: pointer;
  font-size: 13px;
  transition: color 300ms ease;
}

.testimonial-read-more:hover {
  color: var(--purple-dark);
}

.testimonial-collapse {
  color: var(--purple);
  font-weight: 500;
  cursor: pointer;
  font-size: 13px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  transition: color 300ms ease;
}

.testimonial-collapse:hover {
  color: var(--purple-dark);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-gray);
}

.testimonial-avatar-wrap {
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(111, 44, 145, 0.7);
}

/* Testimonial replier button */
.testimonial-replier-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--purple);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 8px;
  transition: color 300ms ease;
}

.testimonial-replier-btn:hover {
  color: var(--purple-dark);
}

/* ==========================================================================
   CTA / FOOTER
   ========================================================================== */
.cta-footer {
  position: relative;
  background: var(--dark-bg);
  padding: 80px 24px 40px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-footer {
    padding: 112px 48px 56px;
  }
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(111, 44, 145, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 80px 80px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
  opacity: 0.1;
  background: var(--purple);
  animation: about-float 20s ease-in-out infinite;
}

.cta-orb--left {
  width: 350px;
  height: 350px;
  top: 10%;
  left: -10%;
}

.cta-orb--right {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: -10%;
  animation: about-float-reverse 22s ease-in-out infinite;
}

.cta-edge-glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.cta-edge-glow--top {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.cta-edge-glow--bottom {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}

.cta-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 28px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 54px;
  }
}

.cta-desc {
  font-size: 16px;
  color: #8a8a96;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  background: var(--purple);
  border: 1px solid rgba(111, 44, 145, 0.4);
  color: white;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(111, 44, 145, 0.3);
  transition: background 300ms ease, box-shadow 300ms ease, transform 200ms ease, border-color 300ms ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background: #7c35a3;
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.btn-cta-shine {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 600ms ease;
  pointer-events: none;
}

.btn-cta:hover .btn-cta-shine {
  left: 150%;
}

.btn-cta-label {
  position: relative;
  z-index: 1;
}

/* Arrow animation */
.btn-arrow .arrow-icon {
  display: inline-block;
  transition: transform 600ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-arrow:hover .arrow-icon {
  transform: translateX(5px);
}

.arrow-icon {
  font-style: normal;
}

/* Footer links in CTA */
.footer-links {
  position: relative;
  z-index: 10;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 300ms ease;
}

.footer-link:hover {
  color: var(--purple-light);
}

.footer-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   HOME FADE-IN (Scroll-triggered reveal)
   ========================================================================== */
.home-fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
  will-change: opacity, transform;
}

.home-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ANIMATED TITLE (Character-by-character reveal)
   ========================================================================== */
.animated-title {
  /* Container for animated chars */
}

.animated-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

.animated-title.is-visible .animated-char {
  animation-name: heroCharIn;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.page-contact {
  background: var(--gray-bg);
  min-height: 100vh;
}

.contact-section {
  padding: 60px 20px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 80px 48px 100px;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 48px;
  }
}

.contact-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Email cards grid */
.contact-email-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .contact-email-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.contact-email-card {
  background: var(--background);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e2e2e8;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.contact-email-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-email-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(111, 44, 145, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-email-icon {
  width: 24px;
  height: 24px;
  color: var(--purple);
}

.contact-email-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-email-link {
  font-size: 15px;
  color: var(--purple);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  transition: opacity 300ms ease;
}

.contact-email-link:hover {
  opacity: 0.7;
}

.contact-email-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Bureaux header */
.contact-bureaux-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-bureaux-label {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.contact-bureaux-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
}

@media (min-width: 640px) {
  .contact-bureaux-title {
    font-size: 34px;
  }
}

@media (min-width: 768px) {
  .contact-bureaux-title {
    font-size: 40px;
  }
}

/* Location cards */
.contact-locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-locations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.contact-location-card {
  background: var(--background);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e2e8;
  transition: transform 400ms ease, box-shadow 400ms ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-location-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.contact-location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.contact-location-card:hover .contact-location-img {
  transform: scale(1.05);
}

.contact-location-info {
  padding: 24px 28px 28px;
}

.contact-location-city {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 22px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-purple-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.contact-location-address {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-location-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}

.contact-location-indent {
  padding-left: 0;
}

/* ==========================================================================
   CONTACT / NR PAGE FOOTER
   ========================================================================== */
.page-footer {
  background: var(--background);
  padding: 32px 20px;
  border-top: 1px solid #e2e2e8;
}

@media (min-width: 768px) {
  .page-footer {
    padding: 32px 48px;
  }
}

.page-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.page-footer-inner p {
  font-size: 12px;
  color: var(--text-gray);
}

.footer-link-dark {
  font-size: 13px;
  color: var(--text-gray);
  transition: color 300ms ease;
}

.footer-link-dark:hover {
  color: var(--purple);
}

.footer-sep-dark {
  font-size: 13px;
  color: #c4c4cc;
}

/* ==========================================================================
   NUMERIQUE RESPONSABLE PAGE
   ========================================================================== */
.page-nr {
  background: var(--gray-bg);
}

/* NR Hero */
.nr-hero {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nr-hero {
    padding: 100px 48px 80px;
  }
}

.nr-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  animation: nr-float 8s ease-in-out infinite;
}

.nr-blob--1 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  top: -10%;
  left: -5%;
}

.nr-blob--2 {
  width: 250px;
  height: 250px;
  background: var(--purple-light);
  top: 30%;
  right: -8%;
  animation-delay: -3s;
}

.nr-blob--3 {
  width: 200px;
  height: 200px;
  background: var(--purple);
  bottom: -5%;
  left: 30%;
  animation-delay: -5s;
}

.nr-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.nr-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.nr-label-img {
  width: 80px;
  height: auto;
}

@media (min-width: 768px) {
  .nr-label-img {
    width: 100px;
  }
}

.nr-label-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.05em;
}

.nr-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .nr-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .nr-title {
    font-size: 52px;
  }
}

.nr-intro {
  font-size: 16px;
  color: var(--text-gray-3);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 16px;
}

.nr-intro-secondary {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* NR Divider */
.nr-divider {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .nr-divider {
    padding: 0 48px;
  }
}

.nr-divider-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.nr-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 44, 145, 0.3), transparent);
}

.nr-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--purple);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.6;
}

/* NR Pourquoi section */
.nr-pourquoi {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nr-pourquoi {
    padding: 100px 48px;
  }
}

.nr-pourquoi-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nr-pourquoi-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
  background: var(--purple);
}

.nr-pourquoi-blob--1 {
  width: 350px;
  height: 350px;
  top: -15%;
  right: -10%;
}

.nr-pourquoi-blob--2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  left: -10%;
}

.nr-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.nr-section-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .nr-section-title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .nr-section-title {
    font-size: 44px;
  }
}

/* NR Reasons grid */
.nr-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

/* NR Reason card */
.nr-reason-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e2e2e8;
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 300ms ease;
}

.nr-reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(111, 44, 145, 0.1);
  border-color: rgba(111, 44, 145, 0.3);
}

.nr-reason-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.nr-reason-card:hover .nr-reason-accent {
  opacity: 1;
}

.nr-reason-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.nr-reason-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.5;
}

.nr-reason-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(111, 44, 145, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nr-reason-icon {
  width: 18px;
  height: 18px;
}

.nr-reason-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.nr-reason-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nr-reason-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

.nr-check-wrap {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.nr-check-wrap img {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   NR ENGAGEMENTS SECTION
   ========================================================================== */
.nr-engagements {
  position: relative;
  background: var(--dark-bg);
  color: white;
  padding: 96px 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nr-engagements {
    padding: 120px 48px;
  }
}

/* Background */
.nr-engagements-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nr-engagements-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(111, 44, 145, 0.15) 0%, transparent 60%);
}

.nr-engagements-grid-bg {
  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: 80px 80px;
}

.nr-engagements-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.nr-engagements-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Engagement cards list */
.nr-engagements-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.nr-engagement-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 400ms ease;
}

.nr-engagement-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.nr-engagement-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  opacity: 0;
  transition: opacity 400ms ease;
}

.nr-engagement-card:hover .nr-engagement-accent {
  opacity: 1;
}

.nr-engagement-inner {
  padding: 28px;
}

.nr-engagement-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.nr-engagement-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-light);
  opacity: 0.5;
}

.nr-engagement-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 20px;
  color: white;
}

.nr-engagement-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.nr-engagement-point {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.nr-point-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.nr-point-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Conclusion quote */
.nr-conclusion {
  text-align: center;
  margin-top: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nr-conclusion-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .nr-conclusion-text {
    font-size: 19px;
  }
}

.nr-conclusion-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.nr-conclusion-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   NR CHARTE (PDF) SECTION
   ========================================================================== */
.nr-charte {
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .nr-charte {
    padding: 100px 48px;
  }
}

.nr-charte-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.nr-charte-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .nr-charte-title {
    font-size: 36px;
  }
}

.nr-charte-desc {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* PDF card */
.nr-pdf-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 400ms ease, box-shadow 400ms ease;
  text-align: left;
}

.nr-pdf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nr-pdf-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(111, 44, 145, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nr-pdf-icon {
  width: 24px;
  height: 24px;
}

.nr-pdf-info {
  flex: 1;
  min-width: 0;
}

.nr-pdf-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.nr-pdf-desc {
  font-size: 12px;
  color: var(--text-gray);
}

.nr-pdf-download {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 300ms ease, transform 200ms ease;
}

.nr-pdf-card:hover .nr-pdf-download {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.nr-pdf-download-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   LEGAL PAGES (Mentions legales, Politique de confidentialite)
   ========================================================================== */
.legal-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 60px 48px;
  }
}

.legal-inner {
  max-width: 720px;
  width: 100%;
  background: white;
  border-radius: 24px;
  padding: 40px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .legal-inner {
    padding: 56px 48px;
  }
}

.legal-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.legal-logo {
  height: 36px;
  width: auto;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 32px;
}

.legal-title {
  font-family: 'Cal Sans', 'Geist', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .legal-title {
    font-size: 36px;
  }
}

.legal-intro {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.legal-content {
  margin-bottom: 32px;
}

.legal-content section {
  margin-bottom: 28px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-list {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a42;
  margin-bottom: 6px;
}

.legal-text {
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a42;
  margin-bottom: 12px;
}

.legal-link {
  color: var(--purple);
  text-decoration: underline;
  transition: color 300ms ease;
}

.legal-link:hover {
  color: var(--purple-dark);
}

.legal-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e2e2e8;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: var(--purple);
  color: white;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: background 300ms ease, transform 200ms ease;
}

.btn-back:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-char {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .logo-marquee-track {
    animation: none;
  }

  .about-reveal-item,
  .about-stat-card,
  .offer-reveal-card,
  .offer-feature-item {
    opacity: 1;
    transform: none;
    transition: border-color 500ms ease, background-color 500ms ease;
  }

  .home-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nr-blob {
    animation: none;
  }

  .cta-orb {
    animation: none;
  }

  .animated-char {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .testimonial-card-stack {
    transform: none !important;
    opacity: 1 !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .site-header,
  .mobile-menu-btn,
  .cta-footer,
  .ribbon-section,
  .mobile-menu-overlay {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero-section {
    min-height: auto;
    box-shadow: none;
    border-radius: 0;
  }

  .about-section {
    background: white;
    color: black;
  }
}
