﻿/* ============================================
   NEZO.finance - Styles
   ============================================ */

/* Variables CSS */
:root {
  --bg-primary: #050607;
  --bg-secondary: #0f1112;
  --bg-card: #1a1c1e;
  --text-primary: #ffffff;
  --text-secondary: #ffffff;
  --text-muted: #e0e0e0;
  --accent-cyan: #00d4ff;
  --accent-cyan-dark: #00a8cc;
  --accent-red: #ff4b5c;
  --accent-green: #2ecc71;
  --accent-yellow: #f39c12;
  --border-color: #2d2f31;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 6, 7, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: nowrap;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo span {
  color: var(--accent-cyan);
}

a.logo {
  text-decoration: none;
}

a.logo:hover {
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  flex-wrap: wrap;
}

/* Sur mobile, la nav normale est cachée par défaut */
@media (max-width: 768px) {
  .main-nav:not(.open) {
    display: none;
  }
}


.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--accent-cyan);
}

.header-cta {
  white-space: nowrap;
}

/* Masquer le bouton CTA sur mobile */
@media (max-width: 768px) {
  .header-cta {
    display: none !important;
  }
}

/* Menu burger - Desktop: caché */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-cyan-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}

.btn-outline:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-secondary);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 1.5rem auto 3rem;
  text-align: center;
}

.section-intro.strong {
  font-weight: 600;
  color: var(--text-primary);
}

.section-intro.small {
  font-size: 0.95rem;
  margin-top: 1rem;
}

