/* ============================================
   KS AGENCY - HOJA DE ESTILOS
   ============================================ */

.ks-hero-v2 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 40%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: "img/WhatsApp-Image-2026-02-11-at-12.48.28-PM.jpg";
  background-position: center;
  background-size: cover;
  text-align: center;
}


.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--ks-pink);
  top: -10%; left: 20%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: var(--ks-purple);
  top: 30%; right: 10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px; height: 300px;
  background: var(--ks-pink-light);
  bottom: 20%; left: 10%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 15px) scale(1.08); }
}

.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

.hero-v2-title {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line.accent {
  background: linear-gradient(135deg, #F198C0 0%, #E2BEDB 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.ks-logos-container {
  overflow: hidden;
  padding: 8px 0 64px;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ks-logos-label {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ks-logos-track {
  display: flex;
  width: max-content;
  animation: ksLogoScroll 30s linear infinite;
  will-change: transform;
}
.ks-logos-container:hover .ks-logos-track { animation-play-state: paused; }
.ks-logos-slide { display: flex; align-items: center; }
.ks-logos-slide img {
  height: 90px;
  width: auto;
  margin: 0 44px;
  flex-shrink: 0;
 /*opacity: 0.55;*/
  /*filter: grayscale(100%) brightness(2.2);*/
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  backface-visibility: hidden;
}
.ks-logos-slide img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.06);
}
@keyframes ksLogoScroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.hero-v2-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 auto 48px;
  max-width: 600px;
}

.hero-v2-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.v2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.v2-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(241, 152, 192, 0.3);
  transform: translateY(-3px);
}

.v2-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #F198C0 0%, #E2BEDB 100%);
  color: #0a0a0a !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s var(--ks-transition);
  box-shadow: 0 10px 40px rgba(241, 152, 192, 0.3);
  margin-bottom: 80px;
}

.hero-v2-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(241, 152, 192, 0.5);
}

.hero-v2-cta svg {
  transition: transform 0.3s ease;
}

.hero-v2-cta:hover svg {
  transform: translateX(4px);
}

.hero-v2-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.v2-bottom-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 20px;
}

.v2-bottom-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}

.v2-radar-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#radarChart {
  max-width: 100%;
  height: auto;
}

.radar-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot.ks { background: #F198C0; }
.dot.other { background: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .hero-v2-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .v2-bottom-text p {
    margin: 0 auto;
  }
  .hero-v2-cards {
    flex-direction: column;
    align-items: center;
  }
  .v2-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .ks-hero-v2 {
    padding: 120px 16px 60px;
  }
  .hero-v2-cta {
    width: 100%;
    justify-content: center;
  }
}


@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://ksagencymkt.com/wp-content/themes/astra/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://ksagencymkt.com/wp-content/themes/astra/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

* { box-sizing: border-box; }

.ks-qs-section {
  --ks-pink: #F198C0;
  --ks-black: #1a1a1a;
  --ks-bg: #EBEBEB;
  --ks-radius: 24px;
  padding: 100px 20px;
  background-color: var(--ks-bg);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  contain: layout;
}
.ks-qs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ks-qs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 64px;
}
.ks-qs-title-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.ks-qs-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ks-qs-top-line {
  width: 60px;
  height: 2px;
  background-color: var(--ks-pink);
  flex-shrink: 0;
}
.ks-qs-eyebrow span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c76796;
}
.ks-qs-main-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.8vw, 50px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #000;
  max-width: 780px;
}
.ks-qs-main-title em {
  font-style: normal;
  color: #c76796;
}
.ks-qs-cubes {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  margin-top: 8px;
}
.ks-qs-cube-pink,
.ks-qs-cube-black {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ks-qs-cube-pink {
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--ks-pink);
}
.ks-qs-cube-black {
  right: 0;
  bottom: 0;
  background-color: var(--ks-black);
}
.ks-qs-cubes:hover .ks-qs-cube-pink { transform: translate(-4px, -4px); }
.ks-qs-cubes:hover .ks-qs-cube-black { transform: translate(4px, 4px); }

.ks-qs-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
  gap: 70px;
}

