:root {
  --primary: #2338e6;
  --primary-dark: #111f9e;
  --secondary: #6a18dc;
  --accent: #ffbd13;
  --dark: #14202b;
  --text: #3d4a57;
  --muted: #6f7d8a;
  --light: #f3f8fb;
  --white: #ffffff;
  --border: #e8edf3;
  --shadow: 0 18px 45px rgba(20, 32, 43, 0.09);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(20, 32, 43, 0.08);
}

.header-content {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.logo strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 1px;
}

.logo small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #001f43;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.shape {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: 0;
}

.shape-top {
  top: 0;
  left: 0;
  width: 400px;
  height: 250px;
  border-bottom-right-radius: 100% 70%;
  transform: translateY(-45px);
}

.shape-bottom {
  right: -80px;
  bottom: -90px;
  width: 430px;
  height: 210px;
  border-top-left-radius: 100% 90%;
}

.hero-grid,
.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding-top: 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  margin-bottom: 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--white);
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  line-height: 1.22;
}

h1 {
  max-width: 730px;
  font-size: clamp(36px, 4vw, 58px);
  margin-bottom: 20px;
  letter-spacing: -1.8px;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: 19px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(35, 56, 230, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(35, 56, 230, 0.08);
}

.hero-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: min(100%, 560px);
  height: 390px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow);
  overflow: visible;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -28px;
  width: 380px;
  height: 260px;
  border-radius: 22px;
  background: var(--primary);
  opacity: 0.95;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 65px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), rgba(255,255,255,0.05));
  opacity: 0.6;
}

.hero-screen {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 330px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: #f0f2fb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: 26px 30px auto;
  height: 78px;
  border-radius: 10px;
  background: #d9dbe8;
}

.hero-screen::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 34px;
  height: 48px;
  border-radius: 10px;
  background: repeating-linear-gradient(
    90deg,
    #d9dbe8 0 48px,
    transparent 48px 66px
  );
}

.hero-panel {
  position: absolute;
  left: 78px;
  top: 75px;
  display: grid;
  gap: 12px;
}

.hero-panel span {
  width: 54px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
}

.floating-card {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-one {
  top: 28px;
  left: -20px;
}

.card-two {
  right: -25px;
  bottom: 55px;
}

.light-section {
  background: var(--light);
}

.image-box {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.mock-illustration {
  position: relative;
  width: min(100%, 520px);
  height: 380px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 36% 36%, #f9d48e 0 8%, transparent 9%),
    radial-gradient(circle at 76% 42%, #ef7e5c 0 6%, transparent 7%),
    linear-gradient(135deg, #ff9c00, #ffcf27);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-illustration::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 160px;
  height: 210px;
  transform: translateX(-50%);
  border-radius: 80px 80px 24px 24px;
  background: linear-gradient(180deg, #7131d9, #2a38e8);
  opacity: 0.9;
}

.mock-illustration::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 250px;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(141, 74, 19, 0.18);
}

.section-copy h2,
.center-heading h2,
.cta-box h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.section-copy p {
  margin-bottom: 34px;
  font-size: 18px;
}

.center-heading {
  text-align: center;
  margin-bottom: 58px;
}

.center-heading .section-label {
  margin-inline: auto;
}

.benefits-section {
  background: var(--white);
  padding-top: 76px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.benefit-item h3 {
  display: inline-block;
  position: relative;
  max-width: 340px;
  font-size: 28px;
  font-weight: 900;
}

.benefit-item h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 145px;
  height: 5px;
  transform: translateX(-50%) rotate(-2deg);
  background: #ff0b0b;
  border-radius: 999px;
}

.services-section {
  padding-top: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 255px;
  padding: 48px 42px;
  border-radius: 10px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border: 8px solid rgba(20, 32, 43, 0.05);
  transform: rotate(12deg);
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(20, 32, 43, 0.12);
}

.service-card.featured,
.service-card:hover {
  background: var(--primary);
  color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured a,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: var(--white);
}

.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: -16px auto 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-size: 30px;
  font-weight: 900;
}

.service-card.featured .service-icon,
.service-card:hover .service-icon {
  color: var(--primary);
  background: rgba(255,255,255,0.72);
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.service-card p {
  min-height: 78px;
  margin-bottom: 20px;
}

.service-card a {
  font-weight: 800;
  color: var(--dark);
}

.projects-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-card {
  min-height: 260px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-card span {
  display: inline-block;
  margin-bottom: 70px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 56, 230, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.partners-section {
  padding-top: 50px;
  padding-bottom: 110px;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 55px;
  color: var(--primary-dark);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

.partners-row span:first-child {
  color: #b11491;
}

.partners-row span:nth-child(2) {
  color: #003d75;
}

.partners-row span:nth-child(3) {
  color: #2777c7;
}

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  max-width: 700px;
}

.cta-box .section-label {
  background: rgba(255,255,255,0.14);
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.site-footer {
  background: #f1f1fa;
  padding: 64px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.92);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(35, 56, 230, 0.2);
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: 22px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 32, 43, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 120;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.whatsapp-float {
  left: 28px;
  bottom: 95px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #20d467;
  color: var(--white);
  font-size: 24px;
}

.back-to-top {
  right: 28px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--white);
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .benefits-grid,
  .projects-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0;
  }

  .header-content {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .shape-top {
    width: 280px;
    height: 180px;
  }

  .shape-bottom {
    width: 300px;
    height: 160px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-card {
    height: 320px;
  }

  .hero-card::before {
    width: 260px;
    height: 190px;
  }

  .hero-screen {
    width: 260px;
    height: 180px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 44px 26px;
  }

  .benefit-item h3 {
    font-size: 24px;
  }

  .partners-row {
    gap: 28px;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 82px;
  }

  .back-to-top {
    right: 18px;
    bottom: 20px;
  }
}

/* ==============================
   PÁGINAS INTERNAS - VANTY
============================== */

.inner-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(106, 24, 220, 0.28), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(35, 56, 230, 0.32), transparent 30%),
    linear-gradient(135deg, #061236 0%, #09184f 48%, #101f72 100%);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 72% 82%, rgba(255,255,255,0.12), transparent 24%);
  background-size: 42px 42px, auto;
  opacity: 0.35;
}

.inner-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 430px;
  height: 320px;
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 50%;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.inner-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.inner-hero p {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}

.inner-hero a {
  color: var(--white);
}

.inner-hero span {
  display: inline-block;
  margin: 0 8px;
  color: rgba(255,255,255,0.55);
}

.inner-hero strong {
  color: #8da0ff;
}

/* About main */

.about-main-section {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 72px;
}

.about-image-card {
  position: relative;
}

.about-image-placeholder {
  position: relative;
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05)),
    linear-gradient(135deg, #d9e0e7, #f3f7fb);
  box-shadow: var(--shadow);
}

.about-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 22%, rgba(20, 32, 43, 0.18), transparent 9%),
    radial-gradient(circle at 52% 38%, rgba(20, 32, 43, 0.12), transparent 18%),
    linear-gradient(180deg, transparent 0 42%, rgba(35, 56, 230, 0.08) 42% 100%);
}

.about-image-placeholder::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 250px;
  height: 330px;
  transform: translateX(-50%);
  border-radius: 120px 120px 24px 24px;
  background: linear-gradient(180deg, #c7ced7, #eef2f6);
  box-shadow: 0 24px 50px rgba(20, 32, 43, 0.12);
}

.about-image-placeholder span {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-image-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 42px;
  z-index: -1;
  width: 90%;
  height: 88%;
  border-radius: 12px;
  background: var(--primary);
}

.experience-box {
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 250px;
  padding: 28px 32px;
  border-radius: 10px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 22px 45px rgba(35, 56, 230, 0.28);
}

.experience-box strong {
  display: block;
  font-size: 52px;
  line-height: 1;
}

.experience-box span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.5vw, 50px);
}

.about-content h2 strong,
.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  margin-bottom: 18px;
  font-size: 17px;
}

