/* ═══════════════════════════════════════════════════════
   NapTrox — Shared Design System v2.0
   Premium Dark Luxury Agency Theme
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg-0: #05050A;
  --bg-1: #0A0A14;
  --bg-2: #0D0B1F;
  --amb-1: #1B0C3A;
  --amb-2: #2A0E5F;
  --p1: #7C3AED;
  --p2: #8B5CF6;
  --p3: #A855F7;
  --g1: #22C55E;
  --g2: #16A34A;
  --g3: #4ADE80;
  --tw: #FFFFFF;
  --ts: #C9C9D6;
  --tm: #8B8BA3;
  --cb1: #0F0F1B;
  --cb2: #131327;
  --border: rgba(255, 255, 255, 0.08);
  --border-p: rgba(139, 92, 246, 0.25);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.28);
  --shadow-p: 0 12px 40px rgba(139, 92, 246, 0.22);
  --radius-card: 24px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --space-section: clamp(72px, 9vw, 128px);
  --space-inner: clamp(20px, 5vw, 60px);
  --max-w: 1280px;
  --max-w-content: 900px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', sans-serif;
  background: var(--bg-0);
  color: var(--tw);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5 {
  font-family: 'Clash Display', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #1B0C3A 0%, #0A0A14 50%, #05050A 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.l-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(139,92,246,.28) 0%, transparent 70%);
  filter: blur(60px); opacity: 0; transform: scale(.8);
}
.l-brand {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(52px, 8vw, 92px); font-weight: 700; letter-spacing: -.04em;
  color: #fff; opacity: 0; filter: blur(10px); transform: translateY(20px);
  position: relative; z-index: 2;
}
.l-brand span { color: #8B5CF6; }
.l-bar-w { width: min(320px, 80vw); position: relative; z-index: 2; opacity: 0; }
.l-bar-t { width: 100%; height: 3px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; }
.l-bar-f {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #7C3AED, #8B5CF6, #A855F7);
  border-radius: 99px; box-shadow: 0 0 12px rgba(139,92,246,.7);
}
.l-sub {
  position: relative; z-index: 2;
  font-family: 'Satoshi', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: #8B8BA3; opacity: 0;
}
.l-dots span {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: #22C55E; margin: 0 2px; opacity: 0;
  animation: dP 1.2s ease-in-out infinite; box-shadow: 0 0 6px #22C55E;
}
.l-dots span:nth-child(2) { animation-delay: .2s; }
.l-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dP { 0%,100%{opacity:.2} 50%{opacity:1} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 var(--space-inner); height: 72px;
  display: flex; align-items: center;
  transition: background .4s, border-bottom .4s;
}
nav.scrolled {
  background: rgba(5,5,10,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -.5px;
  cursor: pointer; flex-shrink: 0;
}
.nav-logo span { color: #8B5CF6; }
.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
}
.nav-links a, .nav-links span {
  font-family: 'Satoshi', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--ts); transition: color .2s; cursor: pointer; white-space: nowrap;
}
.nav-links a:hover, .nav-links span:hover { color: var(--tw); }
.nav-links .active-link { color: var(--tw); }

/* CTA button */
.btn-nav {
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: #fff; padding: 10px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: 'Satoshi', sans-serif;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,.45); }

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,10,.97); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px var(--space-inner) 40px; z-index: 998;
  flex-direction: column; gap: 0; overflow-y: auto;
}
.mob-link {
  font-family: 'Satoshi', sans-serif; color: var(--ts);
  font-size: 16px; font-weight: 500; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s; display: block; cursor: pointer;
}
.mob-link:hover { color: var(--tw); }
.mob-sub {
  padding-left: 22px !important; font-size: 14px !important;
  color: #AFAFC8 !important; border-bottom: none !important;
}
.mobile-menu .btn-nav {
  margin-top: 16px; text-align: center; padding: 15px;
  display: block; border-radius: 10px; width: 100%;
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > span {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-chevron {
  display: inline-block; vertical-align: middle; transform: translateY(1px);
  opacity: 0.85; transition: transform .2s, opacity .2s, color .2s; color: var(--ts);
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg) translateY(-1px); opacity: 1; color: #A855F7;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%) translateY(8px);
  transform-origin: top center;
  width: 196px; padding: 8px; border-radius: 14px;
  background: rgba(10,10,20,.98); border: 1px solid rgba(139,92,246,.24);
  box-shadow: 0 18px 42px rgba(0,0,0,.38); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 1200;
}
.nav-dropdown-menu::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #0B0B14;
  border-left: 1px solid rgba(168,85,247,.3); border-top: 1px solid rgba(168,85,247,.3);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; min-height: 44px; padding: 10px 12px; border-radius: 12px;
  background: transparent; color: #EEE7FF;
  font-family: 'Satoshi', sans-serif; font-size: 13px; font-weight: 600;
  line-height: 1.2; white-space: nowrap; cursor: pointer;
  transition: background .18s, color .18s;
}
.dropdown-item:hover { background: rgba(139,92,246,.10); color: var(--tw); }
.dropdown-arrow {
  flex: 0 0 auto; color: #B794F6; font-size: 13px; line-height: 1;
  transition: transform .18s, color .18s;
}
.dropdown-item:hover .dropdown-arrow { transform: translateX(2px); color: var(--tw); }
.dropdown-label { background: transparent !important; padding: 0 !important; border-radius: 0 !important; display: inline !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  color: #fff; padding: 14px 28px; border-radius: var(--radius-btn);
  font-family: 'Satoshi', sans-serif; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
  letter-spacing: .1px; touch-action: manipulation; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(139,92,246,.5); }