.ks-qs-col-left {
  position: relative;
}
.ks-qs-frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background-color: var(--ks-pink);
  border-radius: var(--ks-radius);
  z-index: 0;
}
.ks-qs-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ks-radius);
  background-color: #d8d8d8;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.25);
}
.ks-qs-img-wrapper.large {
  height: 560px;
}
.ks-qs-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
 /*filter: grayscale(100%);*/
  transform: scale(1.01);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: filter, transform;
}
.ks-qs-img-wrapper:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.ks-qs-img-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.ks-qs-img-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ks-pink);
}

.ks-qs-col-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.ks-qs-description {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  line-height: 1.85;
  color: #4a4a4a;
}
.ks-qs-description p { margin: 0 0 20px; }
.ks-qs-description p:last-child { margin-bottom: 0; }
.ks-qs-description strong {
  font-weight: 700;
  color: #000;
}

.ks-qs-stats {
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ks-qs-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #000;
  line-height: 1;
}
.ks-qs-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: #6b6b6b;
}

.ks-qs-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.ks-qs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 28px;
  border-radius: 999px;
  background-color: var(--ks-black);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none!important;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.ks-qs-cta:hover {
  background-color: var(--ks-pink);
  color: #000;
  transform: translateY(-2px);
}
.ks-qs-cta svg { width: 16px; height: 16px; }

.ks-qs-circle-container {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.ks-qs-rotating-box {
  width: 100%;
  height: 100%;
  animation: ksSpin 14s linear infinite;
  will-change: transform;
}
.ks-qs-svg-text {
  fill: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.ks-qs-arrow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--ks-pink);
  color: #000;
  transform: translate(-50%, -50%);
}
.ks-qs-arrow-center svg {
  width: 20px;
  height: 20px;
}
@keyframes ksSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .ks-qs-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .ks-qs-header {
    flex-direction: column;
    gap: 24px;
  }
  .ks-qs-cubes { display: none; }
  .ks-qs-frame { inset: 16px -16px -16px 16px; }
  .ks-qs-img-wrapper.large {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .ks-qs-main-title { max-width: 100%; }
}
@media (max-width: 600px) {
  .ks-qs-section { padding: 64px 16px; }
  .ks-qs-stats { gap: 24px; }
  .ks-qs-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .ks-qs-cta { width: 100%; justify-content: center; }
  .ks-qs-circle-container { align-self: center; }
}


@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://ksagencymkt.com/wp-content/themes/astra/fonts/poppins-v24-latin-700.woff2') format('woff2');
}
/* ESTILO MEJORADO DEL BOTÓN */
.ks-ux99-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 50px; /* Espacio después de la grid */
}

.ks-ux99-btn {
    background: #F198C0;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid #F198C0;
    display: inline-block;
}

.ks-ux99-btn:hover {
    background: transparent;
    color: #F198C0 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 152, 192, 0.2);
}

/* Limpieza de estilos anteriores para evitar conflictos */
.center { display: none; } /* Si ya no usas la clase vieja */
.ks-ux99-main-wrapper {
    background: #EBEBEB;
    padding: 80px 15px;
    font-family: 'Poppins', sans-serif;
}

.ks-ux99-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -50px;
}

