/* ============================================
   AI LAV — Stylesheet
   Design system extracted via CSS Peeper
   ============================================ */

/* --- Geist Font from Google Fonts CDN --- */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0A0E1A;
  color: #E6EAF2;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-family: 'Geist', sans-serif;
  font-size: 78px;
  line-height: 76.44px;
  letter-spacing: -2.73px;
  font-weight: 500;
  color: #E6EAF2;
}

h2 {
  font-family: 'Geist', sans-serif;
  font-size: 56px;
  line-height: 57.12px;
  letter-spacing: -1.68px;
  font-weight: 500;
  color: #E6EAF2;
}

h3 {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.33px;
  color: #E6EAF2;
}

p {
  color: #B4BCCC;
  line-height: 1.55;
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.54px;
  color: #7B8499;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3B82F6;
  display: inline-block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1.5px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  h3 {
    font-size: 20px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: #E6EAF2;
  letter-spacing: -0.2px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  color: #B4BCCC;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #E6EAF2;
}

.nav-whatsapp {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.nav-whatsapp:hover {
  transform: scale(1.08);
}

.btn-primary {
  background-color: #3B82F6;
  color: #0A0E1A;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: -0.1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.45);
}

.btn-primary-large {
  background-color: #3B82F6;
  color: #0A0E1A;
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 28px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  letter-spacing: -0.1px;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.45);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid rgba(230, 234, 242, 0.15);
  color: #E6EAF2;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 10px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(230, 234, 242, 0.4);
  background-color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-primary { padding: 12px 18px; font-size: 14px; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 24px 0;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #B4BCCC;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 27.9px;
  color: #B4BCCC;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 520px;
}

.stat-number {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.52px;
  color: #E6EAF2;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: #7B8499;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-footer span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.32px;
  color: #B4BCCC;
  font-weight: 500;
  text-transform: uppercase;
}

/* --- Hero Call Card --- */
.call-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
}

.call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.call-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.88px;
  color: #B4BCCC;
  text-transform: uppercase;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3B82F6;
  box-shadow: 0 0 12px #3B82F6;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.call-timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #B4BCCC;
}

.caller-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.caller-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.caller-details {
  flex: 1;
}

.caller-name {
  font-size: 15px;
  font-weight: 600;
  color: #E6EAF2;
  margin-bottom: 2px;
}

.caller-meta {
  font-size: 12.5px;
  color: #7B8499;
}

.caller-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.8px;
  background-color: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.dialog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.msg {
  max-width: 88%;
  font-size: 14px;
  line-height: 21px;
  padding: 12px 16px;
  border-radius: 12px;
}

.msg-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.88px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.msg-ai {
  background-color: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: #E6EAF2;
  align-self: flex-start;
}

.msg-ai .msg-tag {
  color: #3B82F6;
}

.msg-client {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #E6EAF2;
  align-self: flex-end;
}

.msg-client .msg-tag {
  color: #7B8499;
  text-align: right;
}

.call-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tag {
  font-size: 12px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #B4BCCC;
}

.tag-accent {
  background-color: #3B82F6;
  color: #0A0E1A;
  font-weight: 600;
  border: 1px solid #3B82F6;
}

.synthesis {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background-color: #0F1424;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.synthesis-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.88px;
  color: #5B6478;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.synthesis-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}

.synthesis-row span:first-child {
  color: #B4BCCC;
}

.synthesis-row span:last-child {
  color: #E6EAF2;
  font-weight: 500;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .synthesis {
    position: static;
    margin-top: 20px;
    min-width: auto;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section {
  padding: 72px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
}

.section-header {
  margin-bottom: 60px;
  max-width: 760px;
}

.section-header .label {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  line-height: 27.9px;
  margin-top: 16px;
  color: #B4BCCC;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.problem-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.problem-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
}

.problem-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #5B6478;
  letter-spacing: 0.88px;
  font-weight: 600;
}

.problem-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.33px;
  margin-bottom: 8px;
}

.problem-subtitle {
  font-size: 14px;
  color: #7B8499;
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 14px;
  line-height: 21.7px;
  color: #B4BCCC;
}

@media (max-width: 968px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
}

.feature-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.88px;
  color: #7B8499;
  font-weight: 600;
  text-transform: uppercase;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.33px;
  margin-bottom: 12px;
}

