/* ============================================
   ENCANTA v2 — Dark Purple 3D Animated Theme
   ============================================ */

/* === VARIABLES === */
:root {
  --bg-void: #06060e;
  --bg-primary: #0b0915;
  --bg-card: rgba(21, 16, 36, 0.55);
  --bg-card-solid: #151024;
  --bg-card-hover: #1e1535;
  --bg-nav: rgba(10, 8, 18, 0.72);
  --purple-900: #2e1065;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-200: #ddd6fe;
  --purple-glow: rgba(139, 92, 246, 0.35);
  --text-primary: #ede8f5;
  --text-secondary: #9b8eb5;
  --text-muted: #6b5e80;
  --accent: #d8b4fe;
  --border-subtle: rgba(139, 92, 246, 0.15);
  --border-glow: rgba(139, 92, 246, 0.45);
  --shadow-glow: 0 8px 40px rgba(139, 92, 246, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--purple-300); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === BACKGROUND === */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(109, 40, 217, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(46, 16, 101, 0.14) 0%, transparent 60%),
    var(--bg-void);
}

/* === CONTAINER === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}
.main-nav.scrolled {
  background: rgba(10, 8, 18, 0.94);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.92;
}
.nav-logo:hover img { transform: scale(1.06); opacity: 1; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem !important;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.5);
}
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(10, 8, 18, 0.98);
    backdrop-filter: blur(24px);
    padding: 40px;
    transition: right 0.45s var(--ease);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { text-align: center; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-short {
  min-height: 55vh;
  padding-bottom: 40px;
}
.hero-orb {
  position: absolute;
  width: clamp(350px, 50vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, rgba(109, 40, 217, 0.06) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  transform: translate(-50%, -50%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-logo-img {
  height: clamp(48px, 7vw, 80px);
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInScale 0.8s var(--ease) 0.1s forwards;
}
.hero .tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--purple-400);
  margin-bottom: 12px;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.3s forwards;
}
.hero .subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.85;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.4s forwards;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.5s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: #fff;
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 50px rgba(139, 92, 246, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.18);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--purple-300);
  border: 1.5px solid var(--border-glow);
}
.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple-400);
  transform: translateY(-2px);
  color: var(--purple-200);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   CARDS — SERVICE / GENERAL
   ============================================ */
.card-grid {
  display: grid;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
/* card-grid-3 = centered flex (homepage preview): 3 in first row, 2 centered in second */
.card-grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.card-grid-3 > .card { flex: 0 1 calc(33.333% - 16px); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--purple-700) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-900), rgba(124, 58, 237, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.card:hover .card-icon { transform: scale(1.1); }
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--purple-400);
  font-weight: 500;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.card-link:hover { gap: 14px; color: var(--purple-300); }
.card-link svg {
  width: 15px; height: 15px;
  transition: transform var(--transition);
}
.card-link:hover svg { transform: translateX(4px); }

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.benefit-item:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.benefit-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
.benefit-item span {
  color: var(--text-primary);
  font-size: 0.93rem;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-700), rgba(109, 40, 217, 0.1));
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  position: relative;
}
.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 2px solid var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--purple-400);
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .step-number {
  background: var(--purple-700);
  color: #fff;
  border-color: var(--purple-500);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.step-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  text-align: center;
  padding: 44px 28px;
}
.contact-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-900), rgba(124, 58, 237, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 22px;
  transition: all var(--transition);
}
.card:hover .contact-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--text-secondary); margin-bottom: 16px; }
.contact-card a { color: var(--purple-400); font-weight: 600; font-size: 1.05rem; }
.contact-card a:hover { color: var(--purple-200); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-text {
  max-width: 800px;
  margin: 0 auto;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-highlight {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  font-style: italic;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 40px 0;
}
.legal-h {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--purple-200);
  margin: 32px 0 10px;
  text-align: left;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}
.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px 32px;
  text-align: center;
}
.footer-logo {
  height: 38px;
  filter: brightness(0) invert(1);
  margin: 0 auto 22px;
  opacity: 0.6;
}
.footer-contact {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.footer-contact a { color: var(--text-secondary); }
.footer-contact a:hover { color: var(--purple-300); }
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-legal a { color: var(--text-muted); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--purple-400); }
.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ============================================
   FORM
   ============================================ */
.form-container {
  max-width: 620px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple-600);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.12);
  background: var(--bg-card-hover);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { min-height: 150px; resize: vertical; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}
.consent-check input {
  width: auto;
  height: auto;
  padding: 0;
  margin: 4px 0 0 0;
  flex-shrink: 0;
  accent-color: var(--purple-600);
}
.consent-check a { color: var(--purple-300); }
.consent-check a:hover { color: var(--accent); }
.form-status {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.93rem;
  font-weight: 500;
  text-align: center;
}
.form-status--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}
.form-status--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.stagger > .reveal:nth-child(1) { transition-delay: 0.04s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.22s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.28s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.34s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -55%) scale(1.06); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .card-grid-3 > .card { flex: 0 1 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 > .card { flex: 0 1 100%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 110px 20px 60px; }
  .hero-short { padding-top: 100px; }
  .section { padding: 60px 20px; }
  .process-timeline::before { left: 20px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .card { padding: 28px 24px; }
  .benefit-item { padding: 16px 18px; }
}


/* ============================================
   MINIMAL NAV + LOGO CENTERING
   ============================================ */
.main-nav--minimal .nav-logo { display: none; }
.main-nav--minimal .nav-links { margin-left: auto; }
.main-nav--minimal {
  background: transparent;
  border-bottom: none;
}
.main-nav--minimal.scrolled {
  background: rgba(10, 8, 18, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}
.hero-logo-main {
  display: block;
  margin: 0 auto 28px;
  height: clamp(72px, 11vw, 150px);
  width: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .hero-logo-main { height: clamp(60px, 15vw, 100px); }
}

/* ============================================
   COOKIE CONSENT BAR
   ============================================ */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(10, 8, 18, 0.97);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 24px;
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-bar-text {
  flex: 1 1 420px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.cookie-bar-text a { color: var(--purple-300); }
.cookie-bar-text a:hover { color: var(--accent); }
.cookie-bar-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-bar-actions .btn { padding: 10px 22px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .cookie-bar-content { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-bar-actions { justify-content: center; }
}
