/* === VARIABLES === */
:root {
  --cyan: #0077b6;
  --cyan-mid: #0096c7;
  --cyan-light: #00b4d8;
  --cyan-lighter: #48cae4;
  --cyan-bg: #e8f8fc;
  --cyan-bg2: #caf0f8;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --navy: #03071e;
  --navy-mid: #1e293b;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  /* Offset para el header fijo */
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f0fbff;
  color: var(--navy);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
  box-shadow: 0 1px 0 rgba(0, 150, 199, 0.07);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg-wrap {
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: clamp(.95rem, 1.8vw, 1.18rem);
  font-weight: 900;
  color: #00214d;
  letter-spacing: -0.3px;
}

.logo-name em {
  font-style: normal;
  color: var(--cyan-mid);
}

.logo-sub {
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--cyan-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: .88rem;
  transition: color .25s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan-mid);
  transform: scaleX(0);
  transition: transform .3s;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--cyan-mid);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .83rem;
  transition: all .3s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45), 0 0 12px rgba(37, 211, 102, .25);
}

.btn-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .65), 0 0 24px rgba(37, 211, 102, .40);
  background: #1ebe5d;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
#inicio {
  min-height: calc(100vh - 68px);
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.blob1 {
  position: absolute;
  pointer-events: none;
  top: -180px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, .13) 0%, transparent 65%);
  border-radius: 50%;
}

.blob2 {
  position: absolute;
  pointer-events: none;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, .07) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: none;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1rem 0 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 150, 199, .09);
  border: 1px solid rgba(0, 180, 216, .22);
  color: var(--cyan-mid);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .4px;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-light);
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

h1.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.07;
  color: var(--navy);
  margin-bottom: 1.3rem;
  letter-spacing: -1.5px;
}

h1.hero-title .accent {
  color: var(--cyan-mid);
}

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.04rem);
  color: var(--slate);
  line-height: 1.76;
  margin-bottom: 2.2rem;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--cyan-mid), var(--cyan));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: .94rem;
  transition: all .3s;
  box-shadow: 0 8px 28px rgba(0, 150, 199, .42);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 150, 199, .55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(0, 180, 216, .28);
  color: var(--cyan-mid);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  transition: all .3s;
}

.btn-outline:hover {
  background: rgba(0, 150, 199, .07);
  border-color: var(--cyan-mid);
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hm-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hm-num span {
  color: var(--cyan-mid);
}

.hm-lbl {
  font-size: .76rem;
  color: var(--slate-light);
  margin-top: 3px;
  font-weight: 500;
}

.hm-div {
  width: 1px;
  background: rgba(0, 150, 199, .15);
  height: 32px;
  align-self: center;
}

/* Hero Right Mosaic */
.hero-right-wrap {
  position: relative;
  height: clamp(420px, calc(100vh - 130px), 640px);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.hero-left {
  position: relative;
  padding: 2.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(0, 180, 216, 0.22) 40%,
      rgba(255, 255, 255, 0.08) 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 40px rgba(0, 150, 199, .07), inset 0 0 0 0 transparent;
}

/* ── SLIDER CARD ── */
.m-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 30px rgba(0, 180, 216, .25),
    0 0 60px rgba(0, 180, 216, .10),
    0 20px 60px rgba(0, 0, 0, .18);
  background: linear-gradient(145deg, #03071e, #023e8a, #0077b6);
  transition: transform .35s, box-shadow .35s;
}

.m-card:hover {
  transform: scale(1.025);
  box-shadow:
    0 0 40px rgba(0, 180, 216, .35),
    0 0 80px rgba(0, 180, 216, .15),
    0 28px 70px rgba(0, 0, 0, .22);
}

.m-main {
  grid-row: 1/3;
}

.m-sm1,
.m-sm2 {
  box-shadow: 0 0 25px rgba(0, 180, 216, .20), 0 10px 30px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SLIDER IMAGES ── */
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity .8s ease-in-out;
  will-change: opacity;
}

.slider-img.active {
  opacity: 1;
  z-index: 2;
}

/* Floating cards */
.fc {
  position: absolute;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 180, 216, .14);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.fc1 {
  top: -12px;
  left: -20px;
  animation: floatY 3.5s ease-in-out infinite;
}

.fc2 {
  bottom: -8px;
  right: -16px;
  animation: floatY 3.5s ease-in-out infinite 1.75s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

.fc-tag {
  font-size: .66rem;
  font-weight: 600;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.fc-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
}

.fc-val em {
  font-style: normal;
  color: var(--cyan-mid);
}

.fc-bars {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  align-items: flex-end;
  height: 30px;
}

.fc-bar-item {
  width: 11px;
  border-radius: 3px 3px 0 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 4.5rem 0;
  overflow: hidden;
  background: white;
  border-top: 1px solid rgba(0, 180, 216, .08);
  border-bottom: 1px solid rgba(0, 180, 216, .08);
}

.trust-title {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 2.8rem;
}

.slider-outer {
  overflow: hidden;
  position: relative;
}

.slider-outer::before,
.slider-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.slider-outer::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.slider-outer::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: slide 36s linear infinite;
  padding: 12px 0;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 100px;
  margin: 0 14px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 180, 216, .10);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07), 0 2px 8px rgba(0, 0, 0, .04);
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  cursor: default;
  overflow: hidden;
  padding: 16px 28px;
  flex-shrink: 0;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 150, 199, .15), 0 4px 16px rgba(0, 0, 0, .06);
  border-color: rgba(0, 180, 216, .22);
}

