
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0F172A; --bg-card: #131f35; --blue: #2563EB;
      --blue-light: #3B82F6; --white: #FFFFFF; --gray: #64748B;
      --gray-light: #94A3B8; --green: #22C55E;
      --border: rgba(255,255,255,0.07);
      --font-head: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg); color: var(--white);
      font-family: var(--font-body); font-size: 16px; line-height: 1.7;
      overflow-x: hidden;
    }
    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.022; pointer-events: none; z-index: 9999;
    }
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(15,23,42,0.9); backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; height: 68px;
    }
    .nav-logo svg { height: 30px; width: auto; }
    .nav-back {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .875rem; font-weight: 500; color: var(--gray-light);
      transition: color .2s; text-decoration: none;
    }
    .nav-back:hover { color: var(--white); }
    .nav-back svg { transition: transform .2s; }
    .nav-back:hover svg { transform: translateX(-3px); }

    .page-hero { padding: 140px 0 60px; position: relative; overflow: hidden; }
    .page-hero::before {
      content: ''; position: absolute;
      bottom: -100px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .page-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue-light);
      background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
      border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
    }
    .page-title {
      font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 16px;
    }
    .page-title span { color: var(--blue-light); }
    .page-meta { font-size: .875rem; color: var(--gray); margin-top: 12px; }
    .page-meta strong { color: var(--gray-light); }

    .legal-body { padding: 0 0 100px; }

    /* ---- COOKIE PREFERENCE PANEL ---- */
    .cookie-panel {
      background: rgba(37,99,235,0.08);
      border: 1px solid rgba(37,99,235,0.25);
      border-radius: 20px; padding: 36px 40px; margin-bottom: 32px;
    }
    .panel-title {
      font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
      color: var(--white); margin-bottom: 8px;
    }
    .panel-desc { font-size: .9rem; color: var(--gray-light); margin-bottom: 28px; }

    .cookie-type {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 14px; padding: 20px 24px; margin-bottom: 12px;
      display: flex; align-items: center; gap: 20px;
      transition: border-color .3s;
    }
    .cookie-type:hover { border-color: rgba(37,99,235,0.3); }
    .cookie-type-info { flex: 1; }
    .cookie-type-name {
      font-family: var(--font-head); font-weight: 700; font-size: .95rem;
      color: var(--white); margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
    }
    .cookie-required-badge {
      font-size: .68rem; font-weight: 600; letter-spacing: .06em;
      text-transform: uppercase; color: var(--green);
      background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.2);
      border-radius: 100px; padding: 2px 8px;
    }
    .cookie-type-desc { font-size: .85rem; color: var(--gray); }

    /* Toggle switch */
    .toggle-wrap { flex-shrink: 0; }
    .toggle {
      position: relative; display: inline-block;
      width: 48px; height: 26px;
    }
    .toggle input { opacity: 0; width: 0; height: 0; }
    .toggle-slider {
      position: absolute; cursor: pointer; inset: 0;
      background: rgba(255,255,255,0.1); border: 1px solid var(--border);
      border-radius: 100px; transition: background .3s, border-color .3s;
    }
    .toggle-slider::before {
      content: ''; position: absolute;
      height: 18px; width: 18px; left: 3px; bottom: 3px;
      background: var(--gray-light); border-radius: 50%;
      transition: transform .3s, background .3s;
    }
    .toggle input:checked + .toggle-slider { background: var(--blue); border-color: var(--blue); }
    .toggle input:checked + .toggle-slider::before {
      transform: translateX(22px); background: #fff;
    }
    .toggle input:disabled + .toggle-slider { cursor: not-allowed; opacity: 0.5; }

    .panel-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
    .btn-cookie {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-weight: 600; font-size: .875rem;
      padding: 12px 24px; border-radius: 100px; cursor: pointer;
      border: none; outline: none; transition: all .25s; text-decoration: none;
    }
    .btn-accept { background: var(--blue); color: #fff; }
    .btn-accept:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
    .btn-save { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--gray-light); }
    .btn-save:hover { border-color: rgba(255,255,255,.2); color: var(--white); transform: translateY(-2px); }
    .btn-reject { background: transparent; color: var(--gray); font-size: .82rem; padding: 12px 16px; }
    .btn-reject:hover { color: var(--gray-light); }

    .save-toast {
      display: none; align-items: center; gap: 8px;
      font-size: .85rem; color: var(--green);
      background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
      border-radius: 100px; padding: 8px 16px; margin-top: 16px;
    }
    .save-toast.visible { display: inline-flex; animation: fadeIn .3s ease; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

    /* ---- LEGAL CONTENT ---- */
    .legal-content {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 20px; padding: 56px 60px;
    }
    .legal-section { margin-bottom: 44px; }
    .legal-section:last-child { margin-bottom: 0; }
    .legal-section h2 {
      font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
      color: var(--white); margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
      padding-bottom: 12px; border-bottom: 1px solid var(--border);
    }
    .legal-section h2 .num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; min-width: 28px;
      background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.25);
      border-radius: 8px; font-size: .78rem; font-weight: 700; color: var(--blue-light);
    }
    .legal-section p { color: var(--gray-light); font-size: .95rem; margin-bottom: 12px; }
    .legal-section p:last-child { margin-bottom: 0; }
    .legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
    .legal-section ul li {
      display: flex; align-items: flex-start; gap: 10px;
      color: var(--gray-light); font-size: .95rem;
    }
    .legal-section ul li::before {
      content: ''; display: block; flex-shrink: 0;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue); margin-top: 8px;
    }
    .highlight-box {
      background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.18);
      border-radius: 12px; padding: 20px 24px; margin: 16px 0;
      font-size: .9rem; color: var(--gray-light);
    }
    .highlight-box strong { color: var(--white); }

    /* Cookie type table */
    .cookie-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
    .cookie-table th {
      text-align: left; font-family: var(--font-head); font-size: .78rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
      color: var(--gray); padding: 10px 14px;
      border-bottom: 1px solid var(--border);
    }
    .cookie-table td {
      padding: 12px 14px; font-size: .875rem; color: var(--gray-light);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      vertical-align: top;
    }
    .cookie-table tr:last-child td { border-bottom: none; }
    .cookie-table tr:hover td { background: rgba(255,255,255,0.02); }
    .tag-necessary { color: var(--green); font-weight: 600; }
    .tag-analytics { color: var(--blue-light); font-weight: 600; }
    .tag-marketing { color: #F59E0B; font-weight: 600; }

    .contact-card {
      margin-top: 48px; background: rgba(37,99,235,0.08);
      border: 1px solid rgba(37,99,235,0.22); border-radius: 16px;
      padding: 28px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    }
    .contact-card-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.25);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
    }
    .contact-card-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .contact-card-text p { font-size: .875rem; color: var(--gray); margin: 0; }
    .contact-card-links { margin-left: auto; display: flex; gap: 12px; flex-wrap: wrap; }
    .contact-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .85rem; font-weight: 600; padding: 10px 18px;
      border-radius: 100px; text-decoration: none; transition: all .25s;
    }
    .contact-link.primary { background: var(--blue); color: #fff; }
    .contact-link.primary:hover { background: var(--blue-light); transform: translateY(-2px); }
    .contact-link.ghost { border: 1px solid var(--border); color: var(--gray-light); }
    .contact-link.ghost:hover { border-color: rgba(255,255,255,.2); color: var(--white); transform: translateY(-2px); }

    .legal-footer { border-top: 1px solid var(--border); padding: 32px 0; }
    .footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: .82rem; color: var(--gray); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: .82rem; color: var(--gray); }

    @media (max-width: 768px) {
      .cookie-panel { padding: 24px 20px; }
      .legal-content { padding: 32px 24px; }
      .contact-card { flex-direction: column; align-items: flex-start; }
      .contact-card-links { margin-left: 0; }
      .cookie-table { font-size: .8rem; }
      .cookie-table th, .cookie-table td { padding: 10px 8px; }
    }