.feature-card > p {
  font-size: 14px;
  line-height: 21.7px;
  color: #B4BCCC;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #B4BCCC;
}

.feature-list li::before {
  content: '✓';
  color: #3B82F6;
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   AUDIT FORM SECTION
   ============================================ */
.audit-wrap {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.audit-left .label {
  margin-bottom: 20px;
}

.audit-left h2 {
  font-size: 40px;
  line-height: 43.2px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.audit-left > p {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 24.8px;
}

.audit-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #E6EAF2;
}

.audit-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3B82F6;
  flex-shrink: 0;
}

.audit-form {
  background-color: #F1F5F9;
  border-radius: 16px;
  padding: 32px;
  color: #0A0E1A;
}

.audit-form h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.33px;
  color: #0A0E1A;
  margin-bottom: 4px;
}

.audit-form .form-subtitle {
  font-size: 13px;
  color: #5B6478;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.88px;
  color: #5B6478;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  background-color: #fff;
  color: #0A0E1A;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-submit {
  width: 100%;
  background-color: #3B82F6;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 10px;
  margin-top: 6px;
  transition: background-color 0.2s, transform 0.2s;
}

.form-submit:hover {
  background-color: #2563EB;
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 11.5px;
  color: #5B6478;
  margin-top: 12px;
  line-height: 17.25px;
}

@media (max-width: 968px) {
  .audit-wrap { padding: 32px 24px; }
  .audit-grid { grid-template-columns: 1fr; gap: 32px; }
  .audit-left h2 { font-size: 32px; line-height: 1.1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   DEVIS SECTION
   ============================================ */
.devis-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.devis-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.devis-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #E6EAF2;
  line-height: 1.5;
}

.included-list li::before {
  content: '✓';
  color: #3B82F6;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.options-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
}

.options-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #B4BCCC;
}

.options-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.options-list li {
  font-size: 14px;
  color: #B4BCCC;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.options-list li::before {
  content: '•';
  color: #3B82F6;
  position: absolute;
  left: 0;
}

.option-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #5B6478;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
}

.devis-cta {
  text-align: center;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.devis-note {
  font-size: 13px;
  color: #7B8499;
  margin-top: 16px;
}

@media (max-width: 968px) {
  .devis-wrap { grid-template-columns: 1fr; gap: 24px; }
  .devis-card, .options-card { padding: 28px 24px; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-left h2 {
  margin-bottom: 24px;
}

.faq-left p {
  font-size: 16px;
  color: #B4BCCC;
}

.faq-left a {
  color: #3B82F6;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  color: #E6EAF2;
  letter-spacing: -0.17px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #3B82F6;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s, background-color 0.2s;
}

.faq-item.active .faq-toggle {
  background-color: rgba(59, 130, 246, 0.1);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 21.7px;
  color: #B4BCCC;
}

@media (max-width: 968px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0));
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}

.final-cta h2 {
  font-size: 52px;
  line-height: 54.08px;
  letter-spacing: -1.56px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: #B4BCCC;
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .final-cta { padding: 56px 24px; }
  .final-cta h2 { font-size: 32px; line-height: 1.1; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-left {
  max-width: 360px;
}

.footer-left .logo {
  margin-bottom: 16px;
}

.footer-left p {
  font-size: 14px;
  color: #B4BCCC;
  line-height: 21px;
}

.footer-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #B4BCCC;
  transition: color 0.2s;
}

.footer-contact:hover {
  color: #E6EAF2;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: #7B8499;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #E6EAF2;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7B8499;
  letter-spacing: 1.2px;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: 80px 0 40px;
}

.legal-hero .label {
  margin-bottom: 16px;
}

.legal-hero h1 {
  font-size: 56px;
  line-height: 57.12px;
  letter-spacing: -1.68px;
  margin-bottom: 12px;
}

.legal-hero .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #7B8499;
  letter-spacing: 1.04px;
}

.legal-content {
  max-width: 800px;
  padding: 40px 0 100px;
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #E6EAF2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 18px;
  letter-spacing: -0.18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #E6EAF2;
}

.legal-content p {
  font-size: 16px;
  line-height: 24.8px;
  color: #B4BCCC;
  margin-bottom: 16px;
}

.legal-content strong {
  color: #E6EAF2;
  font-weight: 600;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-content ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 24.8px;
  color: #B4BCCC;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: '•';
  color: #3B82F6;
  font-weight: 700;
  position: absolute;
  left: 6px;
}

.legal-content a {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #60A5FA;
}

@media (max-width: 768px) {
  .legal-hero h1 { font-size: 36px; line-height: 1.1; }
  .legal-content h2 { font-size: 22px; }
}

/* ============================================
   MERCI PAGE
   ============================================ */
.merci-hero {
  padding: 100px 0;
  text-align: center;
}

.merci-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(34, 197, 94, 0.12);
  border: 2px solid #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: #22C55E;
}