.ks-ux99-subtitle {
    color: #F198C0;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.ks-ux99-titles {
    color: #000000 !important;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 900;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

.ks-ux99-divider {
    width: 50px; height: 5px;
    background: #F198C0;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* GRID PRINCIPAL */
.ks-ux99-master-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(auto, 480px);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.ks-ux99-item-box {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
}

.ks-ux99-item-box.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.ks-ux99-img-hold {
    width: 100%; height: 100%;
    position: relative;
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CONTENEDOR DE VIDEOS VERTICALES (1920 alto) */
.ks-ux99-video-container {
    display: flex;
    gap: 0; /* Sin espacio entre videos */
}

.ks-ux99-vimeo-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.ks-ux99-vimeo-wrapper iframe {
    position: absolute;
    top: 50%; left: 50%;
    /* Calculamos para que cubra el alto vertical sin perder proporción */
    width: 100%;
    height: 100%;
    min-width: 177.78vh; /* (16/9 * 100) para cubrir el ancho si fuera necesario */
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.ks-ux99-img-hold img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* CAPA DE HOVER */
.ks-ux99-layer {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 5;
}

.ks-ux99-logo-hover {
    max-width: 140px;
    max-height: 90px;
    object-fit: contain !important;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0) invert(1);
}

/* INTERACCIONES */
.ks-ux99-item-box:hover .ks-ux99-layer { opacity: 1; }
.ks-ux99-item-box:hover .ks-ux99-logo-hover {
    opacity: 1;
    transform: translateY(0);
}
.ks-ux99-item-box:hover .ks-ux99-img-hold { transform: scale(1.08); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .ks-ux99-master-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .ks-ux99-img-hold { aspect-ratio: 4 / 5; }
    .ks-ux99-video-container { flex-direction: column; }
    /* Ajuste de video en móvil para que no se vea estirado */
    .ks-ux99-vimeo-wrapper iframe { width: 100%; height: 300%; }
}

/* 1. FUENTE LOCAL (Sube los archivos a esta ruta vía cPanel) */
@font-face {
  font-family: 'KSFont';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://ksagencymkt.com/wp-content/themes/astra/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* 2. SECCIÓN COMPLETA DE SERVICIOS */
.ks-services-section {
  position: relative;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 55%, #141414 100%);
  padding: 110px 20px;
  overflow: hidden;
}

.ks-services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
}
.ks-services-orb.orb-a {
  width: 420px; height: 420px;
  background: var(--ks-pink);
  top: -8%; right: 5%;
}
.ks-services-orb.orb-b {
  width: 380px; height: 380px;
  background: #7C3AED;
  bottom: -10%; left: 0%;
}

.ks-services-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.ks-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ks-pink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.ks-services-eyebrow::before,
.ks-services-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--ks-pink);
}

.ks-services-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 18px;
}

.ks-services-header h2 span {
  background: linear-gradient(135deg, #F198C0 0%, #E2BEDB 60%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ks-services-header p {
  color: rgba(255,255,255,0.5);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 520px;
}

.ks-services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 10px 0;
  perspective: 2000px;
  font-family: 'KSFont', sans-serif;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .ks-services-section { padding: 70px 16px; }
  .ks-services-header { margin-bottom: 44px; }
  .ks-services-eyebrow::after { display: none; }
}

.ks-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 190, 219, 0.1);
  border-radius: 30px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  backdrop-filter: blur(15px);
  will-change: transform; /* Optimización GPU */
}

