@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* PRIMARIOS — Negros y grises oscuros */
  --color-primary-900: #111827;     /* Negro / Gris muy oscuro */
  --color-primary-700: #374151;     /* Gris oscuro */
  --color-primary-500: #6B7280;     /* Gris medio */
  --color-primary-300: #9CA3AF;     /* Gris claro */
  --color-primary-100: #F3F4F6;     /* Gris fondo */

  /* SECUNDARIOS — Naranja */
  --color-accent-700: #C2410C;      /* Naranja oscuro */
  --color-accent-500: #F97316;      /* Naranja vibrante */
  --color-accent-300: #FDBA74;      /* Naranja claro */
  --color-accent-100: #FFF7ED;      /* Naranja muy suave */

  /* TERCIARIOS — Coral cálido para CTAs */
  --color-cta-500: #FF6B5B;
  --color-cta-700: #E04E3F;

  /* NEUTROS */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F9FAFB;
  --color-text: #111827;
  --color-text-soft: #374151;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-white: #FFFFFF;

  /* FEEDBACK */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* TYPOGRAPHY */
  --font-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --font-h2: clamp(2rem, 3vw + 1rem, 3rem);
  --font-h3: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  --font-h4: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
  --font-body: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  --font-small: 0.875rem;

  /* SPACING & RADIUS */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;
  
  --container-padding: 24px;
  --header-height: 80px;
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 48px;
  }
}

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

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: var(--color-primary-900);
  line-height: 1.2;
  margin-bottom: var(--space-4);
  font-weight: 600;
}

h1 { font-size: var(--font-h1); letter-spacing: -0.02em; }
h2 { font-size: var(--font-h2); letter-spacing: -0.01em; }
h3 { font-size: var(--font-h3); }
h4 { font-size: var(--font-h4); }

p {
  font-size: var(--font-body);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* LAYOUT & UTILS */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
}

.bg-alt { background-color: var(--color-bg-alt); }
.bg-primary { background-color: var(--color-primary-900); color: var(--color-white); }
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary p { color: var(--color-white); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-cta-500);
  color: var(--color-white);
  box-shadow: 0 4px 6px -1px rgba(255, 107, 91, 0.2), 0 2px 4px -1px rgba(255, 107, 91, 0.1);
}

.btn-primary:hover {
  background-color: var(--color-cta-700);
  box-shadow: 0 10px 15px -3px rgba(255, 107, 91, 0.3), 0 4px 6px -2px rgba(255, 107, 91, 0.15);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-900);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary-900);
  background-color: var(--color-primary-100);
}

.btn-whatsapp {
  background-color: transparent;
  color: var(--color-accent-700);
  border: 1px solid var(--color-accent-300);
}

.btn-whatsapp:hover {
  background-color: var(--color-accent-100);
  border-color: var(--color-accent-500);
}

.btn-whatsapp.solid {
  background-color: var(--color-accent-500);
  color: var(--color-white);
  border: none;
}
.btn-whatsapp.solid:hover {
  background-color: var(--color-accent-700);
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 48px;
  width: auto;
}

/* DESKTOP NAV */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
  .menu-btn { display: none; }
}