.mission-vision {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.mission-vision article {
  position: relative;
  padding: 24px 28px 24px 30px;
  border-left: 3px solid var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mission-vision article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  border: 6px solid rgba(35, 56, 230, 0.08);
  border-radius: 50%;
}

.mission-vision h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.mission-vision p {
  margin-bottom: 0;
}

/* Trayectoria */

.trajectory-section {
  background: #eef5f9;
}

.narrow-container {
  max-width: 980px;
}

.trajectory-section h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(32px, 3.2vw, 46px);
}

.trajectory-section p {
  margin-bottom: 22px;
  font-size: 18px;
  color: var(--text);
}

/* Valores */

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  min-height: 285px;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  background: var(--primary);
  box-shadow: 0 24px 55px rgba(35, 56, 230, 0.18);
}

.value-card:hover h3,
.value-card:hover p,
.value-card:hover .value-icon {
  color: var(--white);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(35, 56, 230, 0.09);
  font-weight: 900;
}

.value-card:hover .value-icon {
  background: rgba(255,255,255,0.16);
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.value-card p {
  color: var(--muted);
}

/* Founder */

.founder-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.founder-box {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 40px;
  padding: 46px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-box h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
}

.founder-box p {
  margin-bottom: 16px;
  font-size: 17px;
}

.founder-card {
  padding: 34px 28px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.22), transparent 25%),
    linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 22px 45px rgba(35, 56, 230, 0.24);
}

.founder-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
}

.founder-card span {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
}

.founder-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
}

/* Footer oscuro para páginas internas */

.dark-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.82);
  background:
    radial-gradient(circle at 14% 20%, rgba(35, 56, 230, 0.35), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(106, 24, 220, 0.28), transparent 30%),
    linear-gradient(135deg, #061236 0%, #071047 50%, #030820 100%);
}

.dark-footer::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.dark-footer::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 460px;
  height: 460px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}

.dark-footer .container {
  position: relative;
  z-index: 1;
}

.dark-footer h4,
.dark-footer strong {
  color: var(--white);
}

.dark-footer a {
  color: rgba(255,255,255,0.82);
}

.dark-footer a:hover {
  color: var(--white);
}

.dark-footer .footer-logo {
  color: var(--white);
}

.dark-footer .footer-bottom {
  border-top-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.66);
}

