:root {
  --black: #05080F;
  --navy-900: #080C18;
  --navy-800: #0B1120;
  --navy-700: #0F172A;
  --navy-600: #141C30;
  --navy-500: #1E293B;
  --navy-400: #273548;
  --navy-300: #334155;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #60A5FA;
  --primary-subtle: rgba(37, 99, 235, 0.1);
  --accent: #06B6D4;
  --accent-dark: #0891B2;
  --accent-subtle: rgba(6, 182, 212, 0.1);
  --success: #10B981;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(37, 99, 235, 0.3);
  --glass: rgba(8, 12, 24, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 32px rgba(37, 99, 235, 0.3);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --header-h: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-200);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

p { color: var(--gray-400); line-height: 1.75; font-size: 1.05rem; }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray-400);
  max-width: 600px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.section { padding: 7rem 0; }
.section-light { background: var(--navy-700); }
.section-dark { background: var(--navy-800); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--primary);
}

.section-title { margin-bottom: 1.25rem; }
.section-subtitle { color: var(--gray-400); max-width: 560px; margin-bottom: 3.5rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2.5rem; }

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
  z-index: 1001;
}

.nav-toggle svg { width: 24px; height: 24px; transition: transform 0.3s var(--ease); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(32px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mobile-overlay.open { display: flex; opacity: 1; }

.mobile-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.mobile-overlay a:hover { color: var(--primary); }
.mobile-overlay .btn { margin-top: 1rem; font-size: 1.1rem; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

.hero {
  padding: calc(var(--header-h) + 5rem) 0 7rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15), transparent);
  animation: glow-float 14s ease-in-out infinite;
}

.hero-glow--2 {
  bottom: -25%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1), transparent);
  animation: glow-float-reverse 18s ease-in-out infinite;
}

.hero-glow--3 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08), transparent);
  animation: glow-float 20s ease-in-out infinite;
}

@keyframes glow-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -40px); }
  66% { transform: translate(-30px, 30px); }
}

@keyframes glow-float-reverse {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 40px); }
  66% { transform: translate(30px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 2rem;
}


.hero h1 { margin-bottom: 1.5rem; }

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead { margin-bottom: 2.5rem; color: var(--gray-400); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-trust-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-trust-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-trust-logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  color: var(--primary-light);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease);
}

.card:hover .card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.card p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 1.5rem; }

.card-features { margin: 0; padding: 0; }
.card-features li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.85rem;
  color: var(--gray-400);
  border-bottom: 1px solid var(--border);
}

.card-features li:last-child { border-bottom: none; }

.card-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-light);
  transition: gap 0.3s var(--ease);
}

.card:hover .card-link { gap: 0.75rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.value-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
  background: var(--navy-700);
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  color: var(--primary-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; color: var(--gray-400); margin: 0; line-height: 1.65; }

@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr; } }

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 60%;
  right: -20%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 1rem;
  transition: all 0.35s var(--ease-spring);
}

.process-step:hover .process-num {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: var(--shadow-glow);
}

.process-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
  .process-row { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: flex; gap: 1rem; text-align: left; align-items: flex-start; padding: 1.25rem 1rem; }
  .process-step:not(:last-child)::after { display: none; }
  .process-num { margin: 0; flex-shrink: 0; }
}

.cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta h2 { margin-bottom: 1rem; }
.cta p { color: var(--gray-400); margin-bottom: 2.5rem; }

.cta .btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta .btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--white);
  background: var(--navy-600);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  outline: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-500); }

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: var(--navy-500);
}

.form-input.is-invalid, .form-textarea.is-invalid {
  border-color: var(--danger, #EF4444);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-textarea { resize: vertical; min-height: 130px; }
.field-error { display: block; font-size: 0.75rem; color: #EF4444; font-weight: 600; margin-top: 0.35rem; }
.form-result { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-md); font-weight: 600; font-size: 0.85rem; background: var(--navy-600); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  background: var(--navy-700);
}

.contact-card:hover {
  border-color: var(--border-hover);
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
}

.contact-card-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.contact-card-value a:hover { color: var(--primary-light); }

.contact-card-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

@media (max-width: 768px) { .contact-split { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-grid h2 { margin-bottom: 1.25rem; }
.about-grid p { margin-bottom: 1.25rem; }

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-sym {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--navy-700);
}

.about-sym-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  color: var(--gray-300);
}

.about-sym-item:nth-child(1),
.about-sym-item:nth-child(4) {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--primary-light);
}

.about-sym-item:nth-child(2),
.about-sym-item:nth-child(3) {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--accent);
}

.about-sym-item:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
  background: var(--navy-700);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--primary-light); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.35s var(--ease);
}

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.faq-item.active .faq-a { max-height: 300px; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--navy-800);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo img { height: 32px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--gray-500); max-width: 300px; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  padding: 0.3rem 0;
  transition: all 0.2s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: all 0.3s var(--ease-spring);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 640px) { .whatsapp-btn { width: 46px; height: 46px; bottom: 16px; right: 16px; } }
.whatsapp-btn svg { width: 24px; height: 24px; }
@media (max-width: 640px) { .whatsapp-btn svg { width: 22px; height: 22px; } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-l {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-l.revealed { opacity: 1; transform: translateX(0); }

.reveal-r {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-r.revealed { opacity: 1; transform: translateX(0); }

.stag > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stag.revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stag.revealed > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stag.revealed > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stag.revealed > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stag.revealed > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stag.revealed > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.5rem; }
.legal h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin-bottom: 1rem; padding-left: 1.5rem; list-style: disc; }
.legal li { color: var(--gray-400); line-height: 1.7; margin-bottom: 0.5rem; }

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.error-code {
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.error-title { margin-bottom: 1rem; }
.error-text { color: var(--gray-400); max-width: 450px; margin: 0 auto 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--primary); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: calc(var(--header-h) + 3rem) 0 4rem; }
  .hero .lead { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: calc(var(--header-h) + 2.5rem) 0 3rem; }
}
