/* --- Global --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed navbar */
}
/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 1.5rem 0;
}
.navbar.scrolled {
  background: rgba(5, 0, 15, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196,174,255,0.12);
  padding: 1rem 0;
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar__logo img {
  height: 64px;
  width: auto;
}
.navbar__nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .navbar__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.navbar__nav a {
  color: var(--color-text-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.navbar__nav a:hover {
  color: var(--color-lavender);
}
.navbar__nav .mobile-cta {
  display: none;
}
.navbar__cta {
  padding: 0.6rem 1.25rem;
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .navbar__cta {
    font-size: 11px !important;
    padding: 0.4rem 0.6rem !important;
  }
}
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 24px;
  position: relative;
  z-index: 1001;
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar__hamburger span:nth-child(1) { top: 2px; }
.navbar__hamburger span:nth-child(2) { top: 11px; }
.navbar__hamburger span:nth-child(3) { top: 20px; }

.navbar__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.navbar__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Mobile Nav */
@media (max-width: 1279px) { /* Up to tablet */
  .navbar__nav {
    display: none;
  }
  .navbar__cta {
    display: none !important;
  }
  .navbar__hamburger {
    display: block;
  }
  .navbar__nav.mobile-active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 100vw;
    background: var(--color-dark);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid var(--color-lavender-dim);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .navbar__nav.mobile-active.slide-in {
    transform: translateX(0);
  }
  .navbar__nav.mobile-active > a {
    font-size: var(--text-lg);
    padding: 0.5rem 0;
  }
  .navbar__nav.mobile-active .mobile-cta {
    display: inline-flex;
    margin-top: auto;
    width: 100%;
    font-size: var(--text-base);
  }
  /* Fix: forzar fondo oscuro en el header cuando el menú está abierto */
  body.menu-open .navbar {
    background: var(--color-dark) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Overlay for mobile menu */
.nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* --- HERO --- */
#hero {
  min-height: 100svh;
  background: var(--color-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74,61,176,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(45,0,133,0.15) 0%, transparent 70%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero__canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__content {
  max-width: 650px; 
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1.5rem 0;
}
.hero__title-accent {
  color: var(--color-lavender);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}
.hero__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-muted-dark);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.hero__social-proof {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-pill {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-muted-dark);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.proof-pill span {
  color: var(--color-brand-light);
}

@media (max-width: 767px) {
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero__content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__tagline {
    margin: 0 auto 2.5rem;
  }
  .hero__actions {
    justify-content: center;
    width: 100%;
  }
  .hero__actions .btn-primary, .hero__actions .btn-secondary {
    width: 100%;
  }
  .hero__social-proof {
    justify-content: center;
    gap: 1rem;
  }
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--color-dark-alt);
  padding: 3rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-stat__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-lavender);
  line-height: 1;
}
.trust-stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-muted-dark);
  max-width: 250px;
  line-height: 1.5;
}
.trust-bar__caption {
  text-align: center;
  color: rgba(196,174,255, 0.6);
  font-size: var(--text-sm);
  margin-top: 2rem;
}

@media (max-width: 1023px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .trust-bar__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trust-stat__label {
    margin: 0 auto;
  }
}

/* --- SERVICIOS --- */
.servicios {
  background: var(--color-surface);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 860px;
  margin-inline: auto;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin: 1rem 0;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.6;
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  padding: 2rem;
  transition: all var(--transition-base);
  border-left: 1.5px solid var(--color-border);
}
.service-card:hover {
  border-color: var(--color-brand-mid);
  border-left: 4px solid var(--color-brand);
  box-shadow: 0 20px 40px -10px rgba(74,61,176,0.15);
  transform: translateY(-8px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-brand-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: 1.5rem;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-brand);
  text-decoration: none;
  transition: transform var(--transition-fast);
}
.service-card__link:hover {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .servicios__grid {
    grid-template-columns: 1fr;
  }
}

/* --- PROCESO --- */
.proceso {
  background: var(--color-white);
}
.proceso__timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.proceso__line {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.proceso__step {
  position: relative;
  z-index: 1;
  width: 23%;
  background: var(--color-white); /* To mask the line */
}
.proceso__number {
  width: 48px;
  height: 48px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}
.proceso__step:hover .proceso__number {
  background: var(--color-brand-mid);
  box-shadow: 0 0 0 6px var(--color-brand-pale);
}
.proceso__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
  color: var(--color-text);
}
.proceso__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .proceso__timeline {
    flex-direction: column;
    gap: 2rem;
  }
  .proceso__line {
    width: 2px;
    height: 100%;
    left: 23px;
    top: 0;
  }
  .proceso__step {
    width: 100%;
    padding-left: 4rem;
    position: relative;
    background: transparent;
  }
  .proceso__number {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
}

/* --- INDUSTRIAS --- */
.industrias {
  background: var(--color-surface);
}
.industrias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industria-card {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-base);
}
.industria-card:hover {
  background: var(--color-brand-pale);
  border-color: var(--color-brand-mid);
}
.industria-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-brand-pale);
  color: var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.industria-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.industria-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .industrias__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .industrias__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .industria-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
  .industrias__grid::-webkit-scrollbar {
    display: none;
  }
}

