/* ── LEGAL & POLICY PAGES ── */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: #111827; background: #fff; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
      border-bottom: 1px solid #F3F4F6;
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo img { height: 44px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 8px; }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: #374151;
      padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
    }
    .nav-links a:hover { color: #E31E24; background: rgba(227,30,36,0.06); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }
    .btn-login {
      font-size: 14px; font-weight: 500; color: #374151;
      padding: 8px 16px; border-radius: 8px; border: 1px solid #E5E7EB;
      background: white; cursor: pointer; transition: all 0.2s;
    }
    .btn-login:hover { border-color: #E31E24; color: #E31E24; }
    .btn-demo {
      font-size: 14px; font-weight: 600; color: white;
      padding: 10px 20px; border-radius: 8px;
      background: #E31E24; border: none; cursor: pointer;
      transition: all 0.2s; box-shadow: 0 2px 8px rgba(227,30,36,0.3);
    }
    .btn-demo:hover { background: #C81E1E; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(227,30,36,0.4); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .hamburger span { width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all 0.3s; }
    .mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: white; border-bottom: 1px solid #F3F4F6;
      padding: 16px 24px; flex-direction: column; gap: 4px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 15px; font-weight: 500; color: #374151; padding: 12px 0; border-bottom: 1px solid #F9FAFB; }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ── SECTION COMMONS ── */
    .section { padding: 100px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(227,30,36,0.06); border: 1px solid rgba(227,30,36,0.15);
      border-radius: 100px; padding: 6px 16px; margin-bottom: 20px;
      font-size: 12px; font-weight: 600; color: #E31E24; letter-spacing: 0.05em; text-transform: uppercase;
    }
    .section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #111827; line-height: 1.15; margin-bottom: 16px; }
    .section-subtitle { font-size: 17px; color: #6B7280; max-width: 580px; line-height: 1.7; }
    .text-red { color: #E31E24; }
    .text-gradient {
      background: linear-gradient(135deg, #E31E24, #F97316);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden; padding-top: 72px;
      background: linear-gradient(160deg, #FFFFFF 0%, #FFF5F5 40%, #FFF9F9 100%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0; pointer-events: none;
      background-image: linear-gradient(rgba(227,30,36,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227,30,36,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-orb1 {
      position: absolute; top: 10%; right: 5%; width: 500px; height: 500px;
      border-radius: 50%; pointer-events: none;
      background: radial-gradient(circle, rgba(227,30,36,0.07) 0%, transparent 70%);
    }
    .hero-orb2 {
      position: absolute; bottom: 10%; left: 0; width: 350px; height: 350px;
      border-radius: 50%; pointer-events: none;
      background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
    }
    .hero-content { max-width: 1200px; margin: 0 auto; padding: 60px 24px; width: 100%; position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(227,30,36,0.06); border: 1px solid rgba(227,30,36,0.20);
      border-radius: 100px; padding: 6px 16px; margin-bottom: 32px;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #E31E24; animation: pulse 2s infinite; }
    .hero-badge-text { font-size: 13px; color: #E31E24; font-weight: 600; }
    .hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; color: #111827; }
    .hero-desc { font-size: 18px; color: #6B7280; line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
    .hero-badge-item {
      display: flex; align-items: center; gap: 6px;
      background: white; border: 1px solid #E5E7EB; border-radius: 6px; padding: 6px 12px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05); font-size: 13px; color: #374151; font-weight: 500;
    }
    .check-icon { color: #22C55E; font-size: 14px; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #E31E24; color: white; font-size: 15px; font-weight: 600;
      padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
      transition: all 0.3s; box-shadow: 0 4px 16px rgba(227,30,36,0.30);
    }
    .btn-primary:hover { background: #C81E1E; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,30,36,0.45); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: #374151; font-size: 15px; font-weight: 500;
      padding: 14px 28px; border-radius: 10px; border: 1px solid #E5E7EB;
      transition: all 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .btn-secondary:hover { border-color: #E31E24; color: #E31E24; }

    /* Dashboard mock */
    .dashboard-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
      border: 1px solid #F3F4F6;
      box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(227,30,36,0.08);
      animation: float 5s ease-in-out infinite;
    }
    .dashboard-inner { background: white; border-radius: 20px; padding: 24px; min-height: 320px; }
    .dash-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
    .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #FCA5A5; }
    .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #FCD34D; }
    .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #86EFAC; }
    .dash-title { margin-left: auto; font-size: 11px; color: #9CA3AF; }
    .dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
    .dash-stat { border-radius: 10px; padding: 14px; }
    .dash-stat-val { font-size: 22px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
    .dash-stat-lbl { font-size: 11px; color: #6B7280; margin-top: 4px; }
    .dash-bar { margin-bottom: 12px; }
    .dash-bar-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
    .dash-bar-lbl { font-size: 12px; color: #6B7280; }
    .dash-bar-pct { font-size: 12px; font-weight: 600; }
    .dash-bar-track { height: 6px; background: #F3F4F6; border-radius: 3px; }
    .dash-bar-fill { height: 100%; border-radius: 3px; }
    .float-card {
      position: absolute; background: white; border: 1px solid #F3F4F6;
      border-radius: 12px; padding: 14px 18px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
    .float-card-lbl { font-size: 11px; color: #9CA3AF; margin-bottom: 4px; font-weight: 500; }
    .float-card-val { font-size: 24px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
    .float-card-sub { font-size: 11px; margin-top: 2px; }

    /* Stats bar */
    .stats-bar {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; margin-top: 80px;
      background: #F3F4F6; border-radius: 16px; overflow: hidden;
      border: 1px solid #F3F4F6; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .stat-item { background: white; padding: 28px 24px; text-align: center; }
    .stat-val { font-size: 36px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; margin-bottom: 4px; }
    .stat-lbl { font-size: 13px; color: #9CA3AF; font-weight: 500; }

    /* ── PRODUCT ── */
    #produit { background: white; }
    .product-header { text-align: center; margin-bottom: 64px; }
    .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 64px; }
    .feature-card {
      background: #FAFAFA; border: 1px solid #F3F4F6; border-radius: 16px;
      padding: 32px; transition: all 0.3s;
    }
    .feature-card:hover { border-color: rgba(227,30,36,0.2); box-shadow: 0 8px 32px rgba(227,30,36,0.08); transform: translateY(-2px); }
    .feature-icon { font-size: 28px; margin-bottom: 16px; }
    .feature-title { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
    .feature-desc { font-size: 14px; color: #6B7280; line-height: 1.7; }
    .compare-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .compare-table th { padding: 16px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
    .compare-table th:first-child { background: #F9FAFB; color: #6B7280; text-align: left; }
    .compare-table th:nth-child(2) { background: #F9FAFB; color: #9CA3AF; text-align: center; }
    .compare-table th:nth-child(3) { background: #E31E24; color: white; text-align: center; }
    .compare-table td { padding: 14px 24px; font-size: 14px; border-bottom: 1px solid #F3F4F6; }
    .compare-table td:first-child { color: #374151; font-weight: 500; background: white; }
    .compare-table td:nth-child(2) { color: #9CA3AF; text-align: center; background: white; }
    .compare-table td:nth-child(3) { color: #E31E24; font-weight: 600; text-align: center; background: #FFF5F5; }
    .compare-table tr:last-child td { border-bottom: none; }

    /* ── MODULES ── */
    #modules { background: #FAFAFA; }
    .modules-header { text-align: center; margin-bottom: 64px; }
    .modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .module-card {
      background: white; border: 1px solid #F3F4F6; border-radius: 16px;
      padding: 28px; transition: all 0.3s;
    }
    .module-card:hover { border-color: rgba(227,30,36,0.2); box-shadow: 0 8px 32px rgba(227,30,36,0.08); transform: translateY(-2px); }
    .module-tag {
      display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 16px;
    }
    .tag-core { background: rgba(227,30,36,0.08); color: #E31E24; }
    .tag-voix { background: rgba(249,115,22,0.08); color: #F97316; }
    .tag-social { background: rgba(34,197,94,0.08); color: #22C55E; }
    .tag-analytics { background: rgba(59,130,246,0.08); color: #3B82F6; }
    .tag-ivr { background: rgba(168,85,247,0.08); color: #A855F7; }
    .tag-infra { background: rgba(107,114,128,0.08); color: #6B7280; }
    .module-icon { font-size: 24px; margin-bottom: 12px; }
    .module-title { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
    .module-desc { font-size: 13px; color: #6B7280; line-height: 1.6; }

    /* ── SECTORS ── */
    #secteurs { background: white; }
    .sectors-header { text-align: center; margin-bottom: 64px; }
    .sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .sector-card {
      background: #FAFAFA; border: 1px solid #F3F4F6; border-radius: 16px;
      padding: 28px; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .sector-card:hover { border-color: rgba(227,30,36,0.2); box-shadow: 0 8px 32px rgba(227,30,36,0.08); transform: translateY(-2px); }
    .sector-card.enterprise { grid-column: span 3; background: linear-gradient(135deg, #FFF5F5, #FFF9F9); border-color: rgba(227,30,36,0.15); }
    .sector-prospects { font-size: 12px; font-weight: 600; color: #E31E24; margin-bottom: 12px; }
    .sector-title { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
    .sector-desc { font-size: 14px; color: #6B7280; line-height: 1.6; margin-bottom: 16px; }
    .sector-usecase { font-size: 12px; color: #9CA3AF; }
    .sector-usecase strong { color: #374151; }

    /* ── PRICING ── */
    #tarifs { background: #FAFAFA; }
    .pricing-header { text-align: center; margin-bottom: 64px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
    .pricing-card {
      background: white; border: 1px solid #E5E7EB; border-radius: 20px;
      padding: 36px; position: relative; transition: all 0.3s;
    }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
    .pricing-card.popular {
      border-color: #E31E24; border-width: 2px;
      box-shadow: 0 8px 32px rgba(227,30,36,0.15);
    }
    .popular-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: #E31E24; color: white; font-size: 12px; font-weight: 700;
      padding: 4px 16px; border-radius: 100px; white-space: nowrap;
    }
    .plan-name { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
    .plan-desc { font-size: 14px; color: #6B7280; margin-bottom: 28px; line-height: 1.5; }
    .plan-price { margin-bottom: 28px; }
    .plan-amount { font-size: 48px; font-weight: 800; color: #E31E24; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
    .plan-currency { font-size: 20px; font-weight: 600; color: #E31E24; vertical-align: super; }
    .plan-period { font-size: 13px; color: #9CA3AF; margin-top: 6px; }
    .plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
    .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #374151; }
    .plan-features li::before { content: "✓"; color: #22C55E; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .plan-cta {
      display: block; text-align: center; padding: 14px; border-radius: 10px;
      font-size: 15px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer;
    }
    .plan-cta.primary { background: #E31E24; color: white; box-shadow: 0 4px 16px rgba(227,30,36,0.3); }
    .plan-cta.primary:hover { background: #C81E1E; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,30,36,0.45); }
    .plan-cta.outline { background: white; color: #374151; border: 1px solid #E5E7EB; }
    .plan-cta.outline:hover { border-color: #E31E24; color: #E31E24; }
    .pricing-note { text-align: center; margin-top: 32px; font-size: 14px; color: #9CA3AF; }

    /* ── ABOUT ── */
    #apropos { background: white; }
    .about-header { text-align: center; margin-bottom: 64px; }
    .about-intro { font-size: 17px; color: #6B7280; max-width: 680px; margin: 0 auto 64px; text-align: center; line-height: 1.7; }
    .team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .team-card {
      background: #FAFAFA; border: 1px solid #F3F4F6; border-radius: 16px;
      padding: 28px 20px; text-align: center; transition: all 0.3s;
    }
    .team-card:hover { border-color: rgba(227,30,36,0.2); box-shadow: 0 8px 32px rgba(227,30,36,0.08); transform: translateY(-2px); }
    .team-avatar {
      width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
      background: linear-gradient(135deg, rgba(227,30,36,0.1), rgba(249,115,22,0.1));
      color: #E31E24; border: 2px solid rgba(227,30,36,0.15);
    }
    .team-name { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
    .team-role { font-size: 13px; color: #E31E24; font-weight: 600; margin-bottom: 6px; }
    .team-spec { font-size: 12px; color: #9CA3AF; line-height: 1.4; }

    /* ── CONTACT ── */
    #contact { background: #FAFAFA; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
    .contact-info-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #111827; margin-bottom: 16px; line-height: 1.2; }
    .contact-info-desc { font-size: 16px; color: #6B7280; line-height: 1.7; margin-bottom: 40px; }
    .contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
    .contact-item { display: flex; align-items: flex-start; gap: 14px; }
    .contact-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(227,30,36,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .contact-item-title { font-size: 12px; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
    .contact-item-val { font-size: 15px; color: #111827; font-weight: 500; }
    .why-list { display: flex; flex-direction: column; gap: 10px; }
    .why-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; }
    .why-item::before { content: "✓"; color: #22C55E; font-weight: 700; }
    .contact-form-card { background: white; border: 1px solid #F3F4F6; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .form-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
    .form-subtitle { font-size: 14px; color: #6B7280; margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 16px; border: 1px solid #E5E7EB; border-radius: 10px;
      font-size: 14px; color: #111827; background: white; font-family: 'Inter', sans-serif;
      transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #E31E24; box-shadow: 0 0 0 3px rgba(227,30,36,0.08); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; padding: 14px; background: #E31E24; color: white;
      border: none; border-radius: 10px; font-size: 15px; font-weight: 600;
      cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(227,30,36,0.3);
      font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: #C81E1E; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,30,36,0.45); }
    .form-note { text-align: center; font-size: 12px; color: #9CA3AF; margin-top: 12px; }
    .form-success { display: none; text-align: center; padding: 32px; }
    .form-success.show { display: block; }
    .form-success-icon { font-size: 48px; margin-bottom: 16px; }
    .form-success-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 8px; }
    .form-success-desc { font-size: 14px; color: #6B7280; }

    /* ── FOOTER ── */
    footer { background: #111827; color: white; padding: 64px 24px 32px; }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-brand-desc { font-size: 14px; color: #9CA3AF; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
    .footer-socials { display: flex; gap: 12px; }
    .footer-social {
      width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; transition: all 0.2s;
    }
    .footer-social:hover { background: #E31E24; transform: translateY(-2px); }
    .footer-col-title { font-size: 12px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: #D1D5DB; transition: color 0.2s; }
    .footer-links a:hover { color: #E31E24; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 13px; color: #6B7280; }
    .footer-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6B7280; }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }

    /* ── WHATSAPP ── */
    .wa-container { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
    .wa-btn {
      width: 56px; height: 56px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4); cursor: pointer;
      transition: all 0.3s; border: none; font-size: 26px;
      animation: waPulse 2s infinite;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
    .wa-menu {
      display: none; position: absolute; bottom: 68px; right: 0;
      background: white; border-radius: 16px; padding: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 240px;
      border: 1px solid #F3F4F6;
    }
    .wa-menu.open { display: block; }
    .wa-menu-title { font-size: 12px; font-weight: 600; color: #9CA3AF; padding: 8px 12px 4px; text-transform: uppercase; letter-spacing: 0.05em; }
    .wa-option {
      display: flex; align-items: center; gap: 12px; padding: 12px;
      border-radius: 10px; transition: background 0.2s; cursor: pointer;
    }
    .wa-option:hover { background: #F9FAFB; }
    .wa-flag { font-size: 20px; }
    .wa-option-name { font-size: 14px; font-weight: 600; color: #111827; }
    .wa-option-num { font-size: 12px; color: #6B7280; }

    /* ── ANIMATIONS ── */
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
    @keyframes waPulse { 0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
      .hero-visual { display: none; }
      .stats-bar { grid-template-columns: repeat(2, 1fr) !important; }
      .features-grid { grid-template-columns: 1fr; }
      .modules-grid { grid-template-columns: repeat(2, 1fr); }
      .sectors-grid { grid-template-columns: 1fr 1fr; }
      .sector-card.enterprise { grid-column: span 2; }
      .pricing-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .section { padding: 64px 16px; }
      .modules-grid { grid-template-columns: 1fr; }
      .sectors-grid { grid-template-columns: 1fr; }
      .sector-card.enterprise { grid-column: span 1; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
.legal-header {
  padding: 140px 24px 60px;
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF5F5 100%);
  text-align: center;
  border-bottom: 1px solid #F3F4F6;
}
.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}
.legal-date {
  font-size: 15px;
  color: #E31E24;
  font-weight: 600;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  color: #111827;
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: #111827;
  margin: 32px 0 12px;
}
.legal-content p {
  margin-bottom: 24px;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 12px;
}
.legal-content a {
  color: #E31E24;
  font-weight: 600;
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
.deletion-box {
  background: #FAFAFA;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.deletion-box h3 {
  margin-top: 0;
  color: #E31E24;
}