.nav-link {
  font-weight: 500;
  color: var(--color-primary-900);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* MEGA MENU */
.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  padding: var(--space-6);
  gap: var(--space-8);
  pointer-events: none;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-img {
  flex: 0 0 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mega-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu-links {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.mega-menu-item:hover {
  background: var(--color-bg-alt);
}

.mega-menu-item svg {
  color: var(--color-accent-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.mega-menu-item-title {
  font-weight: 600;
  color: var(--color-primary-900);
  display: block;
  font-size: 0.95rem;
}

.mega-menu-item-desc {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

/* MOBILE NAV */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none !important;
  }
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary-900);
  transition: all 0.3s ease;
}

.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.nav-mobile-links a {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--color-primary-900);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.nav-mobile.open .nav-mobile-links a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile.open .nav-mobile-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.open .nav-mobile-links a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-links a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.open .nav-mobile-links a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.open .nav-mobile-links a:nth-child(5) { transition-delay: 0.3s; }

.nav-mobile-footer {
  position: absolute;
  bottom: var(--space-8);
  width: 100%;
  padding: 0 var(--space-6);
  text-align: center;
}

/* STICKY BOTTOM BAR MÓVIL */
.bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  display: flex;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
  z-index: 45;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bottom-action-bar.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .bottom-action-bar { display: none; }
}

.bottom-action-bar .btn {
  flex: 1;
  border-radius: 0;
  padding: var(--space-4) 0;
  border: none;
  font-size: 0.95rem;
}
.bottom-action-bar .btn-whatsapp { border-right: 1px solid var(--color-border); }

/* HERO SECTIONS */
.hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-24);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-accent-100);
  color: var(--color-accent-700);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-small);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.text-highlight {
  color: var(--color-accent-500);
}

.hero-img-container {
  position: relative;
  margin-top: var(--space-8);
}

@media (min-width: 1024px) {
  .hero-img-container { margin-top: 0; }
}

.hero-img {
  width: 100%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.hero-blob-bg {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 120%;
  height: 120%;
  background: var(--color-primary-100);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  opacity: 0.6;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 767px) {
  .floating-card { left: 10px; bottom: 10px; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* CARDS */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent-300);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-500);
  margin-bottom: var(--space-4);
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.card-service {
  padding: 0;
  overflow: hidden;
}

.card-service-img {
  height: 240px;
  overflow: hidden;
}

.card-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-service:hover .card-service-img img {
  transform: scale(1.05);
}

.card-service-content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-service:hover .card-title {
  transform: translateY(-2px);
  color: var(--color-accent-700);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary-500);
  font-weight: 600;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.card-service:hover .arrow-link {
  gap: var(--space-3);
  color: var(--color-accent-500);
}

/* USP NUMBERS */
.usp-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-100);
  font-weight: 700;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.usp-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-900);
  margin-top: -20px;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-2);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    gap: var(--space-6);
  }
  .timeline::before {
    top: 24px;
    left: 0;
    right: 0;
    bottom: auto;
    height: 2px;
    width: 100%;
  }
}

.timeline-item {
  position: relative;
  padding-left: var(--space-12);
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-top: var(--space-12);
    flex: 1;
  }
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 2px solid var(--color-accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent-700);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* REVIEWS CAROUSEL */
.reviews-wrapper {
  overflow: hidden;
  margin: 0 calc(var(--container-padding) * -1);
  padding: var(--space-4) var(--container-padding);
}

.reviews-scroll {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--space-4);
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 400px; }
}

.stars {
  color: #FBBF24;
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
}

.stars svg { width: 20px; height: 20px; fill: currentColor; }

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-6);
}

.team-card {
  text-align: center;
}

.team-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  background: var(--color-bg-alt);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

/* MAP & CONTACT */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-primary-900);
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 3px var(--color-accent-100);
}

.form-error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--color-error);
}

.form-group.has-error .form-error {
  display: block;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary-900);
  cursor: pointer;
}

.faq-icon {
  color: var(--color-accent-500);
  transition: transform 0.3s ease;
}

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

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

.faq-answer p {
  padding-bottom: var(--space-4);
}

/* FOOTER */
.footer {
  background-color: var(--color-primary-900);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 var(--space-8) 0;
}

.footer h4 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.footer a {
  color: inherit;
}

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

.footer-links li {
  margin-bottom: var(--space-3);
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--color-accent-500);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* BLOG */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.chip {
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: all 0.2s;
  cursor: pointer;
}

.chip:hover, .chip.active {
  background: var(--color-primary-900);
  color: var(--color-white);
  border-color: var(--color-primary-900);
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card .card-service-img {
  height: 200px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.blog-meta {
  display: flex;
  gap: var(--space-4);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

/* FOCUS RINGS FOR ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid var(--color-accent-500);
  outline-offset: 2px;
}

/* UTILS MISC */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