.brand-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter .35s;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

/* ── SHARED SECTION ── */
.sec {
  padding: clamp(4rem, 7vw, 7rem) 5%;
}

.sec-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 150, 199, .09);
  border: 1px solid rgba(0, 180, 216, .22);
  color: var(--cyan-mid);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: .9rem;
  letter-spacing: .4px;
}

.sec-title {
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.8px;
}

/* ── LOCATION ── */
#ubicacion {
  background: white;
}

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

.loc-text p {
  color: var(--slate);
  line-height: 1.8;
  font-size: .98rem;
  margin-bottom: 1.2rem;
}

.loc-text p strong {
  color: var(--navy);
}

.stats-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2rem;
}

.stat-tile {
  background: var(--cyan-bg);
  border: 1px solid rgba(0, 180, 216, .14);
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  transition: all .3s;
  cursor: default;
}

.stat-tile:hover {
  background: white;
  box-shadow: 0 12px 36px rgba(0, 150, 199, .15);
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .28);
}

.st-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.st-num em {
  font-style: normal;
  color: var(--cyan-mid);
}

.st-lbl {
  font-size: .76rem;
  color: var(--slate);
  margin-top: 6px;
  font-weight: 500;
}

/* Map */
.map-box {
  background: linear-gradient(145deg, #d0f4ff, #c8effc, #d8f6ff);
  border-radius: 28px;
  height: 460px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 180, 216, .18);
  box-shadow: 0 20px 60px rgba(0, 150, 199, .12), 0 4px 16px rgba(0, 0, 0, .04);
}

.map-box svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-lbl {
  position: absolute;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  padding: 4px 11px;
  border-radius: 7px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid rgba(0, 180, 216, .15);
  white-space: nowrap;
}

.pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
  text-align: center;
  z-index: 5;
}

.pin-em {
  font-size: 2.4rem;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .22));
  animation: pinBounce 2.5s ease-in-out infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-11px)
  }
}

.pin-name {
  display: inline-block;
  background: var(--cyan-mid);
  color: white;
  padding: 3px 13px;
  border-radius: 50px;
  font-size: .67rem;
  font-weight: 800;
  margin-top: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 150, 199, .45);
}

.pulse-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.pulse-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 150, 199, .3);
  animation: pingExpand 2.5s ease-out infinite;
}

.pulse-ring::after {
  animation-delay: 1.25s;
}

@keyframes pingExpand {
  0% {
    transform: scale(.4);
    opacity: 1
  }

  100% {
    transform: scale(3.5);
    opacity: 0
  }
}

/* ── SERVICES ── */
#servicios {
  background: var(--cyan-bg);
}

.srv-hdr {
  text-align: center;
  margin-bottom: 3rem;
}

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

.srv-card {
  background: white;
  border-radius: 26px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(0, 180, 216, .09);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-mid), var(--cyan-lighter));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 150, 199, .16);
  border-color: rgba(0, 180, 216, .2);
}