.ks-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(241, 152, 192, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.ks-service-card:hover {
  border-color: rgba(241, 152, 192, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.ks-service-card:hover .ks-glow { opacity: 1; }

/* Iconos e Imágenes */
.ks-s-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(241, 152, 192, 0.08);
  border: 1px solid rgba(241, 152, 192, 0.15);
  filter: drop-shadow(0 0 10px rgba(241, 152, 192, 0.15));
  transform: translateZ(30px);
}

.ks-s-icon img { width: 60%; height: 60%; object-fit: contain; }

.ks-service-card.featured .ks-s-icon {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
}

/* Textos con profundidad */
.ks-service-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  transform: translateZ(50px);
}

.ks-service-card p {
  color: #E2BEDB;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  transform: translateZ(40px);
}

/* Featured (Rosa) */
.ks-service-card.featured {
  background: linear-gradient(135deg, #f198c0 0%, #e2bedb 100%);
}
.ks-service-card.featured h3,
.ks-service-card.featured p { color: #000 !important; opacity: 1; }
.ks-service-card.featured img { filter: brightness(0); }

/* --- RESPONSIVE OPTIMIZADO --- */
@media (max-width: 1100px) {
  .ks-services-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
}

@media (max-width: 768px) {
  .ks-services-grid { grid-template-columns: 1fr; perspective: none; }
  .ks-service-card { transform: none !important; backdrop-filter: none; }
  .ks-glow { display: none; } /* Ahorro de CPU en móvil */
  .ks-service-card h3, .ks-service-card p { transform: none; }
}

:root {
  --ks-pink: #F198C0;
  --ks-black: #000000;
  --ks-white: #ffffff;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}

.ks-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* Transparente sobre el hero */
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 26px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

/* LOGO EN ESTADO INICIAL (sobre el hero oscuro) */
.ks-nav-logo img {
  height: 46px !important;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* Blanco sobre el hero */
  transition: filter 0.4s ease, height 0.4s ease;
}

/* REDES SOCIALES */
.ks-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ks-social-links {
  display: flex;
  gap: 15px;
  margin-right: 10px;
}

.ks-social-icon {
  color: var(--ks-white); /* Iconos blancos al inicio */
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.ks-social-icon:hover {
  color: var(--ks-pink);
  transform: translateY(-2px);
}

.ks-nav-link {
  color: var(--ks-white);
}

/* --- ESTADO AL HACER SCROLL --- */
.ks-navbar.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ks-navbar.scrolled .ks-nav-logo img {
  filter: none; /* Logo con sus colores originales */
  height: 40px !important;
}

.ks-navbar.scrolled .ks-nav-link {
  color: var(--ks-black);
}

.ks-navbar.scrolled .ks-social-icon {
  color: var(--ks-black); /* Iconos negros al hacer scroll */
}

.ks-navbar.scrolled .ks-social-icon:hover {
  color: var(--ks-pink);
}

.ks-navbar.scrolled .ks-mobile-toggle .bar {
  background: var(--ks-black);
}

.ks-navbar.scrolled .ks-nav-btn {
  box-shadow: 0 5px 15px rgba(241, 152, 192, 0.3);
}

/* BOTÓN CONTACTO */
.ks-nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Barra de progreso de scroll */
.ks-nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--ks-pink), #7C3AED);
  transition: width 0.1s ease-out;
}

/* Overlay oscuro detrás del menú móvil */
.ks-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 998;
}
.ks-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.ks-nav-btn {
  background: var(--ks-pink);
  color: white !important;
  padding: 10px 25px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.ks-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(241, 152, 192, 0.4);
}

/* MENÚ NAV */
.ks-nav-menu {
  display: flex;
  gap: 25px;
  margin-right: 20px;
}

.ks-nav-link {
  text-decoration: none;
  color: var(--ks-black);
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

/* Hover elegante */
.ks-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--ks-pink);
  transition: 0.3s;
}

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

.ks-nav-link:hover {
  color: var(--ks-pink);
}

.ks-nav-link.active {
  color: var(--ks-pink);
}
.ks-nav-link.active::after {
  width: 100%;
}

/* CTA de WhatsApp, visible solo dentro del menú móvil */
.ks-nav-mobile-cta {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ks-nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: var(--ks-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    margin: 0;
  }
  .ks-nav-menu.active {
    display: flex;
  }
  .ks-nav-menu .ks-nav-link {
    color: var(--ks-black) !important;
    font-size: 21px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(14px);
  }
  .ks-nav-menu.active .ks-nav-link {
    animation: ksNavLinkIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .ks-nav-menu.active .ks-nav-link:nth-child(1) { animation-delay: 0.08s; }
  .ks-nav-menu.active .ks-nav-link:nth-child(2) { animation-delay: 0.15s; }
  .ks-nav-menu.active .ks-nav-link:nth-child(3) { animation-delay: 0.22s; }
  .ks-nav-menu.active .ks-nav-link:nth-child(4) { animation-delay: 0.29s; }
  .ks-nav-menu .ks-nav-link::after {
    background: var(--ks-pink);
  }

  .ks-nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    background: linear-gradient(135deg, #25D366 0%, #1fb856 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    opacity: 0;
    transform: translateY(14px);
  }
  .ks-nav-menu.active .ks-nav-mobile-cta {
    animation: ksNavLinkIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.38s;
  }
  .ks-nav-mobile-cta i { font-size: 17px; }
}

@keyframes ksNavLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

/* HAMBURGUESA */
.ks-mobile-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--ks-white);
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.4s ease;
}