/* Responsive páginas internas */

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .founder-box {
    grid-template-columns: 1fr;
  }

  .about-image-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .experience-box {
    left: 24px;
  }
}

@media (max-width: 760px) {
  .inner-hero {
    min-height: 260px;
    padding: 95px 0 70px;
  }

  .about-image-placeholder {
    min-height: 380px;
  }

  .about-image-placeholder span {
    font-size: 38px;
  }

  .about-image-card::after {
    right: -12px;
    top: 24px;
  }

  .experience-box {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .mission-vision article {
    padding: 22px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .founder-box {
    padding: 30px 22px;
  }
}

/* ==============================
   SERVICIOS - VANTY
============================== */

.services-intro-section {
  background: #eef5f9;
}

.services-intro-section h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.services-intro-section p {
  margin-bottom: 20px;
  font-size: 18px;
}

.services-overview-section {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  position: relative;
  padding: 38px 34px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-detail-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 10px solid rgba(35, 56, 230, 0.06);
  border-radius: 36px;
  transform: rotate(16deg);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(20, 32, 43, 0.13);
}

.service-detail-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.2), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
}

.service-detail-card.featured h3,
.service-detail-card.featured p,
.service-detail-card.featured li,
.service-detail-card.featured .service-link {
  color: var(--white);
}

.service-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(35, 56, 230, 0.09);
  font-weight: 900;
}

.service-detail-card.featured .service-detail-icon {
  color: var(--primary);
  background: var(--white);
}

.service-detail-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.service-detail-card p {
  margin-bottom: 20px;
  color: var(--text);
}

.service-detail-card ul,
.reference-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-detail-card li,
.reference-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.service-detail-card li::before,
.reference-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.service-detail-card.featured li::before {
  color: var(--white);
}

.service-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 900;
}

.service-link:hover {
  text-decoration: underline;
}

/* Bloque enfoque software */

.software-focus-section {
  background: #f8fbff;
}

.feature-list-box {
  display: grid;
  gap: 18px;
}

.feature-item {
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 18px;
}

.feature-item span {
  display: block;
  color: var(--muted);
}

/* Evaluación comercial */

.reference-section {
  background: #eef5f9;
}

.reference-section .center-heading p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.reference-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.reference-card.highlighted {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 16%, rgba(255,255,255,0.22), transparent 25%),
    linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-14px);
}

.reference-card.highlighted h3,
.reference-card.highlighted p,
.reference-card.highlighted li {
  color: var(--white);
}

.reference-card.highlighted li::before {
  color: var(--white);
}

.reference-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(35, 56, 230, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reference-card.highlighted .reference-badge {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.reference-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.reference-card p {
  margin-bottom: 22px;
}

.reference-card .btn {
  margin-top: auto;
  width: fit-content;
}

.reference-card.highlighted .btn-primary {
  color: var(--primary);
  background: var(--white);
  box-shadow: none;
}

.reference-note {
  max-width: 840px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* Proceso */

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  position: relative;
  min-height: 230px;
  padding: 30px 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(35, 56, 230, 0.06);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.process-card p {
  color: var(--muted);
}

/* Responsive servicios */

@media (max-width: 1100px) {
  .reference-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-card.highlighted {
    transform: none;
  }
}

@media (max-width: 760px) {
  .service-detail-grid,
  .reference-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .reference-card,
  .process-card {
    padding: 30px 24px;
  }

  .service-detail-card h3,
  .reference-card h3 {
    font-size: 23px;
  }
}

/* ==============================
   DESARROLLO DE SOFTWARE - VANTY
============================== */

.service-hero-section {
  background: #f8fbff;
}

.software-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.software-visual-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106, 24, 220, 0.18), rgba(35, 56, 230, 0.18));
  filter: blur(2px);
}

.software-window {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(20, 32, 43, 0.16);
  border: 1px solid rgba(35, 56, 230, 0.08);
}

.window-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}

.window-body {
  padding: 34px;
}

.dashboard-line {
  height: 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #dfe6f5;
}

.dashboard-line.large {
  width: 78%;
  height: 28px;
  background: linear-gradient(90deg, rgba(35, 56, 230, 0.18), rgba(106, 24, 220, 0.16));
}

.dashboard-line.short {
  width: 52%;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.dashboard-grid span {
  height: 92px;
  border-radius: 16px;
  background: #f0f4fb;
  border: 1px solid #e5ebf5;
}

.dashboard-grid span:nth-child(2) {
  background: rgba(35, 56, 230, 0.08);
}

.dashboard-grid span:nth-child(3) {
  background: rgba(106, 24, 220, 0.08);
}

/* Problemas */

.problem-section {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.problem-card {
  min-height: 250px;
  padding: 30px 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 24px 55px rgba(35, 56, 230, 0.18);
}

.problem-card:hover h3,
.problem-card:hover p {
  color: var(--white);
}

.problem-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.problem-card p {
  color: var(--muted);
}

/* Módulos */

.software-modules-section {
  background: #eef5f9;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  position: relative;
  min-height: 250px;
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.module-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(35, 56, 230, 0.06);
}

.module-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--primary);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.module-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.module-card p {
  color: var(--muted);
}

/* Beneficios */

.service-benefits-section {
  background: var(--white);
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit-list div {
  padding: 26px 28px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: 0 12px 32px rgba(20, 32, 43, 0.06);
}

.benefit-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-size: 18px;
}

.benefit-list span {
  display: block;
  color: var(--muted);
}

/* Proceso del servicio */

.service-process-section {
  background: #f8fbff;
}

.project-type-section {
  background: #eef5f9;
}

.project-type-section .center-heading p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
}