.srv-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 150, 199, .1), rgba(72, 202, 228, .08));
  margin-bottom: 1.4rem;
  border: 1px solid rgba(0, 180, 216, .14);
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, .35));
  transition: filter .35s;
}

.srv-card:hover .srv-icon {
  filter: drop-shadow(0 0 16px rgba(14, 165, 233, .60));
}

.srv-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .7rem;
}

.srv-desc {
  color: var(--slate);
  line-height: 1.68;
  font-size: .9rem;
  margin-bottom: 1.3rem;
}

.srv-list {
  list-style: none;
}

.srv-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  color: var(--navy-mid);
  font-weight: 500;
  margin-bottom: 9px;
}

.srv-list li .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
  color: var(--emerald);
  font-weight: 800;
}

/* ── CONTACT (Celeste Warm) ── */
#contacto {
  padding: clamp(3.5rem, 5vw, 5rem) 5%;
  background: linear-gradient(180deg, #e0f7ff 0%, #caf0f8 40%, #ddf5fd 100%);
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, .08) 0%, transparent 70%);
  pointer-events: none;
}

#contacto::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, .07) 0%, transparent 70%);
  pointer-events: none;
}

.ct-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ct-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 180, 216, .18);
  color: var(--cyan-mid);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
}

.ct-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.12;
  letter-spacing: -.8px;
}

.ct-sub {
  color: var(--slate);
  font-size: .96rem;
  line-height: 1.72;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTON WHATSAPP GRANDE ── */
.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45), 0 0 18px rgba(37, 211, 102, .25);
  margin-top: 10px;
}

.btn-wa-big:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .65), 0 0 32px rgba(37, 211, 102, .40);
  background: #1ebe5d;
}

/* ── REDES SOCIALES ÉLITE ── */
/* FIX: fondo blanco con borde superior para que sea
   claramente visible y diferenciado de la sección #contacto */
#redes-final {
  text-align: center;
  padding: 4rem 5%;
  background: #ffffff;
  border-top: 2px solid rgba(0, 180, 216, 0.18);
  border-bottom: 2px solid rgba(0, 180, 216, 0.10);
}

.redes-titulo {
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.redes-iconos {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2.5rem;
}

/* ── GLOW ICON ── */
.glow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 180, 216, .08);
  border: 2px solid rgba(0, 180, 216, .25);
  font-size: 2rem;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.glow-icon:hover {
  background: rgba(0, 180, 216, .15);
  border-color: #00b4d8;
  box-shadow:
    0 0 25px rgba(0, 180, 216, .5),
    0 0 50px rgba(0, 180, 216, .25);
  transform: translateY(-4px) scale(1.1);
}

/* ── COMPARATIVE SECTION ── */
#comparativa {
  background: linear-gradient(180deg, #f0fbff 0%, #e1f5fe 50%, #f0fbff 100%);
  position: relative;
  overflow: hidden;
}

#comparativa::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, .08) 0%, transparent 70%);
  pointer-events: none;
}

#comparativa::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, .06) 0%, transparent 70%);
  pointer-events: none;
}

.comp-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.comp-hdr .sec-title {
  margin-bottom: .8rem;
}