.btn-secondary {
  background: transparent; color: #fff; padding: 14px 28px;
  border-radius: var(--radius-btn); font-family: 'Satoshi', sans-serif;
  font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; transition: background .2s, border-color .2s, transform .2s;
  letter-spacing: .1px; touch-action: manipulation; text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}
.btn-large { padding: 15px 34px; font-size: 16px; border-radius: 12px; }

/* ── SECTION SYSTEM ── */
section { padding: var(--space-section) var(--space-inner); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Satoshi', sans-serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: #A855F7;
  margin-bottom: 20px; font-weight: 600;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: #8B5CF6; }
.section-title {
  font-size: clamp(26px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -.04em; line-height: 1.05; margin-bottom: 20px;
}
.accent { color: #8B5CF6; }
.section-desc {
  font-size: 16px; color: var(--ts); max-width: 560px;
  line-height: 1.7; margin-bottom: 56px; font-weight: 400;
  font-family: 'Satoshi', sans-serif;
}
.reveal { opacity: 0; transform: translateY(30px); }

/* ── CARDS ── */
.card-base {
  background: var(--cb1); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card-base:hover { border-color: var(--border-p); transform: translateY(-4px); box-shadow: var(--shadow-p); }

/* ── FOOTER ── */
footer {
  background: #0D0B1F; border-top: 1px solid var(--border);
  padding: 56px var(--space-inner) 28px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-logo { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.footer-logo span { color: #8B5CF6; }
.footer-tagline { font-size: 14px; color: var(--tm); line-height: 1.7; max-width: 260px; margin-bottom: 22px; font-family: 'Satoshi', sans-serif; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cb1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: border-color .2s, transform .2s; cursor: pointer;
}
.social-btn:hover { border-color: rgba(139,92,246,.4); transform: translateY(-2px); }
.footer-col-title {
  font-family: 'Clash Display', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; color: var(--ts);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 14px; color: var(--tm); transition: color .2s;
  cursor: pointer; font-family: 'Satoshi', sans-serif;
}
.footer-col ul li a:hover, .footer-col ul li span:hover { color: var(--tw); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--tm); font-family: 'Satoshi', sans-serif; }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.2);
  border-radius: var(--radius-pill); padding: 5px 14px;
  font-size: 12px; color: #A855F7; font-family: 'Satoshi', sans-serif;
}
.footer-badge::before { content: '⬡'; font-size: 14px; }

/* ── LEGAL PAGE SPECIFIC ── */
.legal-hero {
  min-height: 48vh;
  padding: clamp(110px, 12vh, 180px) var(--space-inner) clamp(50px, 7vh, 80px);
  display: flex; align-items: center; position: relative; overflow: hidden;
  background: var(--bg-0);
}
.legal-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.legal-orb-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: -200px; right: -100px; filter: blur(90px);
}
.legal-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 70%);
  bottom: -100px; left: -100px; filter: blur(80px);
}
.legal-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.legal-hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
  border-radius: var(--radius-pill); padding: 6px 18px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: #A855F7; margin-bottom: 24px; font-family: 'Satoshi', sans-serif; font-weight: 600;
}
.legal-eyebrow::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 8px #22C55E;
}
.legal-h1 {
  font-size: clamp(38px, 6vw, 76px); font-weight: 700;
  letter-spacing: -.05em; line-height: 1.0; margin-bottom: 20px;
}
.legal-sub {
  font-size: clamp(15px, 1.2vw, 18px); color: var(--ts);
  line-height: 1.75; max-width: 560px;
  font-weight: 400; font-family: 'Satoshi', sans-serif; margin-bottom: 18px;
}
.legal-meta {
  font-size: 13px; color: var(--tm); font-family: 'Satoshi', sans-serif; margin-bottom: 28px;
}
.legal-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.legal-tab {
  font-family: 'Satoshi', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--tm); transition: all .2s; cursor: pointer; text-decoration: none;
  display: inline-block;
}
.legal-tab:hover { color: var(--tw); background: rgba(255,255,255,.08); }
.legal-tab.active {
  background: rgba(139,92,246,.15); border-color: rgba(139,92,246,.35);
  color: #D8B4FE;
}