.merci-hero h1 {
  font-size: 56px;
  line-height: 57.12px;
  letter-spacing: -1.68px;
  margin-bottom: 16px;
}

.merci-hero > p {
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #B4BCCC;
  line-height: 27.9px;
}

.download-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 40px;
}

.download-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.download-card > p {
  font-size: 14px;
  color: #B4BCCC;
  margin-bottom: 24px;
}

.next-step {
  max-width: 600px;
  margin: 48px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.next-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.next-step p {
  font-size: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .merci-hero { padding: 60px 0; }
  .merci-hero h1 { font-size: 36px; line-height: 1.1; }
  .download-card { padding: 28px 24px; }
}

.form-consent {
  margin: 16px 0 8px;
}

.consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Geist', sans-serif !important;
  font-size: 12.5px !important;
  letter-spacing: 0 !important;
  color: #5B6478 !important;
  text-transform: none !important;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400 !important;
}

.consent-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px;
  margin-top: 2px;
  accent-color: #3B82F6;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 !important;
  border: 1px solid #CBD5E1 !important;
}

.consent-label span {
  flex: 1;
}

.consent-label a {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-label a:hover {
  color: #2563EB;
}

/* ============================================
   FADE IN ANIMATION ON SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background-color: #0F1424;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
  animation: cookieSlideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text strong {
  display: block;
  font-size: 14px;
  color: #E6EAF2;
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #B4BCCC;
  margin: 0;
}

.cookie-text a {
  color: #3B82F6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn {
  background-color: #3B82F6;
  color: #0A0E1A;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Geist', sans-serif;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ============================================
   DEMO AUDIO SECTION
   ============================================ */
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.demo-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.demo-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-2px); }
.demo-card .label { margin-bottom: 16px; }
.demo-card h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.3px; margin-bottom: 10px; }
.demo-card > p { font-size: 14px; line-height: 21px; color: #B4BCCC; margin-bottom: 20px; flex: 1; }
.audio-placeholder {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #7B8499;
  font-style: italic;
}
.demo-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.5px;
  color: #5B6478;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
}
.demo-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: #5B6478;
  font-style: italic;
}
@media (max-width: 968px) { .demo-grid { grid-template-columns: 1fr; } }

/* ============================================
   5 SITUATIONS SECTION
   ============================================ */