/* Responsive desarrollo software */

@media (max-width: 1100px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .software-visual-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .problem-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .software-window {
    width: 100%;
  }

  .window-body {
    padding: 26px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-grid span {
    height: 76px;
  }

  .problem-card,
  .module-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

/* ==============================
   AJUSTE BREADCRUMB HERO INTERNO
============================== */

.inner-hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.inner-hero-content h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.inner-hero-content p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.inner-hero-content p a,
.inner-hero-content p strong,
.inner-hero-content p span {
  display: inline-flex;
  align-items: center;
}

.inner-hero-content p span {
  margin: 0;
}

@media (max-width: 760px) {
  .inner-hero-content p {
    gap: 6px;
    font-size: 14px;
  }

  .inner-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: 1px;
  }
}

/* ==============================
   SITIOS WEB - VANTY
============================== */

.web-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.web-visual-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 56, 230, 0.16), rgba(106, 24, 220, 0.16));
  filter: blur(2px);
}

.browser-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(20, 32, 43, 0.16);
  border: 1px solid rgba(35, 56, 230, 0.08);
}

.browser-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}

.browser-content {
  padding: 34px;
}

.hero-preview {
  height: 115px;
  margin-bottom: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 30%, rgba(106, 24, 220, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(35, 56, 230, 0.12), rgba(106, 24, 220, 0.10));
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.preview-grid span {
  height: 88px;
  border-radius: 16px;
  background: #f0f4fb;
  border: 1px solid #e5ebf5;
}

.preview-grid span:nth-child(2) {
  background: rgba(35, 56, 230, 0.08);
}

.preview-grid span:nth-child(3) {
  background: rgba(106, 24, 220, 0.08);
}

.preview-line {
  height: 17px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #dfe6f5;
}

.preview-line.short {
  width: 58%;
}

@media (max-width: 1100px) {
  .web-visual-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .browser-mockup {
    width: 100%;
  }

  .browser-content {
    padding: 26px;
  }

  .hero-preview {
    height: 90px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid span {
    height: 68px;
  }
}

/* ==============================
   E-COMMERCE - VANTY
============================== */

.ecommerce-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.ecommerce-visual-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(106, 24, 220, 0.18), rgba(35, 56, 230, 0.16));
  filter: blur(2px);
}

.shop-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(20, 32, 43, 0.16);
  border: 1px solid rgba(35, 56, 230, 0.08);
}

.shop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.shop-top div {
  width: 46%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
}

.shop-top span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  position: relative;
}

.shop-top span::before {
  content: "🛒";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 21px;
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.shop-products article {
  padding: 16px;
  border-radius: 18px;
  background: #f4f7fc;
  border: 1px solid #e5ebf5;
}

.shop-products article span {
  display: block;
  height: 92px;
  margin-bottom: 14px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 28%, rgba(106, 24, 220, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(35, 56, 230, 0.12), rgba(106, 24, 220, 0.09));
}

.shop-products article strong {
  display: block;
  width: 78%;
  height: 13px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #d9e1ef;
}

.shop-products article small {
  display: block;
  width: 52%;
  height: 12px;
  border-radius: 999px;
  background: rgba(35, 56, 230, 0.18);
}

.shop-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f0f4fb;
}

.shop-cart span {
  display: block;
  width: 58%;
  height: 17px;
  border-radius: 999px;
  background: #d9e1ef;
}

.shop-cart strong {
  display: block;
  width: 120px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Responsive e-commerce */

@media (max-width: 1100px) {
  .ecommerce-visual-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .shop-mockup {
    width: 100%;
    padding: 22px;
  }

  .shop-products {
    grid-template-columns: 1fr;
  }

  .shop-products article span {
    height: 76px;
  }

  .shop-cart {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-cart span,
  .shop-cart strong {
    width: 100%;
  }
}

/* ==============================
   SOPORTE TÉCNICO - VANTY
============================== */

.support-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.support-visual-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 56, 230, 0.16), rgba(106, 24, 220, 0.18));
  filter: blur(2px);
}

.support-mockup {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(20, 32, 43, 0.16);
  border: 1px solid rgba(35, 56, 230, 0.08);
}

.support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.support-header span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  position: relative;
}

.support-header span::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
}

.support-header strong {
  display: block;
  width: 58%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
}

.support-status {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.support-status article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #f4f7fc;
  border: 1px solid #e5ebf5;
}

.support-status article span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(35, 56, 230, 0.12);
  position: relative;
}

.support-status article span::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.support-status article strong {
  display: block;
  width: 78%;
  height: 13px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #d9e1ef;
}

.support-status article small {
  display: block;
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: rgba(106, 24, 220, 0.16);
}

.support-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 20%, rgba(106, 24, 220, 0.11), transparent 28%),
    #f0f4fb;
}