/* --- NOSOTROS --- */
.nosotros {
  background: var(--color-white);
}
.nosotros__grid {
  display: grid;
  grid-template-columns: 35% 60%;
  gap: 5%;
  align-items: center;
}
.nosotros__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-brand-pale) 0%, var(--color-brand-mid) 100%);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.nosotros__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  border: 1px solid var(--color-brand-pale);
  z-index: -1;
}
.nosotros__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 1rem 0;
  color: var(--color-text);
}
.nosotros__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.nosotros__signature {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.nosotros__signature strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
}
.nosotros__signature span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
}
.nosotros__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.nosotros__tools span { transition: opacity 0.3s ease, color 0.3s ease; }
.nosotros__tools:hover span { opacity: 0.4; }
.nosotros__tools span:hover { opacity: 1; color: var(--color-brand); }

@media (max-width: 767px) {
  .nosotros__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .nosotros__photo-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* --- PRECIOS --- */
.precios {
  background: var(--color-surface);
}
.precios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto 3rem;
}
.precio-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.precio-card--featured {
  border: 2px solid var(--color-brand);
  box-shadow: var(--shadow-lg);
}
.precio-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.precio-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.precio-card__price {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  color: var(--color-brand);
}
.precio-card__from {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}
.precio-card__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.1;
}
.precio-card__ideal {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.precio-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.precio-card__features li {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}
.precio-card__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
}
.precio-card__btn {
  width: 100%;
}

.precios__note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .precio-card--featured {
    margin-top: -16px;
    margin-bottom: -16px;
  }
}
@media (max-width: 1023px) {
  .precios__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* --- FAQ --- */
.faq {
  background: var(--color-white);
}
.faq__accordion {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-muted);
  transition: transform 0.3s ease;
}
.faq__icon::before {
  top: 11px; left: 4px; right: 4px; height: 2px;
}
.faq__icon::after {
  top: 4px; bottom: 4px; left: 11px; width: 2px;
}
details[open] .faq__icon::after {
  transform: rotate(90deg) scale(0);
}
details[open] .faq__icon::before {
  background: var(--color-brand);
}
details[open] .faq__question {
  color: var(--color-brand);
}
.faq__answer {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  padding: 1rem 34px 0 0;
  line-height: 1.7;
}

/* --- CONTACTO --- */
.contacto {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.contacto .container {
  position: relative;
  z-index: 1;
}
.contacto__wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(5, 0, 15, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(196, 174, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.contacto__header {
  margin-bottom: 3rem;
}
.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  position: relative; /* For validation icons */
}
.contacto__form input,
.contacto__form select,
.contacto__form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--transition-fast);
}
.contacto__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}
.contacto__form input:focus,
.contacto__form select:focus,
.contacto__form textarea:focus {
  outline: none;
  border-color: var(--color-lavender);
  box-shadow: 0 0 0 3px rgba(196,174,255,0.15);
}
.contacto__form input::placeholder,
.contacto__form textarea::placeholder {
  color: var(--color-muted-dark);
}
.contacto__form select:invalid {
  color: var(--color-muted-dark);
}
.form-submit {
  margin-top: 1rem;
  width: 100%;
}
.contacto__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.contacto__wa:hover {
  opacity: 0.8;
}
.contacto__microcopy {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-top: 1.5rem;
  font-family: var(--font-body);
}

.form-success-message {
  text-align: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: var(--color-white);
}
.form-success-icon {
  width: 48px;
  height: 48px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(196,174,255,0.05); /* subtle separation */
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__logo {
  height: 32px;
  width: auto !important;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.footer__col p {
  color: var(--color-muted-dark);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__socials a {
  color: var(--color-muted-dark);
  transition: color 0.3s ease;
}
.footer__socials a:hover {
  color: var(--color-lavender);
}
.footer__title {
  color: var(--color-lavender);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer__col a {
  display: block;
  color: var(--color-muted-dark);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.footer__col a:hover {
  color: var(--color-white);
}
.footer__hr {
  border: none;
  height: 1px;
  background: var(--color-border-dark);
  margin: 2.5rem 0 1.5rem;
}
.footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