.comp-subtitle {
  color: var(--slate);
  font-size: clamp(.88rem, 1.3vw, 1.02rem);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

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

.comp-card {
  border-radius: 28px;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  position: relative;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.comp-card-trad {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.comp-card-trad .comp-card-title {
  color: #6b7280;
}

.comp-card-trad .comp-card-icon {
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  color: #9ca3af;
}

.comp-card-trad .comp-item-icon {
  background: rgba(239, 68, 68, .1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, .15);
}

.comp-card-trad .comp-item-text {
  color: #6b7280;
}

.comp-card-led {
  background: linear-gradient(145deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
  border: 1px solid rgba(0, 180, 216, .6);
  box-shadow: 0 12px 50px rgba(0, 150, 199, .5), 0 0 20px rgba(0, 180, 216, .3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: scale(1.02);
}

.comp-card-led::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(72, 202, 228, .25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.comp-card-led>* {
  position: relative;
  z-index: 2;
}

.comp-card-led:hover {
  transform: scale(1.06);
  box-shadow: 0 24px 70px rgba(0, 150, 199, .6), 0 0 50px rgba(0, 180, 216, .5);
}

.comp-card-led .comp-card-title {
  color: #ffffff;
}

.comp-card-led .comp-card-icon {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(72, 202, 228, .5));
}

.comp-card-led:hover .comp-card-icon {
  filter: drop-shadow(0 0 20px rgba(72, 202, 228, .9));
}

.comp-card-led .comp-item-icon {
  background: rgba(255, 255, 255, .15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.comp-card-led:hover .comp-item-icon {
  background: rgba(255, 255, 255, .22);
}

.comp-card-led .comp-item-text {
  color: rgba(255, 255, 255, .92);
}

.comp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.comp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: filter .4s;
}

.comp-card-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.comp-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comp-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: filter .4s;
}

.comp-item-text {
  font-size: clamp(.84rem, 1.1vw, .95rem);
  font-weight: 600;
  line-height: 1.4;
}

.comp-led-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.fade-in-item {
  opacity: 0;
  animation: fadeInSeq 0.6s ease forwards;
}

@keyframes fadeInSeq {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 0 8px;
}

.comp-vs-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c0c0c0, #e8e8e8, #a8a8a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  color: #4a4a4a;
  letter-spacing: 1px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, .15),
    inset 0 2px 4px rgba(255, 255, 255, .6),
    inset 0 -2px 4px rgba(0, 0, 0, .1);
  border: 2px solid rgba(255, 255, 255, .5);
  text-shadow: 0 1px 2px rgba(255, 255, 255, .5);
  flex-shrink: 0;
  position: relative;
  animation: vsPulse 2s infinite alternate;
}

@keyframes vsPulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15), inset 0 2px 4px rgba(255, 255, 255, .6), inset 0 -2px 4px rgba(0, 0, 0, .1);
  }

  100% {
    box-shadow: 0 0 25px rgba(0, 180, 216, .6), 0 4px 25px rgba(0, 0, 0, .2), inset 0 2px 4px rgba(255, 255, 255, .8);
  }
}

.comp-vs-badge::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(192, 192, 192, .3), transparent 60%);
  z-index: -1;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.d1 {
  transition-delay: .11s
}

.d2 {
  transition-delay: .22s
}

.d3 {
  transition-delay: .33s
}

.d4 {
  transition-delay: .44s
}

/* ── FOOTER (Azul Oscuro) ── */
footer {
  background: linear-gradient(180deg, #03071e 0%, #0a1628 40%, #061224 80%, #03071e 100%);
  padding: 3.5rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 180, 216, .05) 0%, transparent 70%);
  pointer-events: none;
}

.foot-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 1;
}

.foot-logo-svg-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.foot-logo-txt-wrap {
  display: flex;
  flex-direction: column;
}

.foot-logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.foot-logo-name em {
  font-style: normal;
  color: var(--cyan-lighter);
}

.foot-logo-sub {
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--cyan-light);
  text-transform: uppercase;
  margin-top: 3px;
}

.foot-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  font-weight: 500;
  transition: color .25s;
}

a.foot-contact-item:hover {
  color: var(--cyan-lighter);
}

.foot-contact-item svg {
  flex-shrink: 0;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col-title {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.foot-col a,
.foot-col span {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  text-decoration: none;
  font-weight: 500;
  transition: color .25s;
}

.foot-col a:hover {
  color: var(--cyan-lighter);
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}

.soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s;
  border-radius: 0;
  background: none;
  border: none;
}

.soc-btn:hover {
  transform: translateY(-4px) scale(1.12);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .18));
}

.foot-copy {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ── PLANES / PRECIOS (MODERN REDESIGN) ── */
.plans-modern {
  background: linear-gradient(180deg, #f0fbff 0%, #e1f5fe 50%, #f0fbff 100%);
  position: relative;
  overflow: hidden;
  color: var(--navy);
  padding-bottom: 2rem !important;
}

.plans-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 180, 216, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
  pointer-events: none;
}

.planes-hdr-modern {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.sec-title-glow {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.planes-sub-modern {
  color: var(--slate);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.modern-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 2;
}

.m-card-plan {
  background: #ffffff;
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 150, 199, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.m-card-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15), 0 0 20px rgba(0, 180, 216, 0.05);
  border-color: rgba(0, 180, 216, 0.3);
  background: #ffffff;
  z-index: 3;
}

.mc-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.8rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.mc-repros {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mc-featured .mc-repros {
  color: #e0f7fa;
  opacity: 0.9;
}

.m-card-plan:hover .mc-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.15);
}

.mc-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: #00cfff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0, 207, 255, 0.4));
}