.support-ticket div {
  width: 64%;
  height: 17px;
  border-radius: 999px;
  background: #d9e1ef;
}

.support-ticket span {
  width: 118px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Responsive soporte */

@media (max-width: 1100px) {
  .support-visual-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .support-mockup {
    width: 100%;
    padding: 22px;
  }

  .support-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .support-header strong {
    width: 100%;
  }

  .support-ticket {
    flex-direction: column;
    align-items: stretch;
  }

  .support-ticket div,
  .support-ticket span {
    width: 100%;
  }
}

/* ==============================
   CLIENTES Y PROYECTOS - VANTY
============================== */

.clients-intro-section {
  background: #eef5f9;
}

.clients-intro-section h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.clients-intro-section p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* Proyectos */

.project-showcase-section {
  background: var(--white);
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-showcase-card {
  position: relative;
  padding: 38px 34px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.project-showcase-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border: 10px solid rgba(35, 56, 230, 0.06);
  border-radius: 36px;
  transform: rotate(16deg);
}

.project-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(20, 32, 43, 0.13);
}

.project-showcase-card.featured-project {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.2), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
}

.project-showcase-card.featured-project h3,
.project-showcase-card.featured-project p,
.project-showcase-card.featured-project li,
.project-showcase-card.featured-project .project-tag {
  color: var(--white);
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(35, 56, 230, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-project .project-tag {
  background: rgba(255,255,255,0.18);
}

.project-showcase-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.project-showcase-card p {
  margin-bottom: 22px;
  color: var(--text);
}

.project-showcase-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-showcase-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.project-showcase-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.featured-project li::before {
  color: var(--white);
}

/* Logos / clientes */

.client-logos-section {
  background: #eef5f9;
}

.client-logos-section .center-heading p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.client-logo-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 24px 55px rgba(35, 56, 230, 0.18);
}

.client-logo-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 20px;
}

.client-logo-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.client-logo-card:hover strong,
.client-logo-card:hover span {
  color: var(--white);
}

/* Resultados */

.results-section {
  background: var(--white);
}

/* Responsive clientes */

@media (max-width: 1100px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .project-showcase-card {
    padding: 30px 24px;
  }

  .project-showcase-card h3 {
    font-size: 23px;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-card {
    min-height: 140px;
  }
}

/* ==============================
   CONTACTO - VANTY
============================== */

.contact-intro-section {
  background: #eef5f9;
}

.contact-intro-section h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.contact-intro-section p {
  margin-bottom: 20px;
  font-size: 18px;
}

.contact-main-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.2), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.contact-info-panel .section-label {
  color: rgba(255,255,255,0.82);
}

.contact-info-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
}

.contact-info-panel p {
  color: rgba(255,255,255,0.82);
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.contact-info-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.contact-info-item:hover {
  background: rgba(255,255,255,0.18);
}

.contact-info-item span {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  font-size: 20px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 16px;
}

.contact-info-item small {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.contact-note {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 17px;
}

.contact-note p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

/* Formulario */

.contact-form-panel {
  padding: 42px 36px;
  background: #f8fbff;
  border: 1px solid var(--border);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--dark);
  font-weight: 900;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #dce4ef;
  border-radius: 14px;
  background: var(--white);
  color: var(--dark);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(35, 56, 230, 0.1);
}

.contact-form .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Servicios contacto */

.contact-services-section {
  background: #eef5f9;
}

/* Responsive contacto */

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    align-items: flex-start;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   MENÚ DROPDOWN SERVICIOS
============================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle span {
  font-size: 12px;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 50;
  min-width: 240px;
  padding: 10px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 55px rgba(20, 32, 43, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(35, 56, 230, 0.08);
}

/* Responsive dropdown */

@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    background: rgba(35, 56, 230, 0.06);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 11px 12px;
  }
}

/* ==============================
   GRACIAS - VANTY
============================== */

.thanks-section {
  background: #eef5f9;
}

.thanks-box {
  max-width: 840px;
  margin: 0 auto;
  padding: 58px 42px;
  border-radius: 28px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.thanks-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(35, 56, 230, 0.24);
}

.thanks-box h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.4vw, 48px);
}

