    /* ─── MODALE ─── */
    .brevo-modal {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
      align-items: center; justify-content: center;
    }
    .brevo-modal.open { display: flex; }
    .brevo-modal-inner {
      position: relative; width: 90%; max-width: 520px;
      background: #0c0c14;
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 20px; overflow: hidden;
      animation: fadeSlideDown 0.3s ease;
    }
    .brevo-modal-close {
      position: absolute; top: 14px; right: 18px;
      background: none; border: none; color: #94a3b8;
      font-size: 1.6rem; cursor: pointer; line-height: 1; z-index: 1;
      transition: color 0.2s;
    }
    .brevo-modal-close:hover { color: #f1f5f9; }
    .brevo-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 48px 40px;
      text-align: center;
    }
    .brevo-success-icon {
      width: 64px; height: 64px;
      background: rgba(16,185,129,0.15);
      border: 2px solid rgba(16,185,129,0.5);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .brevo-success-icon svg { color: #10b981; }
    .brevo-success h3 {
      font-size: 1.4rem; font-weight: 800; color: #f1f5f9; margin: 0;
    }
    .brevo-success p {
      font-size: 0.95rem; color: #94a3b8; margin: 0; line-height: 1.6;
    }
    .brevo-success-badge {
      background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.35);
      border-radius: 12px;
      padding: 10px 20px;
      color: #10b981;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* ─── RESTYLING BREVO ─── */
    .sib-form { background: transparent !important; padding: 0 !important; }
    #sib-container {
      background: transparent !important;
      border: none !important; padding: 32px !important;
      max-width: 100% !important;
    }
    .sib-form-block p { color: #f1f5f9 !important; font-family: 'Inter', sans-serif !important; }
    .sib-form-block p:first-child { font-size: 1.5rem !important; font-weight: 800 !important; background: linear-gradient(135deg, #a855f7, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .entry__label { color: #94a3b8 !important; font-family: 'Inter', sans-serif !important; font-size: 0.85rem !important; font-weight: 500 !important; }
    .entry__field { background: transparent !important; }
    .input {
      background: rgba(255,255,255,0.05) !important;
      border: 1px solid rgba(255,255,255,0.1) !important;
      color: #f1f5f9 !important; border-radius: 8px !important;
      font-family: 'Inter', sans-serif !important;
      padding: 12px 14px !important;
      transition: border-color 0.2s, box-shadow 0.2s !important;
    }
    .input:focus { border-color: #7c3aed !important; box-shadow: 0 0 0 3px rgba(124,58,237,0.15) !important; outline: none !important; }
    .input::placeholder { color: #475569 !important; }
    .sib-form-block__button {
      background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
      border-radius: 10px !important; border: none !important;
      font-family: 'Inter', sans-serif !important; font-weight: 700 !important;
      font-size: 1rem !important; padding: 14px 28px !important;
      width: 100% !important; cursor: pointer !important;
      transition: opacity 0.2s, transform 0.2s !important;
      letter-spacing: 0.5px !important;
    }
    .sib-form-block__button:hover { opacity: 0.85 !important; transform: translateY(-1px) !important; }
    .entry__specification { color: #475569 !important; font-family: 'Inter', sans-serif !important; }
    .entry__choice span:not(.checkbox) { color: #94a3b8 !important; font-family: 'Inter', sans-serif !important; font-size: 0.8rem !important; }
    .checkbox_tick_positive { border-color: rgba(148,163,184,0.4) !important; background: transparent !important; }
    .checkbox_tick_positive::before { display: none !important; }
    #sib-container input[type="checkbox"]:checked + .checkbox_tick_positive { background: #7c3aed !important; border-color: #7c3aed !important; }
    #sib-container input[type="checkbox"]:checked + .checkbox_tick_positive::before { display: block !important; }
    #success-message { background: rgba(16,185,129,0.1) !important; border-color: rgba(16,185,129,0.3) !important; color: #10b981 !important; }
    #error-message   { background: rgba(239,68,68,0.1) !important;  border-color: rgba(239,68,68,0.3) !important;  color: #ef4444 !important; }
    #success-message span, #error-message span { color: inherit !important; font-family: 'Inter', sans-serif !important; }
    .sib-form-message-panel { max-width: 100% !important; }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #050508;
      --bg2: #0c0c14;
      --bg3: #12121e;
      --purple: #7c3aed;
      --purple-light: #a855f7;
      --cyan: #06b6d4;
      --cyan-light: #67e8f9;
      --green: #10b981;
      --text: #f1f5f9;
      --text-muted: #94a3b8;
      --border: rgba(124, 58, 237, 0.2);
      --glow-purple: 0 0 60px rgba(124, 58, 237, 0.3);
      --glow-cyan: 0 0 60px rgba(6, 182, 212, 0.3);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ─── CANVAS BACKGROUND ─── */
    #canvas-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.5;
    }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
    }

    /* ─── LAYOUT ─── */
    .wrapper { position: relative; z-index: 2; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 16px 0;
      backdrop-filter: blur(20px);
      background: rgba(5, 5, 8, 0.8);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
    nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, var(--purple-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .logo span { font-family: 'JetBrains Mono', monospace; }
.nav-cta {
      background: linear-gradient(135deg, var(--purple), var(--cyan));
      color: white;
      border: none;
      padding: 10px 22px;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      padding: 220px 0 80px;
      position: relative;
    }
    .hero-content { width: 100%; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.12);
      border: 1px solid rgba(124, 58, 237, 0.35);
      color: var(--purple-light);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeSlideDown 0.6s ease both;
    }
    .badge-dot {
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .hero h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 24px;
      animation: fadeSlideDown 0.7s ease 0.1s both;
    }
    .gradient-text {
      background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.2rem;
      color: var(--text-muted);
      max-width: 720px;
      margin-bottom: 24px;
      animation: fadeSlideDown 0.7s ease 0.2s both;
    }
    .hero p strong { color: var(--text); font-weight: 600; }

    .hero-form {
      display: flex;
      gap: 12px;
      margin-bottom: 0;
      flex-wrap: wrap;
      animation: fadeSlideDown 0.7s ease 0.3s both;
    }
    .input-wrap {
      position: relative;
      flex: 1;
      min-width: 260px;
    }
    .input-wrap svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      width: 18px; height: 18px;
    }
    .hero-form input {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      padding: 15px 16px 15px 46px;
      border-radius: 10px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .hero-form input::placeholder { color: var(--text-muted); }
    .hero-form input:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--purple), var(--cyan));
      color: white;
      border: none;
      padding: 15px 28px;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: white;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4); }
    .btn-primary:active { transform: translateY(0); }

    .hero-note {
      margin-top: 12px;
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
      animation: fadeSlideDown 0.7s ease 0.4s both;
    }
    .hero-note svg { color: var(--green); }

    .success-msg {
      display: none;
      align-items: center;
      gap: 12px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: var(--green);
      padding: 16px 20px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
    }

    /* ─── STATS ─── */
    .stats {
      padding: 32px 0;
      margin-top: 80px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
    }
    .stat { text-align: center; }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 900;
      letter-spacing: -1px;
      background: linear-gradient(135deg, var(--purple-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* ─── SECTION ─── */
    section { padding: 100px 0; }
    .section-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.78rem;
      color: var(--cyan);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.8px;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
    }
    .section-header { margin-bottom: 64px; }

    /* ─── TOPICS ─── */
    .topics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .topic-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: default;
    }
    .topic-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--glow-purple);
      border-color: var(--purple);
    }
    .topic-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
      border: 1px solid rgba(124, 58, 237, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }
    .topic-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .topic-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── ABOUT ─── */
    .about-section { background: var(--bg2); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

    .about-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .avatar-ring {
      width: 260px; height: 260px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, var(--purple), var(--cyan), var(--purple-light), var(--purple));
      padding: 3px;
      animation: rotateBorder 5s linear infinite;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .avatar-ring::after {
      content: '';
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      box-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
      pointer-events: none;
    }
    .avatar-inner {
      width: 100%; height: 100%;
      border-radius: 50%;
      background: var(--bg3);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      /* counter-rotate to keep content static */
      animation: rotateBorder 5s linear infinite reverse;
    }
    .avatar-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .floating-badge {
      position: absolute;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 16px;
      font-size: 0.8rem;
      font-weight: 600;
      white-space: nowrap;
    }
    .fb1 { top: 20px;    left: -125px; color: var(--cyan);         border-color: rgba(6,182,212,0.3); }
    .fb2 { bottom: 20px; left: -75px; color: var(--purple-light); border-color: rgba(124,58,237,0.3); }
    .fb3 { top: 50%; right: -115px;   color: var(--green);         border-color: rgba(16,185,129,0.3); transform: translateY(-50%); }

    .about-content h2 { margin-bottom: 20px; }
    .about-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
    .about-content p strong { color: var(--text); }
    .clients {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }
    .client-tag {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.78rem;
      color: var(--text-muted);
      font-family: 'JetBrains Mono', monospace;
    }

    /* ─── BENEFITS ─── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .benefit {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color 0.3s;
    }
    .benefit:hover { border-color: rgba(6, 182, 212, 0.4); }
    .benefit-check {
      width: 22px; height: 22px;
      min-width: 22px;
      background: linear-gradient(135deg, var(--purple), var(--cyan));
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .benefit-check svg { width: 12px; height: 12px; color: white; }
    .benefit h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
    .benefit p { font-size: 0.83rem; color: var(--text-muted); }

    /* ─── TESTIMONIAL / QUOTE ─── */
    .quote-section {
      background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.08));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .quote-section::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 40px;
      font-size: 14rem;
      color: rgba(124,58,237,0.08);
      font-family: Georgia, serif;
      line-height: 1;
    }
    .quote-text {
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 1.5;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
    }
    .quote-author { color: var(--text-muted); font-size: 0.9rem; }
    .quote-author strong { color: var(--purple-light); }

    /* ─── CTA SECTION ─── */
    .cta-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .cta-box {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-box h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 900;
      letter-spacing: -0.8px;
      margin-bottom: 16px;
    }
    .cta-box p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
    .cta-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .cta-form .input-wrap { min-width: 260px; }
    .cta-form input {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      padding: 15px 16px 15px 46px;
      border-radius: 10px;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .cta-form input::placeholder { color: var(--text-muted); }
    .cta-form input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
    }
    .cta-note { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

    /* ─── DDD SECTION ─── */
    .ddd-section { background: var(--bg2); border-top: 1px solid var(--border); }
    .ddd-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 768px) { .ddd-grid { grid-template-columns: 1fr; gap: 48px; } }

    .ddd-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .pill {
      background: rgba(124, 58, 237, 0.1);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: var(--purple-light);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      transition: background 0.2s, border-color 0.2s;
    }
    .pill:hover { background: rgba(124, 58, 237, 0.2); border-color: var(--purple); }

    .ddd-visual { display: flex; justify-content: center; align-items: center; }
    .ddd-diagram {
      display: grid;
      grid-template-columns: auto 40px auto 40px auto;
      grid-template-rows: auto 40px auto 40px auto;
      align-items: center;
      justify-items: center;
    }
    .ddd-node {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      transition: border-color 0.3s, box-shadow 0.3s;
      min-width: 100px;
    }
    .ddd-node:hover { border-color: var(--purple); box-shadow: var(--glow-purple); }
    .ddd-node span { font-size: 1.4rem; line-height: 1; }
    .ddd-node strong { font-size: 0.73rem; color: var(--text); line-height: 1.3; }
    /* grid placement: 5-col × 5-row cross layout */
    .ddd-node--top    { grid-column: 3; grid-row: 1; }
    .ddd-node--left   { grid-column: 1; grid-row: 3; }
    .ddd-node--center { grid-column: 3; grid-row: 3; border-color: rgba(124,58,237,0.5); background: rgba(124,58,237,0.08); animation: float 4s ease-in-out infinite; }
    .ddd-node--right  { grid-column: 5; grid-row: 3; }
    .ddd-node--bottom { grid-column: 3; grid-row: 5; }
    /* connector lines */
    .ddd-conn-top    { grid-column: 3; grid-row: 2; width: 2px; height: 100%; background: linear-gradient(to bottom, var(--purple), var(--cyan)); opacity: 0.45; }
    .ddd-conn-bottom { grid-column: 3; grid-row: 4; width: 2px; height: 100%; background: linear-gradient(to bottom, var(--cyan), var(--purple)); opacity: 0.45; }
    .ddd-conn-left   { grid-column: 2; grid-row: 3; height: 2px; width: 100%; background: linear-gradient(to right, var(--purple), var(--cyan)); opacity: 0.45; }
    .ddd-conn-right  { grid-column: 4; grid-row: 3; height: 2px; width: 100%; background: linear-gradient(to right, var(--cyan), var(--purple)); opacity: 0.45; }

    /* ─── TOPIC FEATURED ─── */
    .topic-card--featured {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.08));
      border-color: rgba(124,58,237,0.35);
      position: relative;
    }
    @media (max-width: 700px) { .topic-card--featured { grid-column: span 1; } }
    .topic-tag {
      display: inline-block;
      margin-top: 12px;
      background: linear-gradient(135deg, var(--purple), var(--cyan));
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 0;
    }
    footer .container {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .footer-legal { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.05); }
    footer p { font-size: 0.85rem; color: var(--text-muted); }
    .footer-legal a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--purple-light); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    @keyframes rotateBorder {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