.m-card-plan:hover .mc-icon svg {
  filter: drop-shadow(0 0 12px rgba(0, 207, 255, 0.6));
}

/* Featured overrides for Icon */
.mc-featured .mc-icon {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mc-featured .mc-icon svg {
  stroke: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.mc-featured:hover .mc-icon {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.mc-featured:hover .mc-icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

/* --- SVG ANIMATIONS (NEW VERSIONS) --- */
.anim-speaker .speaker-wave-1 {
  animation: soundWave 1.5s infinite alternate ease-in-out;
}

.anim-speaker .speaker-wave-2 {
  animation: soundWave 1.5s infinite alternate ease-in-out 0.3s;
}

@keyframes soundWave {
  0% {
    opacity: 0.3;
    transform: scaleX(0.9) translateX(-2px);
  }

  100% {
    opacity: 1;
    transform: scaleX(1.1) translateX(2px);
  }
}

.anim-screen .screen-shine {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: screenShine 3s infinite ease-out;
}

@keyframes screenShine {

  0%,
  20% {
    stroke-dashoffset: 20;
    opacity: 0;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
    filter: drop-shadow(0 0 5px #fff);
  }

  80%,
  100% {
    stroke-dashoffset: -20;
    opacity: 0;
  }
}

.anim-premium-icon {
  font-size: 2.8rem;
  color: #ffde59;
  animation: premiumRotateGlow 3s infinite ease-in-out;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease;
}

@keyframes premiumRotateGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 222, 89, 0.4));
    transform: translateY(0) scale(1) rotate(0deg);
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(255, 222, 89, 0.8));
    transform: translateY(-6px) scale(1.12) rotate(6deg);
  }
}

.m-card-plan:hover .anim-premium-icon {
  animation: premiumHoverGlow 1.5s infinite alternate ease-in-out;
}

@keyframes premiumHoverGlow {
  0% {
    filter: drop-shadow(0 0 15px rgba(255, 222, 89, 0.8));
    transform: translateY(-6px) scale(1.15) rotate(0deg);
  }

  100% {
    filter: drop-shadow(0 0 35px rgba(255, 222, 89, 1));
    transform: translateY(-10px) scale(1.22) rotate(12deg);
  }
}

.mc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.mc-sub {
  font-size: 0.9rem;
  color: var(--slate-light);
  margin-bottom: 2rem;
  font-weight: 500;
}

.mc-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.mc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.4;
}

.mc-list li .chk {
  color: #25D366;
  font-weight: 900;
  font-size: 1.1rem;
}

.mc-highlight {
  font-weight: 800;
  color: #00b4d8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-wa-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  width: 100%;
}

.btn-wa-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5), 0 0 15px rgba(37, 211, 102, 0.4);
  background: #1ebe5d;
}

/* Featured Plan */
.mc-featured {
  background: linear-gradient(145deg, #023e8a 0%, #0077b6 60%, #00b4d8 100%);
  border: 1px solid rgba(0, 180, 216, 0.6);
  box-shadow: 0 15px 50px rgba(0, 150, 199, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
  transform: scale(1.06);
  z-index: 2;
  color: #fff;
}

.mc-featured .mc-title {
  color: #fff;
}

.mc-featured:hover {
  transform: scale(1.09) translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 150, 199, 0.4), 0 0 30px rgba(0, 180, 216, 0.3);
  background: linear-gradient(145deg, #034fae 0%, #008ece 60%, #00cbf2 100%);
}

.mc-featured .mc-sub {
  color: #e0f7fa;
}

.mc-featured .mc-list li {
  color: #fff;
}

.mc-featured .mc-highlight {
  color: #ffde59;
  text-shadow: 0 0 10px rgba(255, 222, 89, 0.4);
}

.mc-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 75, 43, 0.5);
  white-space: nowrap;
}