.ks-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.ks-mobile-toggle.active .bar {
  background: var(--ks-black) !important;
}
.ks-mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ks-mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.ks-mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.ks-menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .ks-nav-container { padding: 0 20px; }
  .ks-nav-logo img { height: 35px !important; }
  .ks-navbar.scrolled .ks-nav-logo img { height: 32px !important; }
  .ks-nav-actions { display: none; }
  .ks-mobile-toggle { display: flex; }
}

/* Scroll suave y compensación por el header fijo al navegar con anclas */
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 90px;
}

/* ============================================
   SECCIÓN DE CONTACTO
   ============================================ */

:root {
  --ks-pink: #F198C0;
  --ks-pink-light: #E2BEDB;
  --ks-purple: #7C3AED;
  --ks-black: #000000;
  --ks-dark: #1a1a1a;
  --ks-white: #ffffff;
  --ks-gray: #EBEBEB;
  --ks-dark-bg: #272727;
  --ks-text: #444444;
  --ks-transition: cubic-bezier(0.4, 0, 0.2, 1);
  --ks-radius: 30px;
  --ks-shadow: 0 10px 30px rgba(0,0,0,0.1);
  --ks-shadow-pink: 0 10px 30px rgba(241, 152, 192, 0.4);
}

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

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ks-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.ks-contact-section {
  background: black;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.ks-contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241,152,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ks-contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.ks-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ks-pink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.ks-contact-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--ks-pink);
}

.ks-contact-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ks-contact-header p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.ks-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.ks-whatsapp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ks-whatsapp-card:hover {
  border-color: rgba(241, 152, 192, 0.2);
  background: rgba(255,255,255,0.05);
}

.ks-whatsapp-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(241,152,192,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ks-wa-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ks-wa-icon svg {
  width: 28px;
  height: 28px;
  fill: #25D366;
}

.ks-whatsapp-card h3 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ks-whatsapp-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ks-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  width: fit-content;
}

.ks-wa-btn:hover {
  background: #25D366;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.ks-wa-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ks-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ks-form-card:hover {
  border-color: rgba(241, 152, 192, 0.2);
  background: rgba(255,255,255,0.05);
}

.ks-form-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(241,152,192,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ks-form-card h3 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ks-form-card > p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 28px;
}

.ks-form-dark .ks-form-group {
  margin-bottom: 16px;
}

.ks-form-dark label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.ks-form-dark input,
.ks-form-dark select,
.ks-form-dark textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 14px;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.ks-form-dark input::placeholder,
.ks-form-dark textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.ks-form-dark input:focus,
.ks-form-dark select:focus,
.ks-form-dark textarea:focus {
  outline: none;
  border-color: var(--ks-pink);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(241, 152, 192, 0.1);
}

.ks-form-dark select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' 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 14px center;
  padding-right: 40px;
}

.ks-form-dark select option {
  background: #1a1a1a;
  color: #ffffff;
}

.ks-form-row-dark {
  display: flex;
  gap: 12px;
}

.ks-form-row-dark .ks-form-group {
  flex: 1;
}

.ks-btn-pink {
  width: 100%;
  background: linear-gradient(135deg, var(--ks-pink) 0%, var(--ks-purple) 100%);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--ks-shadow-pink);
}

.ks-btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(241, 152, 192, 0.5);
  filter: brightness(1.1);
}

.ks-btn-pink:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ks-form-status {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  display: none;
}

.ks-form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.ks-form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ks-animation-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.circle-scope {
  width: 100%;
  height: 100%;
  position: relative;
}

.circle-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.circle-base, .circle-top, .circle-center {
  position: absolute;
  left: 50%;
  object-fit: contain;
}

.circle-base, .circle-top {
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.88);
}

.circle-base {
  z-index: 1;
  animation: rotate-slow 30s linear infinite;
}

.circle-top {
  z-index: 2;
  animation: rotate-slow-reverse 25s linear infinite;
}

.circle-center {
  top: 56%;
  width: 75%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.circle-front-wrapper {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.circle-front {
  width: 85%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) scale(0.88) rotate(0deg); }
  to { transform: translate(-50%, -50%) scale(0.88) rotate(360deg); }
}