/* Legal content area */
.legal-wrap {
  max-width: var(--max-w); margin: 0 auto;
  padding: 48px var(--space-inner) 100px;
}
.legal-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start;
}
.legal-card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-card);
  transition: border-color .3s;
}
.legal-card:hover { border-color: rgba(139,92,246,.15); }
.legal-card h2 {
  font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -.03em;
  margin-bottom: 24px; font-weight: 700;
}
.legal-card h3 {
  margin-top: 32px; margin-bottom: 12px; font-size: 17px;
  color: #F5F3FF; letter-spacing: -.02em; font-weight: 700;
}
.legal-card h3::before {
  content: '';display: inline-block; width: 12px; height: 2px;
  background: var(--p2); margin-right: 10px; vertical-align: middle;
}
.legal-card p { color: #D1D5DB; line-height: 1.8; font-size: 15px; font-family: 'Satoshi', sans-serif; }
.legal-card p + p { margin-top: 14px; }
.legal-card ul { margin: 14px 0 0 0; padding: 0; list-style: none; color: #D1D5DB; }
.legal-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; font-size: 15px; line-height: 1.65;
  font-family: 'Satoshi', sans-serif; border-bottom: 1px solid rgba(255,255,255,.04);
}
.legal-card ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--p2); flex-shrink: 0; margin-top: 9px;
  box-shadow: 0 0 8px rgba(139,92,246,.4);
}
.legal-card ul li:last-child { border-bottom: none; }
.legal-note {
  margin-top: 28px; padding: 20px 22px; border-radius: 16px;
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.18);
  color: #D1FAE5; font-family: 'Satoshi', sans-serif; font-size: 14px; line-height: 1.7;
  display: flex; align-items: flex-start; gap: 12px;
}
.legal-note::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: #4ADE80; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* Legal sidebar */
.legal-sidebar { display: flex; flex-direction: column; gap: 20px; }
.legal-sidebar-card {
  background: var(--cb1); border: 1px solid var(--border);
  border-radius: 20px; padding: 24px; transition: border-color .3s;
}
.legal-sidebar-card:hover { border-color: var(--border-p); }
.legal-sidebar-card h4 {
  font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 700;
  margin-bottom: 16px; color: var(--tw);
}
.legal-contact-item {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.legal-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.legal-contact-label { font-size: 11px; color: var(--tm); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; font-family: 'Satoshi', sans-serif; }
.legal-contact-value { font-size: 14px; font-weight: 600; font-family: 'Satoshi', sans-serif; }
.legal-contact-value a { color: #A855F7; transition: color .2s; }
.legal-contact-value a:hover { color: var(--tw); }

.legal-nav-card a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 12px; margin-bottom: 6px;
  font-family: 'Satoshi', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--tm); transition: all .2s; background: rgba(255,255,255,.02);
  border: 1px solid transparent;
}
.legal-nav-card a:hover {
  color: var(--tw); background: rgba(139,92,246,.08);
  border-color: rgba(139,92,246,.2);
}
.legal-nav-card a.active {
  color: #D8B4FE; background: rgba(139,92,246,.12);
  border-color: rgba(139,92,246,.28);
}
.legal-nav-card a::after { content: '→'; opacity: .5; }
.legal-nav-card a.active::after { content: '←'; opacity: 1; }

