/* ========================================
   Candidato Conectado — Landing Page CSS
   Design System: Dark Mode + Glassmorphism
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800&display=swap');

/* CSS Variables */
:root {
  --deep-navy: #0A0E27;
  --royal-blue: #2563EB;
  --electric-blue: #3B82F6;
  --cyan-glow: #06B6D4;
  --emerald: #10B981;
  --amber: #F59E0B;
  --rose: #F43F5E;
  --violet: #8B5CF6;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --gradient-cta: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --gradient-hero: linear-gradient(135deg, #0A0E27 0%, #1E1B4B 50%, #0A0E27 100%);
  --gradient-popular: linear-gradient(135deg, #F59E0B 0%, #F43F5E 100%);
  --gradient-ai: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--deep-navy);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
}

a {
  color: var(--cyan-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--electric-blue);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Effects — inspired by logo's circuit/node pattern */
.bg-grid {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Circuit nodes pattern — extends logo's visual motif */
.circuit-nodes {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.circuit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.25);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

.circuit-node::before {
  content: '';
  position: absolute;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 1px;
}

/* Horizontal line going left from node */
.circuit-node--h::before {
  width: 40px;
  height: 2px;
  top: 3px;
  right: 8px;
}

/* Vertical line going down from node */
.circuit-node--v::before {
  width: 2px;
  height: 40px;
  left: 3px;
  top: 8px;
}

/* Logo glow effect for nav and footer */
.nav-logo img {
  transition: filter 0.3s ease;
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: var(--gradient-cta);
  color: white !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan-glow);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: white;
}

.hero h1 .highlight {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-cta);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
  color: white;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Section Base */
.section {
  padding: 128px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-glow);
  margin-bottom: 16px;
}

.section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* Separator */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.4) 50%,
    transparent 100%
  );
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(37, 99, 235, 0.1);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--royal-blue);
}

.feature-icon--ai {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
}

.feature-icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.feature-icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.feature-icon--rose {
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose);
}

.feature-icon--cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-glow);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Problem Section */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.problem-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.problem-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-cta);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.step h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Social Proof */
.social-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.social-number {
  text-align: center;
  padding: 32px;
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.social-number-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.social-number-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Compliance Section */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
}

.compliance-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.compliance-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Pricing */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle label {
  font-size: 0.95rem;
  color: var(--gray-500);
  cursor: pointer;
}

.pricing-toggle label.active {
  color: white;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  appearance: none;
  background: var(--gray-800);
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.toggle-switch:checked {
  background: var(--royal-blue);
}

.toggle-switch:checked::before {
  transform: translateX(24px);
}

.pricing-save {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.4);
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(37, 99, 235, 0.15);
}

.pricing-card--featured:hover {
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-popular);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pricing-features .check {
  color: var(--emerald);
  flex-shrink: 0;
}

.pricing-features .cross {
  color: var(--gray-500);
  flex-shrink: 0;
  opacity: 0.5;
}

.pricing-features .disabled {
  color: var(--gray-500);
  opacity: 0.5;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--cyan-glow);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-500);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--cyan-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Final */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 32px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  margin-bottom: 16px;
}

.cta-final p {
  color: var(--gray-500);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.cta-final .guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Countdown */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  padding: 8px 16px;
  min-width: 64px;
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .problem-cards,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card--featured {
    transform: none;
    order: -1;
  }
  .social-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .section h2 {
    font-size: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  .features-grid,
  .problem-cards,
  .steps,
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .social-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .cta-final {
    padding: 48px 24px;
    border-radius: 20px;
  }
  .countdown {
    gap: 8px;
  }
  .countdown-value {
    font-size: 1.5rem;
    padding: 6px 12px;
    min-width: 52px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--royal-blue);
  color: white;
  padding: 12px 24px;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}