.section-intro.secure {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.accent {
  color: var(--accent-cyan);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: inline-block;
}

.badge-expertise {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
}

.badge-red {
  background: rgba(255, 75, 92, 0.1);
  color: var(--accent-red);
}

.badge-red .dot {
  background: var(--accent-red);
}

/* Hero Section */
.hero {
  padding-top: clamp(7rem, 14vw, 9rem);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    align-items: center;
  }
  
  .hero-intro-text,
  .hero-intro-secondary {
    text-align: center;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text .badge {
  margin-top: 0;
  margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.hero-text h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: left;
}

@media (max-width: 968px) {
  .hero-text h1 {
    text-align: center;
  }
}

.hero-intro-text {
  text-align: left;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-intro-secondary {
  text-align: left;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 968px) {
  .hero-stats {
    justify-content: center;
  }
}

.hero-stats > div {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.stat-number.stat-warning {
  color: var(--accent-yellow);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
}

.hero-image-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-placeholder:hover img {
  transform: scale(1.02);
}

/* Floating Currencies */
.floating-currencies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-currency {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Cards */
.cards {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.card {
  background: var(--bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}

.card h3 {
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.card-highlight {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.card-conversion {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* Highlights */
.highlight-cyan {
  color: var(--accent-cyan);
}

.highlight-cyan-bold {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Metrics */
.metric {
  text-align: center;
}

.metric-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin: 1rem 0;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.metric-warning {
  border-color: var(--accent-red);
  background: rgba(255, 75, 92, 0.05);
}

.metric-warning .metric-number {
  color: var(--accent-red);
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reason {
  padding: 1.5rem;
}

.reason h3 {
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.reason p {
  color: var(--text-secondary);
}

.reason-conversion {
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
}

/* Icons Grid */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.icon-item {
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

.icon-item h3 {
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.icon-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Highlight Box */
.highlight-box {
  background: var(--bg-card);
  border: 2px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-extra {
  margin-top: 1.5rem;
}

/* 404 Page Specific */
.error-404-title {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.highlight-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Testimonials */
.testimonial {
  text-align: center;
}

.stars {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: normal;
  margin-top: 1rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card:hover {
    transform: none;
  }
}

.pricing-featured {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05);
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin: 1rem 0;
}

.pricing-once {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: normal;
}

.pricing-badge {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 1rem 0;
  display: inline-block;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-card li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

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

/* Waitlist Form */
.waitlist-container {
  max-width: 600px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.waitlist-form input,
.waitlist-form select {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: var(--transition);
  width: 100%;
  font-family: inherit;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.waitlist-form button[type="submit"] {
  margin-top: 0.5rem;
}

.waitlist-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-credential {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Tablet Responsive */
@media (max-width: 968px) {
  .pricing-featured {
    transform: scale(1);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .waitlist-container {
    max-width: 100%;
  }
  
  .cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .reasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Menu burger visible sur mobile */
  .nav-toggle {
    display: flex !important;
    z-index: 1002;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Navigation normale cachée sur mobile */
  .main-nav {
    display: none !important;
  }

  /* Navigation mobile - menu plein écran quand ouvert */
  .main-nav.open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 100px 1.5rem 2rem;
    z-index: 1001;
    overflow-y: auto;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  
  /* Header layout mobile */
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .logo {
    flex: 1;
    min-width: 0;
  }
  
  /* Liens du menu mobile */
  .main-nav.open a {
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-card);
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    text-align: center;
    text-decoration: none;
  }
  
  .main-nav.open a:hover,
  .main-nav.open a:focus {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
  }
  
  .main-nav.open a:last-child {
    margin-bottom: 0;
  }

  .header-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  
  .header-inner {
    padding: 0.5rem 0;
  }
  
  .logo {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .hero {
    padding-top: clamp(6rem, 12vw, 8rem);
    min-height: auto;
  }
  
  .hero-text {
    gap: 1.25rem;
  }
  
  .hero-text .badge {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-stats {
    justify-content: space-around;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  .stat-label {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
  }

  .section {
    padding: clamp(2.5rem, 6vw, 3rem) 0;
  }
  
  .section-intro {
    margin-bottom: 2rem;
  }

  .mobile-hide-text {
    display: none;
  }

  .mobile-hide-metrics {
    grid-template-columns: 1fr;
  }

  .floating-currencies {
    display: none;
  }
  
  .hero-visual {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cards-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .waitlist-form {
    gap: 1.25rem;
  }
  
  .waitlist-form input,
  .waitlist-form select {
    font-size: 16px; /* Évite le zoom sur iOS */
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
  }
  
  .metric-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .highlight-box {
    padding: 1.5rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .site-header {
    padding: 0.5rem 0;
  }
  
  .header-inner {
    padding: 0.5rem 0;
    gap: 0.75rem;
  }
  
  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2.5px;
  }
  
  .main-nav {
    padding: 70px 1.5rem 2rem;
  }
  
  .main-nav a {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .hero {
    padding-top: clamp(5.5rem, 14vw, 7.5rem);
  }
  
  .hero-text .badge {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.65rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .badge-expertise {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .badge-expertise .dot {
    display: none;
  }
  
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }
  
  h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .section-intro {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-intro-text {
    font-size: clamp(1rem, 4vw, 1.1rem);
  }
  
  .hero-intro-secondary {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }

  .cards-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .icons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    display: block;
  }
  
  .btn-large {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
  }
  
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
  
  .pricing-price {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .waitlist-form {
    gap: 1.25rem;
  }
  
  .waitlist-form input,
  .waitlist-form select {
    padding: 1rem;
    font-size: 16px; /* Évite le zoom sur iOS */
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stats > div {
    width: 100%;
  }
  
  .card {
    padding: 1.25rem;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .testimonial p {
    font-size: 1rem;
  }
  
  .main-nav {
    padding: 4rem 1.5rem 2rem;
  }
  
  .main-nav a {
    font-size: 1rem;
    padding: 0.875rem 0;
  }
}

/* ============================================
   APP SHOWCASE / MOCKUPS
   ============================================ */

.app-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-mockup {
  position: relative;
}

.mockup-window {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.mockup-header-bar {
  background: var(--bg-primary);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28ca42; }

.mockup-body {
  padding: 1.5rem;
  min-height: 280px;
}

/* Stats Grid */
.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mockup-stat-card {
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.mockup-stat-card .stat-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mockup-stat-card .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.mockup-stat-card .stat-value.cyan { color: var(--accent-cyan); }
.mockup-stat-card .stat-value.green { color: #2ecc71; }

.mockup-stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Patrimoine Grid */
.mockup-patrimoine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mockup-patrimoine-card {
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.patrimoine-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.patrimoine-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.patrimoine-value.cyan { color: var(--accent-cyan); }
.patrimoine-value.green { color: #2ecc71; }

.patrimoine-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.patrimoine-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.patrimoine-row .red {
  color: #e74c3c;
}

/* Timeline */
.mockup-timeline {
  text-align: center;
}

.timeline-current {
  margin-bottom: 1.5rem;
}

.timeline-current .timeline-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.timeline-current .timeline-value {
  font-size: 2rem;
  font-weight: 800;
}

.timeline-current .timeline-value.cyan {
  color: var(--accent-cyan);
}

.timeline-goals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-goals::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--border-color);
}

.timeline-goal {
  text-align: center;
  position: relative;
  z-index: 1;
}

.goal-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.timeline-goal span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.timeline-status {
  padding: 0.75rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-status.green {
  color: #2ecc71;
}

/* Showcase Text */
.showcase-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.showcase-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Responsive Showcase */
@media (max-width: 968px) {
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase-item.reverse {
    direction: ltr;
  }
  
  .mockup-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mockup-patrimoine-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mockup-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-goals {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .timeline-goals::before {
    display: none;
  }
}

/* ============================================
   WAITLIST FORM - Formulaire d'inscription
   ============================================ */

.waitlist-form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  transition: var(--transition);
  width: 100%;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0b3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 0.5rem;
}

.waitlist-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  transition: var(--transition);
}

.waitlist-btn:disabled {
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Responsive form */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .waitlist-form-container {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }
}