.btn-wa-glow {
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Premium Plan */
.mc-premium {
  border-color: rgba(255, 215, 0, 0.3);
}

.mc-premium:hover {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15), 0 0 20px rgba(255, 215, 0, 0.1);
}

.mc-premium .mc-highlight {
  color: #d4af37;
}

/* ── BACKGROUND VISUAL SECTION ── */
.bg-visual-sec {
  position: relative;
  height: 450px;
  background-color: #021a36;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-visual-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente: Azul oscuro profundo transicionando a un celeste suave transparente */
  background: linear-gradient(135deg, rgba(2, 26, 54, 0.85) 0%, rgba(0, 180, 216, 0.45) 100%);
  z-index: 1;
}

.bg-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
}

.bg-visual-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.bg-visual-counter {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #00cfff;
  text-shadow: 0 0 20px rgba(0, 207, 255, 0.4);
  letter-spacing: -1px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.5s;
}

.counter-done {
  transform: scale(1.08);
  text-shadow: 0 0 30px rgba(0, 207, 255, 0.8);
}

/* ── TESTIMONIALS SECTION ── */
.testimonios-modern {
  background: linear-gradient(180deg, #f0fbff 0%, #e1f5fe 50%, #f0fbff 100%);
  position: relative;
  padding-top: 1rem !important;
  overflow: hidden;
}

.testimonios-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 180, 216, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
  pointer-events: none;
}

.testim-hdr {
  color: #0A0F2C !important;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 3.5rem;
  text-align: center;
}

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

.t-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 40, 80, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 40, 80, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

.t-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.t-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0fbff, #e1f5fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00cfff;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.t-logo svg {
  width: 24px;
  height: 24px;
}

.t-company-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.t-name {
  font-weight: 800;
  color: #0A0F2C;
  font-size: 1.05rem;
}

.t-category {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t-content {
  flex-grow: 1;
  margin-bottom: 24px;
  text-align: left;
}

.t-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate);
  font-style: italic;
}

.t-rating {
  display: flex;
  gap: 6px;
}

.star-icon {
  width: 22px;
  height: 22px;
  fill: #FFD700;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  opacity: 0;
  transform: scale(0);
}

.t-card.animate-stars .star-icon {
  animation: starPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.t-card.animate-stars .star-icon:nth-child(1) {
  animation-delay: 0.1s;
}

.t-card.animate-stars .star-icon:nth-child(2) {
  animation-delay: 0.25s;
}

.t-card.animate-stars .star-icon:nth-child(3) {
  animation-delay: 0.4s;
}

.t-card.animate-stars .star-icon:nth-child(4) {
  animation-delay: 0.55s;
}

.t-card.animate-stars .star-icon:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 960px) {
  .modern-cards-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .mc-featured {
    transform: scale(1);
  }

  .mc-featured:hover {
    transform: translateY(-5px);
  }

  .testim-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3.5rem auto 0;
  }

  @keyframes popIn {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(20px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right-wrap {
    height: 380px;
    order: 2;
  }

  .hero-left {
    order: 1;
  }

  .loc-grid {
    grid-template-columns: 1fr;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .comp-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comp-vs {
    padding: 16px 0;
  }

  .comp-vs-badge {
    width: 48px;
    height: 48px;
    font-size: .85rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 5%;
    gap: 1rem;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 180, 216, .12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  }

  .hamburger {
    display: flex;
  }

  .hm-div {
    display: none;
  }
}

@media (max-width: 768px) {
  .fc1 {
    top: 5px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    transform-origin: top center;
    animation: none;
  }

  .fc2 {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    transform-origin: bottom center;
    animation: none;
  }
}

@media (max-width: 600px) {
  .hero-right-wrap {
    height: 300px;
  }

  .stats-quad {
    grid-template-columns: 1fr 1fr;
  }

  .map-box {
    height: 320px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .foot-logo-svg-wrap {
    justify-content: center;
  }

  .foot-contact-list {
    align-items: center;
  }

  .foot-col {
    align-items: center;
  }

  .socials {
    justify-content: center;
  }
}