@keyframes rotate-slow-reverse {
  from { transform: translate(-50%, -50%) scale(0.88) rotate(360deg); }
  to { transform: translate(-50%, -50%) scale(0.88) rotate(0deg); }
}

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

.circle-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.circle-icon {
  position: absolute;
  width: 45px;
  height: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.icon-1 { transform: translate(-50%, -50%) translate(110px, -35px); }
.icon-2 { transform: translate(-50%, -50%) translate(-130px, -25px); }
.icon-3 { transform: translate(-50%, -50%) translate(0px, 125px); }
.icon-4 { transform: translate(-50%, -50%) translate(70px, 60px); }
.icon-5 { transform: translate(-50%, -50%) translate(-10px, -120px); }

.icon-heart {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: heartBeat 3.5s ease-in-out infinite;
  transform-origin: center;
}

.icon-1 .icon-heart { animation-delay: 0s; }
.icon-2 .icon-heart { animation-delay: 0.7s; }
.icon-3 .icon-heart { animation-delay: 1.4s; }
.icon-4 .icon-heart { animation-delay: 2.1s; }
.icon-5 .icon-heart { animation-delay: 2.8s; }

@keyframes heartBeat {
  0% { transform: scale(1); }
  15% { transform: scale(1.08); }
  30% { transform: scale(1); }
  45% { transform: scale(1.12); }
  60% { transform: scale(1); }
  100% { transform: scale(1); }
}

@media (max-width: 1024px) {
  .ks-contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .ks-animation-wrap {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .ks-contact-section {
    padding: 60px 16px 80px;
  }

  .ks-contact-header {
    margin-bottom: 40px;
  }

  .ks-whatsapp-card,
  .ks-form-card {
    padding: 28px 24px;
  }

  .ks-form-row-dark {
    flex-direction: column;
    gap: 0;
  }

  .ks-animation-wrap {
    width: 220px;
    height: 220px;
    opacity: 0.1;
  }

  .circle-icon {
    width: 32px;
    height: 24px;
  }

  .icon-1 { transform: translate(-50%, -50%) translate(75px, -25px); }
  .icon-2 { transform: translate(-50%, -50%) translate(-90px, -15px); }
  .icon-3 { transform: translate(-50%, -50%) translate(0px, 85px); }
  .icon-4 { transform: translate(-50%, -50%) translate(50px, 40px); }
  .icon-5 { transform: translate(-50%, -50%) translate(-10px, -80px); }
}

@media (max-width: 480px) {
  .ks-contact-header h2 {
    font-size: 24px;
  }

  .ks-whatsapp-card h3,
  .ks-form-card h3 {
    font-size: 18px;
  }
}

/* Spinner del botón de envío */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   FOOTER
   ============================================ */
.ks-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
}

.ks-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ks-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ks-footer-brand img {
  height: 42px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.ks-footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
  margin: 0 0 26px;
}

.ks-footer-social {
  display: flex;
  gap: 12px;
}

.ks-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ks-footer-social a:hover {
  background: var(--ks-pink);
  border-color: var(--ks-pink);
  color: #0a0a0a;
  transform: translateY(-3px);
}

.ks-footer-col h4 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 22px;
}

.ks-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
}

.ks-footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
}

.ks-footer-col a:hover {
  color: var(--ks-pink);
  transform: translateX(3px);
}

.ks-footer-col .ks-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
}

.ks-footer-col .ks-footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--ks-pink);
}

.ks-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.ks-footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
}

.ks-footer-bottom a:hover {
  color: var(--ks-pink);
}

.ks-footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ks-footer-back-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(241, 152, 192, 0.08);
  border: 1px solid rgba(241, 152, 192, 0.25);
  color: var(--ks-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ks-footer-back-top:hover {
  background: var(--ks-pink);
  color: #0a0a0a;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .ks-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
  .ks-footer-brand {
    grid-column: 1 / -1;
  }
  .ks-footer-brand p { max-width: 100%; }
}

@media (max-width: 560px) {
  .ks-footer { padding: 60px 16px 0; }
  .ks-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ks-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}






