/* ============================================
   GENYCOM — Feuille de style principale v2
   ============================================ */

:root {
  --primary: #0B57D0;
  --primary-dark: #0842A0;
  --primary-light: #D3E4FD;
  --accent: #FF6B35;
  --success: #1E8A52;
  --warning: #F59E0B;
  --danger: #DC2626;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --dark: #0A0F1E;
  --dark-2: #111827;
  --dark-3: #1F2937;
  --mid: #374151;
  --muted: #6B7280;
  --light: #F3F4F6;
  --lighter: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --border-dark: #D1D5DB;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11,87,208,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(11,87,208,.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--mid);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transform: translateY(-2px);
  color: white;
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(11,87,208,.15);
  color: #93BBFF;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.trust-label p {
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-logo .trust-label { color: var(--muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(11,87,208,.3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark-2);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 48px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, #F0F6FF 0%, #FFFFFF 55%, #FFF7F3 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,87,208,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,87,208,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: rgba(11,87,208,.1); top: -100px; left: -100px; }
.glow-2 { width: 400px; height: 400px; background: rgba(255,107,53,.07); bottom: 0; right: 0; }

.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(11,87,208,.15);
}
.hero-badge i { font-size: .7rem; color: var(--accent); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-plus { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider { width: 1px; height: 40px; background: var(--border-dark); }

/* ---- Hero Visual (real screenshot) ---- */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; }
.hero-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.06);
  object-fit: cover;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-2);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.hero-img-badge i { color: var(--success); }
.badge-top { top: -14px; left: 20px; }
.badge-bottom { bottom: -14px; right: 20px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .7; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--dark-2); padding: 24px 0; }
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: .58rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.trust-items { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: .8rem; }

/* ============================================
   FEATURES
   ============================================ */
.features { padding: 100px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.icon-blue { background: rgba(11,87,208,.1); color: var(--primary); }
.icon-green { background: rgba(30,138,82,.1); color: var(--success); }
.icon-orange { background: rgba(255,107,53,.1); color: var(--accent); }
.icon-purple { background: rgba(124,58,237,.1); color: #7C3AED; }
.icon-teal { background: rgba(14,165,233,.1); color: #0EA5E9; }
.icon-red { background: rgba(220,38,38,.1); color: var(--danger); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--mid);
  padding: 3px 0;
}
.feature-list li i { color: var(--success); font-size: .75rem; }
.feature-img-wrap {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-img-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform var(--transition);
}
.feature-card:hover .feature-img-wrap img { transform: scale(1.03); }

/* ============================================
   MODULES TIMELINE
   ============================================ */
.modules { padding: 100px 0; background: var(--lighter); }
.modules-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.module-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 150px;
  flex: 1;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 27px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}
.module-step:last-child .step-connector { display: none; }
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.module-step:hover .step-icon { background: var(--primary); color: white; transform: scale(1.1); }
.step-content { text-align: center; padding: 0 10px; }
.step-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark);
  margin-bottom: 5px;
}
.step-content p { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ============================================
   DASHBOARD SECTION
   ============================================ */
.dashboard-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.dashboard-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,87,208,.2), transparent 70%);
  pointer-events: none;
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.dashboard-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.dashboard-text > p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.dashboard-list { display: flex; flex-direction: column; gap: 18px; }
.dashboard-list li { display: flex; gap: 16px; align-items: flex-start; }
.db-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(11,87,208,.2);
  display: flex; align-items: center; justify-content: center;
  color: #93BBFF;
  font-size: .9rem;
  flex-shrink: 0;
}
.dashboard-list li div { display: flex; flex-direction: column; gap: 3px; }
.dashboard-list li strong { color: var(--white); font-size: .93rem; font-weight: 600; }
.dashboard-list li span { color: rgba(255,255,255,.5); font-size: .85rem; }

/* ---- Dashboard screenshot ---- */
.dashboard-preview { position: relative; }
.db-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.07);
  object-fit: cover;
}
.db-float {
  position: absolute;
  background: rgba(30, 41, 59, .95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.db-float i { font-size: 1.2rem; }
.db-float div { display: flex; flex-direction: column; gap: 2px; }
.db-float strong { color: white; font-family: var(--font-display); font-size: .95rem; }
.db-float small { color: rgba(255,255,255,.5); font-size: .75rem; }
.db-float-1 { top: -16px; left: -16px; }
.db-float-1 i { color: #34D399; }
.db-float-2 { bottom: -16px; right: -16px; }
.db-float-2 i { color: #F87171; }

/* ============================================
   AVANTAGES
   ============================================ */
.advantages { padding: 100px 0; background: var(--white); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.adv-card {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.adv-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: white;
}
.adv-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  user-select: none;
  transition: color var(--transition);
}
.adv-card:hover .adv-number { color: var(--primary-light); }
.adv-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 16px; display: block; }
.adv-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.adv-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 0; background: var(--lighter); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: #FBBF24; margin-bottom: 16px; font-size: .9rem; display: flex; gap: 3px; }
.testi-card p { font-size: .93rem; color: var(--mid); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
}
.testi-author strong { display: block; font-size: .92rem; color: var(--dark); }
.testi-author span { font-size: .8rem; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 100px 0; background: var(--white); }
.faq .container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .97rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); transition: transform var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--white); }
.faq-item p { padding: 0 24px 20px; font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 100px 0; background: var(--lighter); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: start; }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-text > p { color: var(--muted); line-height: 1.75; margin-bottom: 32px; font-size: .97rem; }
.contact-infos { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--mid);
}
.ci-item i { color: var(--primary); width: 18px; text-align: center; }
.ci-item.ci-whatsapp i { color: var(--whatsapp); }
.ci-item a:hover { color: var(--primary); }
.ci-item.ci-whatsapp a:hover { color: var(--whatsapp-dark); }

/* WhatsApp CTA block */
.wa-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
  transition: all var(--transition);
  margin-top: 8px;
}
.wa-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.4);
  color: white;
}
.wa-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.wa-block div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.wa-block strong { font-size: .97rem; font-weight: 700; }
.wa-block span { font-size: .82rem; opacity: .85; }
.wa-arrow { font-size: .85rem; opacity: .7; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark-2); font-family: var(--font-display); }
.form-group label span { color: var(--danger); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--dark-2);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,87,208,.1);
}
.form-group input.error, .form-group textarea.error { border-color: var(--danger); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-error { font-size: .78rem; color: var(--danger); min-height: 14px; }
.form-notice {
  text-align: center;
  font-size: .87rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  min-height: 20px;
  font-weight: 500;
}
.form-notice.success { background: rgba(30,138,82,.1); color: var(--success); }
.form-notice.error-msg { background: rgba(220,38,38,.1); color: var(--danger); }
.form-footer-note {
  text-align: center;
  font-size: .83rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-footer-note a { color: var(--whatsapp); font-weight: 600; }
.form-footer-note a:hover { color: var(--whatsapp-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-social a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-social a:nth-child(3):hover { background: var(--whatsapp); border-color: var(--whatsapp); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: .83rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .87rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-contact p {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.footer-contact i { color: var(--primary); }
.footer-contact a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
  color: white;
  animation: none;
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
@keyframes waPulse {
  0%  { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.35); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark-2);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-2);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
  font-size: .9rem;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; gap: 40px; }
  .hero-scroll-hint { display: none; }
  .hero-content { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .modules-timeline { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .hero-stats { flex-direction: row; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .db-float { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 16px 60px; }
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .stat-num { font-size: 1.6rem; }
  .badge-top, .badge-bottom { display: none; }
}