.thanks-box p {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: 18px;
  color: var(--text);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

@media (max-width: 760px) {
  .thanks-box {
    padding: 42px 24px;
  }

  .thanks-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   LOGOS VANTY
============================== */

.logo-image {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}

.logo-image img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.footer-logo-image {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-image img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* Oculta estilos antiguos del logo textual si ya no se usan */
.logo-image .logo-mark {
  display: none;
}

@media (max-width: 760px) {
  .logo-image img {
    width: 170px;
  }

  .footer-logo-image img {
    width: 190px;
  }
}

/* ==============================
   DARK MODE - VANTY CORREGIDO
============================== */

.theme-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 56, 230, 0.09);
  color: var(--primary);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: rgba(35, 56, 230, 0.16);
}

/* Base general */
html[data-theme="dark"] body {
  background: #071026;
  color: #d8e0ec;
}

/* Header */
html[data-theme="dark"] .site-header {
  background: rgba(7, 16, 38, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .main-nav a {
  color: #ffffff;
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a.active {
  color: #8da0ff;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Secciones claras pasan a fondo oscuro */
html[data-theme="dark"] .hero,
html[data-theme="dark"] .section,
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .about-main-section,
html[data-theme="dark"] .services-intro-section,
html[data-theme="dark"] .services-overview-section,
html[data-theme="dark"] .clients-intro-section,
html[data-theme="dark"] .contact-intro-section,
html[data-theme="dark"] .trajectory-section,
html[data-theme="dark"] .software-modules-section,
html[data-theme="dark"] .reference-section,
html[data-theme="dark"] .project-type-section,
html[data-theme="dark"] .thanks-section,
html[data-theme="dark"] .contact-services-section,
html[data-theme="dark"] .project-showcase-section,
html[data-theme="dark"] .results-section,
html[data-theme="dark"] .contact-main-section,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .problem-section,
html[data-theme="dark"] .service-benefits-section,
html[data-theme="dark"] .service-hero-section,
html[data-theme="dark"] .software-focus-section,
html[data-theme="dark"] .founder-section {
  background: #071026;
}

/* Alternancia suave para algunas secciones */
html[data-theme="dark"] .services-overview-section,
html[data-theme="dark"] .problem-section,
html[data-theme="dark"] .service-benefits-section,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .results-section,
html[data-theme="dark"] .contact-main-section {
  background: #0a1430;
}

/* Títulos y textos */
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4 {
  color: #ffffff;
}

html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] span,
html[data-theme="dark"] small {
  color: #d8e0ec;
}

html[data-theme="dark"] .section-label {
  color: #ffffff;
  background: #2338e6;
}

/* Cards */
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .reference-card,
html[data-theme="dark"] .process-card,
html[data-theme="dark"] .module-card,
html[data-theme="dark"] .problem-card,
html[data-theme="dark"] .project-showcase-card,
html[data-theme="dark"] .client-logo-card,
html[data-theme="dark"] .mission-vision article,
html[data-theme="dark"] .feature-item,
html[data-theme="dark"] .benefit-list div,
html[data-theme="dark"] .contact-form-panel,
html[data-theme="dark"] .thanks-box,
html[data-theme="dark"] .founder-box {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .service-card h3,
html[data-theme="dark"] .value-card h3,
html[data-theme="dark"] .reference-card h3,
html[data-theme="dark"] .process-card h3,
html[data-theme="dark"] .module-card h3,
html[data-theme="dark"] .problem-card h3,
html[data-theme="dark"] .project-showcase-card h3,
html[data-theme="dark"] .client-logo-card strong {
  color: #ffffff;
}

html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .value-card p,
html[data-theme="dark"] .reference-card p,
html[data-theme="dark"] .process-card p,
html[data-theme="dark"] .module-card p,
html[data-theme="dark"] .problem-card p,
html[data-theme="dark"] .project-showcase-card p,
html[data-theme="dark"] .client-logo-card span {
  color: #d8e0ec;
}

/* Cards destacadas mantienen gradiente */
html[data-theme="dark"] .service-card.featured,
html[data-theme="dark"] .reference-card.highlighted,
html[data-theme="dark"] .project-showcase-card.featured-project,
html[data-theme="dark"] .founder-card,
html[data-theme="dark"] .contact-info-panel {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Iconos servicios */
html[data-theme="dark"] .service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

html[data-theme="dark"] .service-card.featured .service-icon {
  background: #ffffff;
  color: var(--primary);
}

/* Enlaces */
html[data-theme="dark"] a {
  color: #8da0ff;
}

html[data-theme="dark"] .service-card a,
html[data-theme="dark"] .service-link {
  color: #8da0ff;
}

html[data-theme="dark"] .service-card.featured a {
  color: #ffffff;
}

/* Dropdown */
html[data-theme="dark"] .nav-dropdown-menu {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .nav-dropdown-menu::before {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .nav-dropdown-menu a {
  color: #ffffff;
}

html[data-theme="dark"] .nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #8da0ff;
}

/* Formularios */
html[data-theme="dark"] .form-group label {
  color: #ffffff;
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea {
  background: #0b1530;
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder {
  color: #8794a8;
}

/* Mockups visuales */
html[data-theme="dark"] .software-window,
html[data-theme="dark"] .browser-mockup,
html[data-theme="dark"] .shop-mockup,
html[data-theme="dark"] .support-mockup,
html[data-theme="dark"] .hero-image-card {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
}

/* CTA */
html[data-theme="dark"] .cta-box {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
}

html[data-theme="dark"] .cta-box h2,
html[data-theme="dark"] .cta-box p,
html[data-theme="dark"] .cta-box .section-label {
  color: #ffffff;
}

/* Footer se mantiene */
html[data-theme="dark"] .dark-footer {
  background:
    radial-gradient(circle at 14% 20%, rgba(35, 56, 230, 0.35), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(106, 24, 220, 0.28), transparent 30%),
    linear-gradient(135deg, #061236 0%, #071047 50%, #030820 100%);
}

/* ==============================
   FIX DARK MODE - PROYECTOS INDEX
============================== */

html[data-theme="dark"] .projects-section {
  background: #071026;
}

html[data-theme="dark"] .projects-section .center-heading h2,
html[data-theme="dark"] .projects-section .center-heading p {
  color: #ffffff;
}

html[data-theme="dark"] .project-card {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .project-card h3 {
  color: #ffffff;
}

html[data-theme="dark"] .project-card p {
  color: #d8e0ec;
}

html[data-theme="dark"] .project-card .project-category,
html[data-theme="dark"] .project-card .project-tag,
html[data-theme="dark"] .project-card span {
  color: #8da0ff;
  background: rgba(141, 160, 255, 0.12);
}

html[data-theme="dark"] .project-card::before,
html[data-theme="dark"] .project-card::after {
  opacity: 0.12;
}

html[data-theme="dark"] .project-card:hover {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(135deg, #6a18dc, #2338e6);
}

html[data-theme="dark"] .project-card:hover h3,
html[data-theme="dark"] .project-card:hover p,
html[data-theme="dark"] .project-card:hover span,
html[data-theme="dark"] .project-card:hover .project-category,
html[data-theme="dark"] .project-card:hover .project-tag {
  color: #ffffff;
}

/* ==============================
   FIX LOGO DARK MODE
============================== */

.logo-image {
  position: relative;
}

.logo-image .logo-dark {
  display: none;
}

.logo-image .logo-light {
  display: block;
}

html[data-theme="dark"] .logo-image .logo-light {
  display: none;
}

html[data-theme="dark"] .logo-image .logo-dark {
  display: block;
}

/* ==============================
   ANIMACIONES SUAVES - VANTY
============================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.value-card,
.reference-card,
.process-card,
.module-card,
.problem-card,
.project-showcase-card,
.client-logo-card {
  will-change: transform;
}

.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.service-icon {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.04);
}

/* Respeta usuarios que prefieren menos animación */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .btn,
  .service-icon,
  .service-card,
  .value-card,
  .reference-card,
  .process-card,
  .module-card,
  .problem-card,
  .project-showcase-card,
  .client-logo-card {
    transition: none !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
  }
}

/* ==============================
   FIX DARK MODE - MENÚ MÓVIL
============================== */

@media (max-width: 900px) {
  html[data-theme="dark"] .main-nav {
    background: #101d3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  }

  html[data-theme="dark"] .main-nav a,
  html[data-theme="dark"] .nav-dropdown-toggle {
    color: #ffffff;
  }

  html[data-theme="dark"] .main-nav a:hover,
  html[data-theme="dark"] .nav-dropdown-toggle:hover {
    color: #8da0ff;
  }

  html[data-theme="dark"] .nav-dropdown-menu {
    background: #071026;
    border-color: rgba(255, 255, 255, 0.08);
  }

  html[data-theme="dark"] .nav-dropdown-menu a {
    color: #ffffff;
  }

  html[data-theme="dark"] .nav-dropdown-menu a:hover {
    color: #8da0ff;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 900px) {
  html[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }
}

/* ==============================
   FIX DARK MODE - PÁGINA SERVICIOS
============================== */

html[data-theme="dark"] .services-overview-section {
  background: #071026;
}

html[data-theme="dark"] .service-detail-card {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .service-detail-card h3 {
  color: #ffffff;
}

html[data-theme="dark"] .service-detail-card p,
html[data-theme="dark"] .service-detail-card li {
  color: #d8e0ec;
}

html[data-theme="dark"] .service-detail-card li::before {
  color: #8da0ff;
}

html[data-theme="dark"] .service-detail-card .service-link {
  color: #8da0ff;
}

html[data-theme="dark"] .service-detail-icon {
  background: rgba(141, 160, 255, 0.12);
  color: #8da0ff;
}

/* La card destacada mantiene el gradiente */
html[data-theme="dark"] .service-detail-card.featured {
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .service-detail-card.featured h3,
html[data-theme="dark"] .service-detail-card.featured p,
html[data-theme="dark"] .service-detail-card.featured li,
html[data-theme="dark"] .service-detail-card.featured .service-link {
  color: #ffffff;
}

html[data-theme="dark"] .service-detail-card.featured li::before {
  color: #ffffff;
}

html[data-theme="dark"] .service-detail-card.featured .service-detail-icon {
  background: #ffffff;
  color: var(--primary);
}

html[data-theme="dark"] .service-detail-card::after {
  border-color: rgba(141, 160, 255, 0.08);
}

/* ==============================
   BOTONES RÁPIDOS HEADER
============================== */

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35, 56, 230, 0.09);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-action-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #ffffff;
}

/* Dark mode */
html[data-theme="dark"] .nav-action-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

html[data-theme="dark"] .nav-action-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-action-btn {
    width: 100%;
    min-height: 44px;
  }

  .nav-actions .theme-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .nav-actions {
    grid-template-columns: 1fr;
  }

  .nav-actions .theme-toggle {
    width: 100%;
    border-radius: 999px;
  }
}

/* ==============================
   SECCIÓN PROFESIONAL INDEX
============================== */

.professional-section {
  background: #f4f7fc;
}

.professional-image-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(106, 24, 220, 0.12), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(35, 56, 230, 0.12), transparent 30%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(20, 32, 43, 0.12);
  overflow: hidden;
}

.professional-image-card::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(35, 56, 230, 0.12);
}

.professional-image-card::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(106, 24, 220, 0.1);
}

.professional-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
}

/* Dark mode */
html[data-theme="dark"] .professional-section {
  background: #071026;
}

html[data-theme="dark"] .professional-image-card {
  background:
    radial-gradient(circle at 18% 18%, rgba(106, 24, 220, 0.18), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(35, 56, 230, 0.16), transparent 30%),
    #101d3d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

/* Responsive */
@media (max-width: 900px) {
  .professional-image-card {
    max-width: 620px;
    min-height: auto;
    margin: 0 auto;
    padding: 20px;
  }

  .professional-image-card img {
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .professional-image-card {
    padding: 14px;
    border-radius: 22px;
  }

  .professional-image-card img {
    border-radius: 18px;
  }
}

/* ==============================
   PLANES DE SOPORTE - VANTY
============================== */

.support-plans-grid {
  align-items: stretch;
}

.support-plan-card {
  min-height: 100%;
}

.support-price {
  display: grid;
  gap: 2px;
  margin: 12px 0 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(35, 56, 230, 0.08);
}

.support-price strong {
  color: var(--primary);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -1.4px;
}

.support-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-card.highlighted .support-price {
  background: rgba(255, 255, 255, 0.95);
}

.reference-card.highlighted .support-price strong {
  color: var(--primary);
}

.reference-card.highlighted .support-price span {
  color: var(--dark);
}

.support-plan-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.support-plan-info article {
  padding: 26px 28px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-plan-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.support-plan-info p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.support-addons-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 24px 55px rgba(35, 56, 230, 0.18);
}

.support-addons-box h3,
.support-addons-box p,
.support-addons-box li,
.support-addons-box strong {
  color: var(--white);
}

.support-addons-box h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.5vw, 34px);
}

.support-addons-box p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.support-addons-box .section-label {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.support-addons-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-addons-box li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.86);
}

.support-addons-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  font-weight: 900;
}

/* Dark mode planes soporte */

html[data-theme="dark"] .support-price {
  background: rgba(141, 160, 255, 0.12);
}

html[data-theme="dark"] .support-price strong {
  color: #8da0ff;
}

html[data-theme="dark"] .support-price span {
  color: #d8e0ec;
}

html[data-theme="dark"] .reference-card.highlighted .support-price {
  background: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .reference-card.highlighted .support-price strong {
  color: var(--primary);
}

html[data-theme="dark"] .reference-card.highlighted .support-price span {
  color: var(--dark);
}

html[data-theme="dark"] .support-plan-info article {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .support-plan-info h3 {
  color: #ffffff;
}

html[data-theme="dark"] .support-plan-info p {
  color: #d8e0ec;
}

/* Responsive planes soporte */

@media (max-width: 1100px) {
  .support-plan-info,
  .support-addons-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .support-price {
    padding: 16px 18px;
  }

  .support-plan-info article,
  .support-addons-box {
    padding: 26px 22px;
  }

  .support-addons-box {
    gap: 24px;
  }
}

/* ==============================
   CONDICIONES Y ACORDEÓN SOPORTE
============================== */

.support-conditions-block {
  max-width: 920px;
  margin: 90px auto 0;
}

.support-conditions-header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.support-conditions-header .section-label {
  margin-inline: auto;
}

.support-conditions-header p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.support-accordion {
  display: grid;
  gap: 16px;
}

.support-accordion-item {
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(20, 32, 43, 0.08);
  overflow: hidden;
}

.support-accordion-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.support-accordion-item summary::-webkit-details-marker {
  display: none;
}

.support-accordion-item summary::after {
  content: "+";
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.support-accordion-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.support-accordion-item[open] summary::after {
  content: "−";
}

.support-accordion-content {
  padding: 22px 26px 24px;
  background: #f8fbff;
}

.support-accordion-content p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ==============================
   SERVICIOS ADICIONALES SOPORTE
============================== */

.support-addons-panel {
  max-width: 1020px;
  margin: 44px auto 0;
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-addons-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.support-addons-header h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.7vw, 36px);
}

.support-addons-header p {
  margin: 0;
  color: var(--muted);
}

.support-addons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-addons-list div {
  padding: 20px 22px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}

.support-addons-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 16px;
}

.support-addons-list span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

/* Dark mode */

html[data-theme="dark"] .support-conditions-header p {
  color: #d8e0ec;
}

html[data-theme="dark"] .support-accordion-item,
html[data-theme="dark"] .support-addons-panel {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .support-accordion-item summary {
  color: #ffffff;
}

html[data-theme="dark"] .support-accordion-item[open] summary {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .support-accordion-content,
html[data-theme="dark"] .support-addons-list div {
  background: #0b1530;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .support-accordion-content p,
html[data-theme="dark"] .support-addons-header p,
html[data-theme="dark"] .support-addons-list span {
  color: #d8e0ec;
}

html[data-theme="dark"] .support-addons-list strong {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 760px) {
  .support-conditions-block {
    margin-top: 64px;
  }

  .support-accordion-item summary {
    padding: 20px 22px;
    font-size: 16px;
  }

  .support-accordion-content {
    padding: 20px 22px 22px;
  }

  .support-addons-panel {
    padding: 26px 22px;
  }

  .support-addons-list {
    grid-template-columns: 1fr;
  }
}