/* CTA at bottom of legal */
.legal-cta-card {
  background: linear-gradient(135deg, rgba(27,12,58,.8), rgba(15,15,27,.9));
  border: 1px solid rgba(139,92,246,.3); border-radius: 20px; padding: 28px;
  text-align: center; position: relative; overflow: hidden;
}
.legal-cta-card::before {
  content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%);
  top: -60px; right: -60px; filter: blur(40px); pointer-events: none;
}
.legal-cta-card p {
  font-size: 13px; color: var(--tm); line-height: 1.65;
  font-family: 'Satoshi', sans-serif; margin-bottom: 18px; position: relative;
}
.legal-cta-card a {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff; padding: 11px 22px; border-radius: 10px;
  font-size: 13px; font-weight: 600; font-family: 'Satoshi', sans-serif;
  display: inline-block; transition: transform .2s, box-shadow .2s;
  position: relative;
}
.legal-cta-card a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,92,246,.4); }

/* ── FLOATING CONTACT ── */
#float-contact {
  position: fixed; right: 20px; bottom: 24px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-options {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  pointer-events: none; opacity: 0; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.float-options.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; touch-action: manipulation; }
.float-opt-label {
  background: rgba(13,11,31,.96); border: 1px solid rgba(139,92,246,.22);
  border-radius: 10px; padding: 7px 14px;
  font-family: 'Satoshi', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--ts); white-space: nowrap; backdrop-filter: blur(12px);
}
.float-opt-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; transition: transform .2s;
}
.float-opt:hover .float-opt-icon { transform: scale(1.1); }
.float-opt-wa .float-opt-icon { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.float-opt-em .float-opt-icon { background: linear-gradient(135deg, #7C3AED, #A855F7); box-shadow: 0 4px 20px rgba(139,92,246,.4); }
.float-main-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 0 0 0 rgba(139,92,246,.5), 0 6px 28px rgba(139,92,246,.45);
  transition: transform .2s, box-shadow .2s; touch-action: manipulation;
  border: none; flex-shrink: 0;
}
.float-main-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(139,92,246,.15), 0 8px 32px rgba(139,92,246,.5); }
.float-main-btn.active { box-shadow: 0 0 0 8px rgba(139,92,246,.18), 0 8px 32px rgba(139,92,246,.55); }
.float-main-btn svg { transition: transform .3s; }
.float-main-btn.active svg { transform: rotate(45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { order: -1; display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-sidebar { display: flex; }
}
@media (max-width: 480px) {
  #float-contact { right: 14px; bottom: 18px; }
  .float-main-btn { width: 48px; height: 48px; }
  .float-opt-icon { width: 40px; height: 40px; font-size: 18px; }
  .legal-tabs { flex-direction: column; align-items: flex-start; }
}