.situation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.situation-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.situation-card:hover { border-color: rgba(59,130,246,0.2); }
.situation-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: #3B82F6; letter-spacing: 0.88px;
  font-weight: 600; margin-bottom: 16px; display: block;
}
.situation-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 16px; letter-spacing: -0.3px; }
.situation-block { margin-bottom: 14px; }
.situation-block:last-child { margin-bottom: 0; }
.situation-block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.88px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 6px; display: block;
}
.situation-block.problem .situation-block-label { color: #7B8499; }
.situation-block.solution .situation-block-label { color: #3B82F6; }
.situation-block p { font-size: 14px; line-height: 21px; color: #B4BCCC; }
@media (max-width: 968px) { .situation-grid { grid-template-columns: 1fr; } }

/* ============================================
   CALCUL SECTION
   ============================================ */
.calcul-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
}
.calcul-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.calcul-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.88px; text-transform: uppercase;
  color: #7B8499; font-weight: 600; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.calcul-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 14px;
}
.calcul-row span:first-child { color: #B4BCCC; }
.calcul-row span:last-child { color: #E6EAF2; font-weight: 500; font-family: 'JetBrains Mono', monospace; }
.calcul-row.highlight span:last-child { color: #3B82F6; font-size: 18px; font-weight: 600; }
.calcul-banner {
  background-color: #3B82F6;
  color: #0A0E1A;
  border-radius: 14px;
  padding: 24px 32px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.calcul-note { text-align: center; margin-top: 16px; font-size: 12px; color: #5B6478; font-style: italic; }
@media (max-width: 768px) { .calcul-grid { grid-template-columns: 1fr; gap: 24px; } .calcul-wrap { padding: 28px 24px; } }

/* ============================================
   COMPARATIF TABLE SECTION
   ============================================ */
.comparatif-table {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.comparatif-table th {
  text-align: left;
  padding: 18px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.88px; text-transform: uppercase;
  color: #7B8499; font-weight: 600;
  background-color: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comparatif-table th:last-child { color: #3B82F6; }
.comparatif-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: #B4BCCC;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparatif-table td:first-child { color: #E6EAF2; font-weight: 500; }
.comparatif-table td:last-child { color: #E6EAF2; }
.comparatif-table tr:last-child td { border-bottom: none; }
.comparatif-note { margin-top: 24px; font-size: 14px; line-height: 21px; color: #B4BCCC; max-width: 760px; }
@media (max-width: 768px) {
  .comparatif-table, .comparatif-table thead, .comparatif-table tbody, .comparatif-table th, .comparatif-table td, .comparatif-table tr { display: block; }
  .comparatif-table thead { display: none; }
  .comparatif-table tr { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .comparatif-table td { padding: 4px 16px; border: none; }
  .comparatif-table td:first-child { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7B8499; text-transform: uppercase; margin-bottom: 4px; }
}

/* ============================================
   AGENCES SECTION
   ============================================ */
.agences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.agence-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s;
}
.agence-card:hover { border-color: rgba(59,130,246,0.2); }
.agence-card h3 { font-size: 17px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.2px; }
.agence-card p { font-size: 13.5px; line-height: 20px; color: #B4BCCC; }
@media (max-width: 968px) { .agences-grid { grid-template-columns: 1fr; } }

/* ============================================
   GARANTIE SECTION
   ============================================ */
.garantie-wrap {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(99,102,241,0.05));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 20px;
  padding: 48px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.garantie-wrap h2 { margin-bottom: 24px; }
.garantie-text { font-size: 17px; line-height: 27px; color: #E6EAF2; margin-bottom: 24px; }
.garantie-mention { font-size: 13px; color: #7B8499; margin-bottom: 32px; line-height: 1.5; }
.garantie-mention a { color: #3B82F6; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 768px) { .garantie-wrap { padding: 32px 24px; } }

/* ============================================
   FONDATEUR SECTION
   ============================================ */
.fondateur-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.fondateur-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.fondateur-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.fondateur-text h2 {
  margin-bottom: 24px;
}
.fondateur-text p {
  font-size: 16px;
  line-height: 26px;
  color: #B4BCCC;
  margin-bottom: 18px;
}
.fondateur-text p:last-of-type {
  margin-bottom: 24px;
}
.fondateur-signature {
  font-size: 14px;
  color: #7B8499;
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: block;
}
@media (max-width: 768px) {
  .fondateur-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .fondateur-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .fondateur-text h2 {
    text-align: center;
  }
}

/* ============================================
   DEMO AUDIO ACTIVATION
   ============================================ */
.audio-wrap audio {
  width: 100%;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 8px;
  filter: invert(0.85);
}
.audio-fallback {
  font-size: 12px;
  color: #5B6478;
  font-style: italic;
  text-align: center;
  margin: 0 0 16px 0;
}

/* ============================================
   CALCULATOR PAGE
   ============================================ */
/* Calculator Hero */
.calc-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.calc-hero .label {
  margin-bottom: 20px;
}
.calc-hero h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.68px;
  margin-bottom: 20px;
}
.calc-hero p {
  font-size: 18px;
  line-height: 1.55;
  color: #B4BCCC;
  max-width: 680px;
  margin: 0 auto;
}

/* Calculator main */
.calc-main { padding: 40px 0 80px; }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.calc-inputs, .calc-results {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
}
.calc-inputs h2, .calc-results h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.input-group { margin-bottom: 28px; }
.input-group:last-child { margin-bottom: 0; }
.input-group label {
  display: block;
  font-size: 14px;
  color: #E6EAF2;
  font-weight: 500;
  margin-bottom: 10px;
}
.input-group .input-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: #3B82F6;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.input-group input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 8px;
}
.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #3B82F6;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #0A0E1A;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.input-group input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #3B82F6;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #0A0E1A;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.input-helper {
  font-size: 12px;
  color: #7B8499;
  line-height: 1.5;
}

/* Results */
.result-main {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(99,102,241,0.06));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  margin-bottom: 24px;
}
.result-main-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  color: #3B82F6;
  font-weight: 600;
  letter-spacing: -2px;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}
.result-main-label {
  font-size: 14px;
  color: #B4BCCC;
}
.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.result-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.result-breakdown-row:last-child { border-bottom: none; }
.result-breakdown-row span:first-child { color: #B4BCCC; }
.result-breakdown-row span:last-child {
  color: #E6EAF2;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.result-note {
  font-size: 11.5px;
  color: #5B6478;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* CTA Block */
.calc-cta-block {
  text-align: center;
  padding: 80px 0;
  max-width: 880px;
  margin: 0 auto;
}
.calc-cta-block h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.calc-cta-block > p {
  font-size: 17px;
  line-height: 1.6;
  color: #B4BCCC;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.cta-benefit {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.cta-benefit-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.cta-benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: #E6EAF2;
  margin-bottom: 6px;
}
.cta-benefit-desc {
  font-size: 12.5px;
  color: #B4BCCC;
  line-height: 1.45;
}

/* Meeting form */
.meeting-form-section {
  padding: 40px 0 100px;
}
.meeting-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #F1F5F9;
  border-radius: 20px;
  padding: 40px;
  color: #0A0E1A;
}
.meeting-form-wrap h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #0A0E1A;
  margin-bottom: 8px;
}
.meeting-form-wrap > p {
  font-size: 15px;
  color: #5B6478;
  margin-bottom: 28px;
}
.meeting-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.meeting-form .form-group {
  margin-bottom: 14px;
}
.meeting-form label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.88px;
  color: #5B6478;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.meeting-form input,
.meeting-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  background-color: #fff;
  color: #0A0E1A;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.meeting-form textarea { resize: vertical; min-height: 80px; }
.meeting-form input:focus, .meeting-form textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.input-helper-light {
  font-size: 11px;
  color: #5B6478;
  margin-top: 4px;
  font-style: italic;
}
.meeting-form .form-consent {
  margin: 18px 0 12px;
}
.meeting-form .consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Geist', sans-serif !important;
  font-size: 12.5px !important;
  letter-spacing: 0 !important;
  color: #5B6478 !important;
  text-transform: none !important;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400 !important;
}
.meeting-form .consent-label input[type="checkbox"] {
  width: 16px !important;
  height: 16px;
  margin-top: 2px;
  accent-color: #3B82F6;
  cursor: pointer;
  flex-shrink: 0;
}
.meeting-form .consent-label a {
  color: #3B82F6;
  text-decoration: underline;
}
.meeting-form-submit {
  width: 100%;
  background-color: #3B82F6;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 22px;
  border-radius: 10px;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  font-family: 'Geist', sans-serif;
}
.meeting-form-submit:hover {
  background-color: #2563EB;
  transform: translateY(-1px);
}
.meeting-disclaimer {
  text-align: center;
  font-size: 11.5px;
  color: #5B6478;
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .cta-benefits-grid { grid-template-columns: 1fr; }
  .calc-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .calc-cta-block h2 { font-size: 28px; }
  .result-main-number { font-size: 42px; }
  .meeting-form-wrap { padding: 28px 24px; }
  .meeting-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   MERCI MEETING PAGE
   ============================================ */
.process-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  counter-reset: process;
}
.process-list li {
  position: relative;
  padding: 16px 16px 16px 64px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid #3B82F6;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #B4BCCC;
  counter-increment: process;
  text-align: left;
}
.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 16px;
  font-family: 'JetBrains Mono', monospace;
  color: #3B82F6;
  font-weight: 600;
  font-size: 14px;
}