/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #333;
}

p {
  font-size: 12px !important;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOPNAV */
.topnav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 1100;
  height: 40px;
  display: flex;
  align-items: center;
}

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

.topnav-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.topnav-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.topnav-link:hover {
  opacity: 0.75;
}

.topnav-icon {
  color: #e31c23;
}

.topnav-ticker {
  flex: 1;
  overflow: hidden;
  margin-left: 30px;
}

.ticker-text {
  display: inline-block;
  white-space: nowrap;
  color: #ffd700;
  font-size: 13px;
  font-weight: 500;
  animation: tickerMove 22s linear infinite;
}

@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAVBAR */
.header {
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1000;
  background: transparent;
  transition: 0.3s;
}

.header.sticky {
  background: #ff5f6d;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  color: white;
  font-size: 22px;
  text-decoration: none;
}

.nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

/* BOTONES */
.btn-primary {
  background: white;
  color: #ff5f6d;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: floatBtn 3s ease-in-out infinite;
}

.btn-outline:hover {
  background: #6d0026;
  color: #fff;
  border-color: #6d0026;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  animation: none;
}

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

body.modal-open {
  overflow: hidden;
}

/* MODAL AUTENTICACIÓN */
.auth-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2500;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 25, 40, 0.72);
  backdrop-filter: blur(3px);
}

.auth-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  z-index: 1;
}

.auth-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff5f6d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(255, 95, 109, 0.35);
}

.auth-shell {
  min-height: 440px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38% 62%;
  box-shadow: 0 34px 80px rgba(10, 18, 32, 0.28);
}

.auth-shell__aside {
  position: relative;
  background: #25282f;
  padding: 42px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-shell__aside::before,
.auth-shell__aside::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.auth-shell__aside::before {
  width: 180px;
  height: 180px;
  top: -55px;
  right: -45px;
}

.auth-shell__aside::after {
  width: 160px;
  height: 160px;
  bottom: -80px;
  left: -50px;
}

.auth-aside-panel {
  position: absolute;
  inset: 42px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.auth-aside-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-aside-panel h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.auth-aside-panel p {
  font-size: 14px !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 220px;
  margin-bottom: 24px;
}

.auth-switch-btn {
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #ff5f6d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-switch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 95, 109, 0.3);
}

.auth-shell__main {
  position: relative;
  background: #fff;
  padding: 42px 38px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form-panel {
  position: absolute;
  inset: 42px 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.auth-form-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-form-panel h2 {
  color: #25282f;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 700;
}

.auth-form {
  width: 100%;
  max-width: 430px;
}

.auth-form input {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  border: 2px solid #deecf5;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #25282f;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input::placeholder {
  color: #b7b7b7;
}

.auth-form input:focus {
  border-color: #ffbcc2;
  box-shadow: 0 0 0 6px rgba(255, 95, 109, 0.08);
}

.auth-forgot {
  display: inline-block;
  margin: 4px 0 20px;
  color: #8aa3c0;
  font-size: 14px;
  text-decoration: none;
}

.auth-submit-btn {
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #ff5f6d;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255, 95, 109, 0.28);
}

@media (max-width: 992px) {
  .auth-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .auth-shell__aside,
  .auth-shell__main {
    padding: 44px 28px;
  }

  .auth-shell__aside {
    min-height: 300px;
  }

  .auth-aside-panel,
  .auth-form-panel {
    position: relative;
    inset: auto;
  }

  .auth-form-panel {
    min-height: 0;
  }

  .auth-aside-panel h3,
  .auth-form-panel h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .auth-aside-panel p {
    font-size: 20px !important;
    max-width: 100%;
  }

  .auth-switch-btn,
  .auth-submit-btn {
    min-width: 220px;
    font-size: 22px;
  }

  .auth-form input {
    height: 78px;
    font-size: 22px;
    padding: 0 26px;
  }

  .auth-forgot {
    font-size: 19px;
  }
}

@media (max-width: 640px) {
  .auth-modal {
    padding: 14px;
  }

  .auth-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .auth-shell__aside,
  .auth-shell__main {
    padding: 32px 18px;
  }

  .auth-shell__aside {
    min-height: 250px;
  }

  .auth-aside-panel h3,
  .auth-form-panel h2 {
    font-size: 31px;
  }

  .auth-aside-panel p {
    font-size: 17px !important;
    margin-bottom: 26px;
  }

  .auth-form input {
    height: 64px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .auth-forgot {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .auth-switch-btn,
  .auth-submit-btn {
    width: 100%;
    min-width: 0;
    font-size: 18px;
    padding: 16px 24px;
  }
}

/* BOTÓN SCROLL TOP */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,95,109,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255,95,109,0.55);
}

/* BOTÓN WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 999;
  animation: glowWA 2.2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(37,211,102,0.55);
  animation: none;
}

@keyframes glowWA {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px 8px rgba(37,211,102,0.75); }
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: white;
  padding-top: 120px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEXTO HERO */
.hero-text {
  max-width: 500px;
  animation: fadeUp 1s ease;
}

.hero-text h1 {
  font-size: 42px;
  margin: 20px 0;
}

.hero-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
}

/* IMAGEN HERO */
.hero-image img {
  width: 450px;
  animation: float 4s ease-in-out infinite;
}

/* HERO INTERIOR HOSTING */
.hosting-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 120px;
  background-image: url('images/bg_hero.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hosting-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 29, 45, 0.7), rgba(255, 95, 109, 0.58));
}

.hosting-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hosting-hero-content h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hosting-hero-content p {
  font-size: 14px !important;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.92) !important;
}

.hosting-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.hosting-breadcrumb span {
  color: #fff;
  font-weight: 700;
}

/* SERVICIOS HOSTING */
.hosting-services {
  margin-top: 150px;
  padding: 60px 0;
}

.hosting-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.hosting-services-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d3a4a;
  margin-bottom: 10px;
}

.hosting-services-header p {
  font-size: 16px !important;
  color: #90a8be !important;
  margin-bottom: 20px;
}

.hosting-services-description {
  font-size: 14px !important;
  color: #7a8fa6 !important;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
}

.hosting-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hosting-service-card {
  background: #fff;
  border: 2px solid #eef1f6;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.hosting-service-card:hover {
  border-color: #ff5f6d;
  box-shadow: 0 12px 48px rgba(255, 95, 109, 0.15);
  transform: translateY(-4px);
}

.hosting-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe2e6, #fff5f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ff5f6d;
  flex-shrink: 0;
}

.hosting-card-content {
  flex: 1;
}

.hosting-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d3a4a;
  margin-bottom: 8px;
}

.hosting-card-content p {
  font-size: 13px !important;
  color: #7a8fa6 !important;
  line-height: 1.7;
  margin-bottom: 14px;
}

.hosting-card-pricing {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.hosting-card-label {
  font-size: 11px;
  font-weight: 700;
  color: #90a8be;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hosting-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #ff5f6d;
}

.hosting-card-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: #ff5f6d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hosting-card-btn:hover {
  background: #ff3a48;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 95, 109, 0.3);
}

@media (max-width: 1200px) {
  .hosting-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hosting-services {
    margin-top: 120px;
    padding: 40px 0;
  }

  .hosting-services-header h2 {
    font-size: 32px;
  }

  .hosting-services-header p {
    font-size: 14px !important;
  }

  .hosting-services-description {
    font-size: 13px !important;
  }

  .hosting-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hosting-service-card {
    padding: 24px 20px;
  }

  .hosting-card-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* HOSTING: RESUMEN Y PLANES */
.hosting-page p {
  font-size: 12px !important;
}

.hosting-page li {
  font-size: 12px !important;
}

.hosting-overview {
  padding: 80px 0 44px;
}

.hosting-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 38px;
  align-items: center;
}

.hosting-overview-media img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 46px rgba(13, 28, 44, 0.12);
}

.hosting-overview-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.hosting-overview-content h2,
.hosting-overview-content h3 {
  font-size: 36px;
  line-height: 1.06;
  color: #111;
  margin-bottom: 14px;
}

.hosting-overview-content p {
  font-size: 12px !important;
  color: #333 !important;
  line-height: 1.55;
  margin-bottom: 16px;
}

.hosting-overview-list {
  list-style: none;
  margin-bottom: 18px;
}

.hosting-overview-list li {
  font-size: 12px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hosting-overview-list i {
  color: #2f2f2f;
  font-size: 18px;
}

.hosting-overview-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hosting-overview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(255, 95, 109, 0.28);
}

.hosting-anchor-nav {
  margin-top: 28px;
  background: #eceeef;
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hosting-anchor-nav a {
  text-decoration: none;
  color: #232629;
  font-size: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.hosting-anchor-nav a:hover {
  background: #111;
  color: #fff;
}

.hosting-pricing {
  padding: 24px 0 70px;
}

.hosting-pricing-switch {
  background: #f0f2f4;
  border: 1px solid #cad2da;
  border-radius: 999px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 24px;
  max-width: 780px;
}

.hosting-pricing-switch button {
  border: none;
  background: transparent;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  cursor: pointer;
  color: #1b1f24;
  font-weight: 600;
}

.hosting-pricing-switch button.is-active {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
}

.hosting-pricing-mode-subtitle {
  font-size: 14px !important;
  color: #2d3a4a !important;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
}

.hosting-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hosting-pricing-grid.is-hidden {
  display: none;
}

.hosting-plan-card {
  background: #fff;
  border: 1px solid #d9dfe6;
  border-radius: 16px;
  padding: 22px;
}

.hosting-plan-card h3 {
  font-size: 18px;
  color: #16181b;
  margin-bottom: 8px;
}

.hosting-plan-discount {
  display: inline-block;
  background: #f1dd84;
  color: #232323;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.hosting-plan-discount span {
  margin-left: 8px;
  text-decoration: line-through;
  opacity: 0.75;
}

.hosting-plan-price {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.05;
}

.hosting-plan-price small {
  font-size: 18px;
  font-weight: 600;
}

.hosting-plan-note {
  font-size: 13px !important;
  color: #4f5966 !important;
  margin: 6px 0 14px;
}

.hosting-plan-btn {
  width: 100%;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  margin-bottom: 14px;
  cursor: pointer;
}

.hosting-plan-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.hosting-plan-card li {
  font-size: 12px;
  color: #1e232a;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hosting-plan-card li i {
  color: #2f3844;
  margin-top: 2px;
}

.hosting-info-block {
  padding: 24px 0;
}

.hosting-info-block .container {
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #fff;
  padding: 24px 26px;
}

.hosting-info-block h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1e2a3b;
}

.hosting-info-block p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
}

/* ============ SIDE NAV FLOTANTE ============ */
.hosting-side-nav {
  position: fixed;
  top: 130px;
  left: 18px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hosting-side-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hosting-side-nav a {
  display: block;
  background: #eceeef;
  color: #232629;
  font-size: 9px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.hosting-side-nav a:hover {
  background: #111;
  color: #fff;
  transform: translateX(3px);
}

.hosting-side-nav a.is-active {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 1280px) {
  .hosting-side-nav { display: none; }
}

/* ============ ELÍGENOS ============ */
.hosting-eligenos {
  padding: 64px 0 72px;
  background: #fff;
}

.hosting-eligenos-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1e2a3b;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.3;
}

.hosting-eligenos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hosting-eligenos-card {
  display: flex;
  flex-direction: column;
}

.hosting-eligenos-img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #f2f4f7;
}

.hosting-eligenos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hosting-eligenos-img--award {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.hosting-award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.hosting-award-badge .award-year {
  font-size: 11px;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 1px;
}

.hosting-award-badge i {
  font-size: 36px;
  color: #ff7a5c;
}

.hosting-award-badge .award-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.hosting-award-badge .award-source {
  font-size: 10px;
  color: #888;
}

.hosting-eligenos-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.4;
  margin-bottom: 10px;
}

.hosting-eligenos-card p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
}

@media (max-width: 992px) {
  .hosting-eligenos-grid { grid-template-columns: 1fr; gap: 36px; }
  .hosting-eligenos-title { font-size: 22px; }
}

/* ============ BENEFICIOS (BENTO GRID) ============ */
.hosting-beneficios {
  padding: 64px 0 72px;
  background: #f8f9fb;
}

.hosting-beneficios-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 36px;
}

.hosting-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  grid-template-areas:
    "a b c"
    "d e e";
}

.hosting-bento-cell {
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-a {
  grid-area: a;
  background: #f0ebe3;
}

.bento-b {
  grid-area: b;
  background: #eef1f5;
}

.bento-c {
  grid-area: c;
  background: #f0f2f4;
  justify-content: flex-end;
}

.bento-d {
  grid-area: d;
  background: #f0f2f4;
}

.bento-e {
  grid-area: e;
  background: #dde9f2;
  position: relative;
  overflow: hidden;
}

.hosting-bento-cell h3 {
  font-size: 14px !important;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.4;
  margin-bottom: 14px;
}

.bento-c h3,
.bento-d h3 {
  margin-top: 12px;
}

.bento-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 180, 160, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon-wrap i {
  font-size: 20px;
  color: #00b4a0;
}

.hosting-bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 10px;
}

.hosting-bento-visual img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

/* Backup UI elemento */
.bento-backup-ui {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-backup-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1e2a3b;
}

.bento-backup-badge i { color: #00b4a0; font-size: 14px; }

.bento-backup-btn {
  background: #1e2a3b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 600;
  cursor: default;
  width: 100%;
}

.bento-backup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bento-backup-list li {
  font-size: 10px;
  color: #5f738c;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bento-backup-list li i { color: #22c55e; font-size: 10px; }

/* Uptime UI elemento */
.bento-uptime-ui {
  position: relative;
  width: 100%;
}

.bento-uptime-browser {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.browser-dots {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: #e9edf2;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0c8d2;
}

.bento-uptime-browser img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  display: block;
}

.bento-uptime-badge {
  position: absolute;
  bottom: -10px;
  right: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bento-uptime-badge i { font-size: 18px; color: #00b4a0; }
.bento-uptime-badge strong { font-size: 18px; color: #1e2a3b; font-weight: 800; }
.bento-uptime-badge small { font-size: 9px; color: #5f738c; }

.bento-e .hosting-bento-visual {
  padding-bottom: 14px;
}

@media (max-width: 992px) {
  .hosting-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      "e e";
  }
}

@media (max-width: 640px) {
  .hosting-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  .hosting-beneficios-title { font-size: 20px; }
}

/* ============ MÁS OPCIONES ============ */
.hosting-mas-opciones {
  padding: 72px 0 80px;
  background: #fff;
}

.hosting-mas-title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.25;
}

.hosting-mas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid #e4e9f0;
  padding-top: 40px;
}

.hosting-mas-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 48px;
  border-right: 1px solid #e4e9f0;
}

.hosting-mas-card:last-child {
  border-right: none;
}

.hosting-mas-kicker {
  font-size: 12px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hosting-mas-card h3 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hosting-mas-card p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hosting-mas-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #1e2a3b;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1e2a3b;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hosting-mas-btn:hover {
  background: #1e2a3b;
  color: #fff;
}

@media (max-width: 768px) {
  .hosting-mas-grid { grid-template-columns: 1fr; }
  .hosting-mas-card {
    border-right: none;
    border-bottom: 1px solid #e4e9f0;
    padding: 0 0 36px;
    margin-bottom: 36px;
  }
  .hosting-mas-card:last-child { border-bottom: none; margin-bottom: 0; }
  .hosting-mas-title { font-size: 26px; }
  .hosting-mas-card h3 { font-size: 26px; }
}

/* ============ PREGUNTAS FRECUENTES ============ */
.hosting-faq {
  padding: 72px 0 80px;
  background: #f8f9fb;
}

.hosting-faq-title {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.25;
}

.hosting-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.hosting-faq-item {
  border-top: 1px solid #cdd4dc;
  padding: 0;
}

.hosting-faq-item:last-child {
  border-bottom: 1px solid #cdd4dc;
}

.hosting-faq-item summary {
  font-size: 35px;
  font-weight: 600;
  color: #1e2a3b;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.3;
}

.hosting-faq-item summary::-webkit-details-marker { display: none; }

.hosting-faq-item summary::after {
  content: '\2228';
  font-size: 18px;
  color: #5f738c;
  flex-shrink: 0;
  margin-top: 6px;
  transition: transform 0.25s;
}

.hosting-faq-item[open] summary::after {
  content: '\2227';
}

.hosting-faq-body {
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hosting-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .hosting-faq-title { font-size: 26px; }
  .hosting-faq-item summary { font-size: 15px; }
}

.hosting-why {
  padding: 12px 0 54px;
}

.hosting-why-top {
  background: #f1f3f5;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 20px;
}

.hosting-why-badge {
  display: inline-block;
  background: #28d3cc;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.hosting-why-intro h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #111;
}

.hosting-why-feature i {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1a1f26;
}

.hosting-why-feature h4 {
  font-size: 14px;
  color: #171a1e;
  margin-bottom: 10px;
  line-height: 1.35;
}

.hosting-why-feature p {
  font-size: 12px !important;
  color: #3f4e5e !important;
  line-height: 1.6;
}

.hosting-why-note {
  margin-top: 18px;
  background: #eef1f4;
  border-radius: 0 0 0 0;
  text-align: center;
  padding: 18px 16px;
  font-size: 12px;
  color: #303744;
}

.hosting-why-note a {
  color: #1f879f;
  font-weight: 600;
  margin-left: 6px;
}

.hosting-why-grid {
  margin-top: 40px;
  display: grid;
  gap: 26px;
}

.hosting-why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hosting-why-card.is-reverse {
  direction: rtl;
}

.hosting-why-card.is-reverse > * {
  direction: ltr;
}

.hosting-why-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e333b;
}

.hosting-why-text h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #11141a;
  margin-bottom: 10px;
}

.hosting-why-text p {
  font-size: 12px !important;
  color: #3e4b5a !important;
  line-height: 1.7;
  max-width: 500px;
}

.hosting-why-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .hosting-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosting-why-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hosting-overview-grid {
    grid-template-columns: 1fr;
  }

  .hosting-overview-content h2,
  .hosting-overview-content h3 {
    font-size: 40px;
  }

  .hosting-overview-content p {
    font-size: 18px !important;
  }

  .hosting-overview-list li {
    font-size: 18px;
  }

  .hosting-overview-cta {
    font-size: 14px;
  }

  .hosting-anchor-nav {
    border-radius: 20px;
  }

  .hosting-anchor-nav a {
    font-size: 9px;
  }

  .hosting-why-card,
  .hosting-why-card.is-reverse {
    direction: ltr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hosting-overview {
    padding: 62px 0 30px;
  }

  .hosting-overview-content h2,
  .hosting-overview-content h3 {
    font-size: 32px;
  }

  .hosting-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACTO: SECCION DIVIDIDA */
.contact-split {
  padding: 110px 0 70px;
  background: #fff;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}

.contact-split-left {
  padding: 20px 6px 20px 0;
}

.contact-kicker {
  display: inline-block;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff5f6d;
  background: #ffe8eb;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.contact-split-left h2,
.contact-split-left h3 {
  font-size: 25px;
  line-height: 1.1;
  color: #1f2c3d;
  margin-bottom: 18px;
}

.contact-split-left > p {
  font-size: 16px !important;
  color: #6f8198 !important;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 34px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

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

.contact-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffeef0;
  color: #ff5f6d;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 12px;
  font-weight: 600;
  color: #8d9eb2;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 16px !important;
  font-weight: 700;
  color: #2f3e52 !important;
  text-decoration: none;
}

.contact-split-form-wrap {
  background: #f2f5f9;
  border-radius: 14px;
  padding: 28px;
}

.contact-split-form-wrap h3 {
  color: #202a36;
  font-size: 21px;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: none;
  background: #fff;
  color: #394a5d;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 190px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  margin-top: 8px;
  grid-column: 1 / -1;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 95, 109, 0.35);
}

.contact-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   CORREO.HTML — SECCIONES DE CONTENIDO
   ============================================================ */

/* Divisor de 120px entre secciones */
.correo-section-divider {
  height: 120px;
}

/* --- INTRO SPLIT --- */
.correo-intro {
  padding: 72px 0;
  background: #fff;
}

.correo-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.correo-intro-img {
  border-radius: 18px;
  overflow: hidden;
  background: #f5ede3;
}

.correo-intro-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.correo-intro-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5f738c;
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.correo-intro-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.25;
  margin-bottom: 22px;
}

.correo-intro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.correo-intro-list li {
  font-size: 12px !important;
  color: #3d4f62 !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.correo-intro-list li i {
  color: #ff5f6d;
  margin-top: 2px;
  flex-shrink: 0;
}

.correo-intro-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 18px;
}

.correo-intro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 95, 109, 0.3);
}

.correo-intro-phone {
  font-size: 11px !important;
  color: #5f738c !important;
  margin-bottom: 12px;
}

.correo-intro-phone a {
  color: #1e2a3b;
  font-weight: 600;
  text-decoration: none;
}

.correo-intro-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #5f738c;
  flex-wrap: wrap;
}

.correo-intro-rating i { color: #f5a623; font-size: 12px; }
.correo-intro-rating a { color: #ff5f6d; text-decoration: underline; }

/* --- BANNER CUENTA EXISTENTE --- */
.correo-banner-existing {
  background: #e8f4f0;
  padding: 18px 0;
}

.correo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.correo-banner-inner p {
  font-size: 12px !important;
  color: #1e2a3b !important;
  margin: 0;
}

.correo-banner-inner span {
  color: #5f738c;
  font-size: 11px;
  display: block;
  margin-top: 2px;
}

.correo-banner-btn {
  flex-shrink: 0;
  display: inline-block;
  border: 2px solid #1e2a3b;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 600;
  color: #1e2a3b;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.correo-banner-btn:hover {
  background: #1e2a3b;
  color: #fff;
}

/* --- PLANES DE CORREO --- */
.correo-planes {
  padding: 0 0 20px;
  background: #fff;
}

.correo-planes-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 14px;
}

.correo-planes-sub {
  text-align: center;
  font-size: 12px !important;
  color: #5f738c !important;
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.correo-planes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.correo-plan-card {
  border: 1px solid #e0e7ef;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.correo-plan-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
  min-height: 48px;
  align-items: center;
}

.correo-plan-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.correo-plan-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5f738c;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.correo-plan-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.3;
  margin-bottom: 8px;
}

.correo-plan-desc {
  font-size: 11px !important;
  color: #5f738c !important;
  line-height: 1.65;
  margin-bottom: 14px;
}

.correo-plan-discount {
  font-size: 9px;
  font-weight: 700;
  color: #ff5f6d;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.correo-plan-price {
  font-size: 22px;
  font-weight: 800;
  color: #1e2a3b;
  margin-bottom: 4px;
  line-height: 1.2;
}

.correo-plan-price small {
  font-size: 11px;
  font-weight: 400;
  color: #5f738c;
}

.correo-plan-note {
  font-size: 9px !important;
  color: #8a9bae !important;
  line-height: 1.55;
  margin-bottom: 16px;
}

.correo-plan-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.correo-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 95, 109, 0.28);
}

.correo-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.correo-plan-features li {
  font-size: 10px !important;
  color: #3d4f62 !important;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.correo-plan-features li i {
  color: #22c55e;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- TODOS LOS PLANES INCLUYEN --- */
.correo-includes {
  background: #f8f9fb;
  padding: 60px 0;
}

.correo-includes-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.correo-includes-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.correo-includes-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.3;
}

.correo-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.correo-includes-item i {
  font-size: 22px;
  color: #5f738c;
  margin-bottom: 10px;
  display: block;
}

.correo-includes-item h4 {
  font-size: 12px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 6px;
  line-height: 1.4;
}

.correo-includes-item p {
  font-size: 11px !important;
  color: #5f738c !important;
  line-height: 1.65;
}

/* --- HERRAMIENTAS ADICIONALES --- */
.correo-tools {
  padding: 0 0 20px;
  background: #fff;
}

.correo-tools-kicker {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ff5f6d;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.correo-tools-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1e2a3b;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.3;
}

.correo-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.correo-tool-card {
  display: flex;
  flex-direction: column;
}

.correo-tool-img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #f0f2f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.correo-tool-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.correo-tool-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.correo-tool-card p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.correo-tool-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.correo-tool-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 95, 109, 0.28);
}

.correo-tool-btn--outline {
  background: transparent;
  color: #1e2a3b;
  border: 2px solid #1e2a3b;
}

.correo-tool-btn--outline:hover {
  background: #1e2a3b;
  color: #fff;
  box-shadow: none;
}

.correo-tools-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e4e9f0;
}

.correo-tool-extra-card {
  display: flex;
  flex-direction: column;
}

.correo-tool-extra-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.correo-tool-extra-card p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

/* ============================================================
   SITIOS.HTML — LANDING DE CREADOR DE SITIOS
   ============================================================ */
.sitios-page .contact-logos,
.sitios-page .prefooter-wrap {
  margin-top: 120px;
}

.sitios-section {
  margin-top: 120px;
}

.sitios-page .hosting-hero + .sitios-section {
  margin-top: 120px;
}

.sitios-copy h2,
.sitios-section-head h2,
.sitios-includes-title h2,
.sitios-faq .sitios-section-head h2 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e2a3b;
}

.sitios-copy p,
.sitios-copy li,
.sitios-feature-card p,
.sitios-plan-card p,
.sitios-mini-feature p,
.sitios-power-card p,
.sitios-story-card p,
.sitios-faq-body p,
.sitios-marketing-columns p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
}

.sitios-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5f6d;
  margin-bottom: 12px;
}

.sitios-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sitios-actions-centered {
  justify-content: center;
}

.sitios-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.sitios-btn-primary {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 95, 109, 0.2);
}

.sitios-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 95, 109, 0.28);
}

.sitios-btn-secondary {
  border: 1px solid #d6dde6;
  background: #fff;
  color: #1e2a3b;
}

.sitios-btn-secondary:hover {
  border-color: #1e2a3b;
}

.sitios-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.sitios-section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.sitios-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.sitios-intro-media {
  position: relative;
  min-height: 440px;
  background: linear-gradient(135deg, #f7e4da, #eef3f9);
  border-radius: 24px;
  overflow: hidden;
}

.sitios-device {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(27, 41, 58, 0.14);
  background: #fff;
}

.sitios-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sitios-device-phone {
  width: 160px;
  height: 310px;
  left: 24px;
  bottom: 30px;
}

.sitios-device-desktop {
  width: 72%;
  height: 320px;
  right: 28px;
  top: 38px;
}

.sitios-color-chips {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: flex;
  gap: 8px;
}

.sitios-color-chips span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.sitios-color-chips span:nth-child(1) { background: #ff5f6d; }
.sitios-color-chips span:nth-child(2) { background: #00b4a0; }
.sitios-color-chips span:nth-child(3) { background: #1e2a3b; }

.sitios-intro-copy p {
  max-width: 520px;
  margin-bottom: 24px;
}

.sitios-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sitios-trust-row span {
  font-size: 10px;
  color: #5f738c;
  padding: 8px 12px;
  border: 1px solid #e0e7ef;
  border-radius: 999px;
}

.sitios-strip {
  margin-top: 36px;
}

.sitios-strip-inner {
  background: #e7f6f3;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sitios-strip-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00a28f;
}

.sitios-strip-inner p {
  font-size: 12px !important;
  color: #4c627b !important;
  flex: 1;
}

.sitios-strip-inner a {
  color: #1e2a3b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.sitios-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 24px;
}

.sitios-plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 24px rgba(20, 30, 45, 0.04);
}

.sitios-plan-card.is-featured {
  border-color: #ffb1a3;
  box-shadow: 0 16px 36px rgba(255, 95, 109, 0.12);
}

.sitios-plan-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.sitios-plan-top h3 {
  font-size: 20px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.sitios-plan-price {
  font-size: 34px;
  font-weight: 800;
  color: #1e2a3b;
  margin: 18px 0;
}

.sitios-plan-price small {
  font-size: 13px;
  font-weight: 500;
  color: #5f738c;
}

.sitios-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.sitios-plan-card ul,
.sitios-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitios-plan-card li,
.sitios-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sitios-plan-card li i,
.sitios-check-list li i {
  color: #00b4a0;
  margin-top: 3px;
}

.sitios-includes-grid {
  background: #f7f9fb;
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 18px;
}

.sitios-mini-feature {
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  padding: 22px 18px;
}

.sitios-mini-feature i {
  font-size: 22px;
  color: #ff5f6d;
  margin-bottom: 14px;
}

.sitios-mini-feature h3,
.sitios-feature-card h3,
.sitios-power-card h3,
.sitios-steps h3,
.sitios-story-card strong {
  font-size: 16px;
  color: #1e2a3b;
  margin-bottom: 8px;
}

.sitios-showcase-frame,
.sitios-control-media {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce7f2, #eef3f7);
  box-shadow: 0 20px 40px rgba(27, 41, 58, 0.08);
}

.sitios-showcase-frame img,
.sitios-control-media img,
.sitios-gallery-card img,
.sitios-story-photo img,
.sitios-power-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sitios-showcase-frame {
  height: 420px;
  margin-bottom: 28px;
}

.sitios-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.sitios-feature-card {
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  padding: 22px;
}

.sitios-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  grid-template-areas:
    "large small1 small2"
    "wide wide wide";
  margin-bottom: 28px;
}

.sitios-gallery-card {
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.sitios-gallery-card.large { grid-area: large; min-height: 360px; }
.sitios-gallery-card:nth-child(2) { grid-area: small1; }
.sitios-gallery-card:nth-child(3) { grid-area: small2; }
.sitios-gallery-card.wide { grid-area: wide; min-height: 260px; }

.sitios-howto-grid,
.sitios-control-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.sitios-steps {
  background: #f7f9fb;
  border: 1px solid #e4e9f0;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 20px;
}

.sitios-marketing-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sitios-control-media {
  min-height: 360px;
}

.sitios-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sitios-story-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.sitios-story-photo {
  background: #f0f2f4;
}

.sitios-story-quote {
  background: #f7f9fb;
  border: 1px solid #e4e9f0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sitios-story-quote span {
  font-size: 11px;
  color: #8a9bae;
}

.sitios-power-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sitios-power-card {
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 18px;
  overflow: hidden;
}

.sitios-power-card img {
  height: 180px;
}

.sitios-power-card h3,
.sitios-power-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.sitios-power-card h3 {
  padding-top: 18px;
}

.sitios-power-card p {
  padding-bottom: 20px;
}

.sitios-faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.sitios-faq-item {
  border-top: 1px solid #d6dde6;
}

.sitios-faq-item:last-child {
  border-bottom: 1px solid #d6dde6;
}

.sitios-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: #1e2a3b;
}

.sitios-faq-item summary::-webkit-details-marker {
  display: none;
}

.sitios-faq-item summary::after {
  content: '\2228';
  color: #8a9bae;
  font-size: 18px;
  flex-shrink: 0;
}

.sitios-faq-item[open] summary::after {
  content: '\2227';
}

.sitios-faq-body {
  padding: 0 0 20px;
}

@media (max-width: 1100px) {
  .sitios-includes-grid,
  .sitios-power-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sitios-includes-title {
    grid-column: 1 / -1;
  }

  .sitios-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large small1"
      "small2 wide";
  }
}

@media (max-width: 992px) {
  .sitios-copy h2,
  .sitios-section-head h2,
  .sitios-includes-title h2,
  .sitios-faq .sitios-section-head h2 {
    font-size: 28px;
  }

  .sitios-intro-grid,
  .sitios-howto-grid,
  .sitios-control-grid,
  .sitios-stories-grid,
  .sitios-marketing-columns,
  .sitios-three-grid {
    grid-template-columns: 1fr;
  }

  .sitios-power-grid,
  .sitios-pricing-grid {
    grid-template-columns: 1fr;
  }

  .sitios-intro-media {
    min-height: 360px;
  }

  .sitios-device-phone {
    width: 130px;
    height: 250px;
  }

  .sitios-device-desktop {
    width: 70%;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .sitios-section,
  .sitios-page .contact-logos,
  .sitios-page .prefooter-wrap,
  .sitios-page .hosting-hero + .sitios-section {
    margin-top: 60px;
  }

  .sitios-includes-grid,
  .sitios-gallery-grid,
  .sitios-power-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .sitios-gallery-card,
  .sitios-gallery-card.large,
  .sitios-gallery-card.wide {
    grid-area: auto;
    min-height: 220px;
  }

  .sitios-strip-inner,
  .sitios-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sitios-intro-media {
    min-height: 300px;
  }

  .sitios-device-phone {
    width: 110px;
    height: 210px;
    left: 14px;
  }

  .sitios-device-desktop {
    width: 72%;
    right: 14px;
    top: 26px;
    height: 210px;
  }

  .sitios-showcase-frame,
  .sitios-control-media,
  .sitios-story-card {
    min-height: 260px;
    height: 260px;
  }
}

/* ============================================================
   WORDPRESS.HTML — LANDING DE HOSTING WORDPRESS
   ============================================================ */
.wordpress-page .wp-section {
  margin-top: 120px;
}

.wordpress-page .hosting-hero + .wp-section {
  margin-top: 120px;
}

.wordpress-page .contact-logos,
.wordpress-page .prefooter-wrap {
  margin-top: 120px;
}

.wp-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.wp-copy h2,
.wp-head h2,
.wp-faq .wp-head h2 {
  font-size: 35px;
  line-height: 1.2;
  color: #1e2a3b;
  font-weight: 700;
}

.wp-copy p,
.wp-head p,
.wp-plan-card p,
.wp-reason-card p,
.wp-ai-grid p,
.wp-feature-bento p,
.wp-options-grid p,
.wp-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.75;
}

.wp-kicker {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #ff5f6d;
  margin-bottom: 10px;
}

.wp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.wp-btn-primary {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 95, 109, 0.2);
}

.wp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 95, 109, 0.28);
}

.wp-btn-secondary {
  border: 1px solid #d6dde6;
  color: #1e2a3b;
  background: #fff;
}

.wp-btn-secondary:hover {
  border-color: #1e2a3b;
}

.wp-intro-grid,
.wp-speed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.wp-intro-media,
.wp-speed-media,
.wp-ai-main {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f8, #f8ece2);
}

.wp-intro-media img,
.wp-speed-media img,
.wp-ai-main img,
.wp-reason-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wp-intro-media {
  min-height: 360px;
}

.wp-checklist,
.wp-plan-card ul,
.wp-includes-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wp-checklist li,
.wp-plan-card li,
.wp-includes-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #5f738c;
}

.wp-checklist li i,
.wp-plan-card li i,
.wp-includes-grid li i {
  color: #00b4a0;
  margin-top: 3px;
}

.wp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wp-plan-card {
  position: relative;
  border: 1px solid #e0e7ef;
  border-radius: 18px;
  padding: 24px 20px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(20, 30, 45, 0.04);
}

.wp-plan-card.is-featured {
  border-color: #8dd9ff;
  box-shadow: 0 14px 30px rgba(95, 188, 255, 0.2);
}

.wp-plan-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #00b4a0;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wp-plan-card h3 {
  font-size: 18px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.wp-plan-price {
  font-size: 34px;
  font-weight: 800;
  color: #1e2a3b;
  margin-bottom: 12px;
}

.wp-plan-price small {
  font-size: 12px;
  color: #5f738c;
  font-weight: 500;
}

.wp-plan-discount {
  font-size: 10px;
  font-weight: 700;
  color: #ff5f6d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.wp-plan-old {
  color: #8a9bae;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}

.wp-plan-term {
  font-size: 10px !important;
  color: #8a9bae !important;
  margin-top: -6px;
  margin-bottom: 14px;
}

.wp-plan-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.wp-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wp-includes-grid article {
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.wp-includes-grid h3,
.wp-reason-card h3,
.wp-ai-grid h3,
.wp-feature-bento h3,
.wp-options-grid h3 {
  font-size: 16px;
  color: #1e2a3b;
  margin-bottom: 10px;
}

.wp-speed-media {
  min-height: 300px;
}

.wp-reasons-grid,
.wp-ai-grid,
.wp-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wp-reason-card {
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.wp-reason-card img {
  height: 180px;
}

.wp-reason-card h3,
.wp-reason-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-reason-card h3 {
  padding-top: 14px;
}

.wp-reason-card p {
  padding-bottom: 18px;
}

.wp-ai-main {
  min-height: 280px;
  margin-bottom: 16px;
}

.wp-ai-grid article,
.wp-options-grid article {
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.wp-feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "a b c"
    "d e e";
  gap: 14px;
}

.wp-feature-bento article {
  border-radius: 16px;
  padding: 24px;
  background: #f6f8fb;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
}

.wp-feature-bento .b-a { grid-area: a; }
.wp-feature-bento .b-b { grid-area: b; background: #f0f5fb; }
.wp-feature-bento .b-c { grid-area: c; background: #f8f1ed; }
.wp-feature-bento .b-d { grid-area: d; background: #eef7f4; }
.wp-feature-bento .b-e { grid-area: e; background: #dce9f2; }

.wp-options-grid {
  grid-template-columns: repeat(2, 1fr);
}

.wp-faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.wp-faq-item {
  border-top: 1px solid #d6dde6;
}

.wp-faq-item:last-child {
  border-bottom: 1px solid #d6dde6;
}

.wp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  color: #1e2a3b;
  font-size: 16px;
  font-weight: 600;
}

.wp-faq-item summary::-webkit-details-marker {
  display: none;
}

.wp-faq-item summary::after {
  content: '\2228';
  color: #8a9bae;
  font-size: 18px;
  flex-shrink: 0;
}

.wp-faq-item[open] summary::after {
  content: '\2227';
}

.wp-faq-body {
  padding: 0 0 18px;
}

@media (max-width: 1100px) {
  .wp-pricing-grid,
  .wp-includes-grid,
  .wp-reasons-grid,
  .wp-ai-grid,
  .wp-feature-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-feature-bento {
    grid-template-areas:
      "a b"
      "c d"
      "e e";
  }
}

@media (max-width: 992px) {
  .wp-copy h2,
  .wp-head h2,
  .wp-faq .wp-head h2 {
    font-size: 28px;
  }

  .wp-intro-grid,
  .wp-speed-grid,
  .wp-options-grid,
  .wp-pricing-grid,
  .wp-includes-grid,
  .wp-reasons-grid,
  .wp-ai-grid,
  .wp-feature-bento {
    grid-template-columns: 1fr;
  }

  .wp-feature-bento {
    grid-template-areas: none;
  }

  .wp-feature-bento article {
    grid-area: auto !important;
  }
}

@media (max-width: 768px) {
  .wordpress-page .wp-section,
  .wordpress-page .hosting-hero + .wp-section,
  .wordpress-page .contact-logos,
  .wordpress-page .prefooter-wrap {
    margin-top: 60px;
  }
}

/* Responsive correo */
@media (max-width: 1100px) {
  .correo-planes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .correo-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .correo-intro-img { display: none; }
  .correo-includes-inner { grid-template-columns: 1fr; gap: 24px; }
  .correo-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .correo-tools-grid { grid-template-columns: 1fr 1fr; }
  .correo-tools-extra { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .correo-planes-grid { grid-template-columns: 1fr; }
  .correo-includes-grid { grid-template-columns: 1fr; }
  .correo-tools-grid { grid-template-columns: 1fr; }
  .correo-tools-extra { grid-template-columns: 1fr; }
  .correo-section-divider { height: 60px; }
  .correo-planes-title, .correo-tools-title { font-size: 22px; }
}

/* CARRUSEL LOGOS CONTACTO */
.contact-logos {
  margin-bottom: 150px;
  overflow: hidden;
}

.contact-logos-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-logos-head h3 {
  font-size: 30px;
  color: #2d3a4a;
  margin-bottom: 6px;
}

.contact-logos-head p {
  font-size: 14px !important;
  color: #90a8be !important;
}

.contact-logos-track {
  width: max-content;
  display: flex;
  gap: 24px;
  animation: contactLogosMove 55s linear infinite;
}

.contact-logo-item {
  width: 190px;
  height: 96px;
  border-radius: 12px;
  border: 1px solid #eef2f8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.contact-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.contact-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

@keyframes contactLogosMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* DOMAIN SEARCH */
.domain-search {
  margin-top: -120px;
  padding: 0 0 60px;
  position: relative;
  z-index: 10;
}

.domain-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
  padding: 50px 40px 60px;
  text-align: center;
}

.domain-search-header {
  margin-bottom: 30px;
}

.domain-search-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.domain-search-header p {
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.search-box {
  background: white;
  padding: 12px 12px 12px 20px;
  border-radius: 50px;
  display: flex;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  max-width: 620px;
  margin: 0 auto;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 15px;
}

.btn-search {
  background: #ff5f6d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-search:hover {
  background: #e84455;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,95,109,0.35);
}

/* DOMAIN TAGS */
.domain-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.domain-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.domain-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.tag-blue   { background: #d0e8ff; color: #1a5fa8; }
.tag-red    { background: #ffd5d8; color: #b8202e; }
.tag-green  { background: #d2f5e3; color: #1a7a45; }
.tag-purple { background: #e5d5f5; color: #6a1fa8; }
.tag-pink   { background: #fde0f0; color: #b5196e; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
}

/* FEATURE ICONS */
.feature-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.feature-icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.icon-red   { color: #ff5f6d; }
.icon-blue  { color: #4a90d9; }
.icon-green { color: #27ae60; }

.feature-icon-circle.icon-red { background: #ffe2e6; }
.feature-icon-circle.icon-blue { background: #deedff; }
.feature-icon-circle.icon-green { background: #ddf7e8; }

.btn-feature {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 22px;
  border-radius: 30px;
  border: 2px solid #ff5f6d;
  color: #ff5f6d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-feature:hover {
  background: #ff5f6d;
  color: white;
}

/* FEATURES */
.features {
  padding: 80px 0;
  margin-top: 150px;
}

.features-header {
  text-align: center;
  margin-bottom: 36px;
}

.features-header h2 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #222;
}

.features-header p {
  color: #90a8be;
  font-size: 16px;
}

/* COLOR GLOBAL DE SUBTITULOS */
.domain-search-header p,
.features-header p,
.pricing-header p,
.about-domains-header p,
.testimonials-header p {
  color: #90a8be !important;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* PRICING */
.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing-header {
  text-align: center;
  margin-bottom: 34px;
}

.pricing-header h2 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #222;
}

.pricing-header p {
  color: #666;
  font-size: 16px;
}

.pricing-card .price {
  font-size: 30px;
  margin: 15px 0 10px;
}

.pricing-divider {
  height: 8px;
  width: 85%;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 95, 109, 0.12) 0%,
    rgba(255, 95, 109, 0.45) 50%,
    rgba(255, 95, 109, 0.12) 100%
  );
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin: 26px 0 26px;
  padding: 0;
}

.pricing-list li {
  margin: 12px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}

.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5f6d;
  font-weight: 700;
}

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

.featured .pricing-divider {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.featured {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: white;
}

/* ABOUT DOMAINS */
.about-domains {
  padding: 80px 0;
  background: #f3f6fb;
}

.about-domains-header {
  text-align: center;
  margin-bottom: 26px;
}

.domains-kicker {
  display: inline-block;
  color: #ff5f6d;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-domains-header h2 {
  font-size: 34px;
  color: #2e2b5f;
  margin-bottom: 10px;
}

.about-domains-header p {
  color: #6d86a8;
  font-size: 18px;
}

.domains-tabs {
  max-width: 920px;
  margin: 0 auto 34px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.domains-tab {
  border: none;
  background: transparent;
  padding: 16px 10px;
  font-size: 28px;
  font-weight: 700;
  color: #2f3f57;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.domains-tab:hover {
  background: #f6f8fc;
}

.domains-tab.is-active {
  background: #fff1f2;
  color: #ff5f6d;
  box-shadow: inset 0 -3px 0 #ff5f6d;
}

.domains-panel-wrap {
  background: #fff;
  border: 1px solid #e4e9f2;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.domains-panel {
  display: none;
}

.domains-panel.is-active {
  display: block;
}

.domains-panel h3 {
  color: #4a4a7a;
  font-size: 32px;
  margin-bottom: 14px;
}

.domains-panel p {
  color: #7d93af;
  font-size: 23px;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* SERVICE SPLIT SECTIONS */
.service-section {
  padding: 90px 0;
  background: #fff;
}

.service-section-alt {
  background: #f8fbff;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 24px;
  align-items: center;
}

.service-row-reverse {
  grid-template-columns: 1fr 1fr;
}

.service-media img {
  width: 100%;
  display: block;
}

.service-content h3 {
  font-size: 32px;
  line-height: 1.5;
  color: #2b2a5f;
  margin-bottom: 18px;
}

.service-content p {
  font-size: 17px;
  line-height: 2;
  color: #607996;
  margin-bottom: 14px;
  text-align: justify;
}

.btn-service {
  display: inline-block;
  margin-top: 12px;
  background: #ff5f6d;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255,95,109,0.35);
}

/* TESTIMONIALS */
.testimonials {
  padding: 90px 0;
  background: #eef1f6;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 34px;
}

.testimonials-header h2 {
  font-size: 34px;
  color: #2e2b5f;
  margin-bottom: 10px;
}

.testimonial-carousel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 48px 60px 40px;
  border: 1px solid #e1e7f0;
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

.quote-mark {
  position: absolute;
  color: #ff5f6d;
  font-size: 56px;
}

.quote-top {
  top: 12px;
  left: 35px;
}

.quote-bottom {
  right: 35px;
  bottom: -14px;
}

.testimonial-slide {
  display: none;
  text-align: center;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-text {
  max-width: 860px;
  margin: 0 auto 26px;
  color: #90a8be;
  line-height: 1.9;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-author h4 {
  color: #ff5f6d;
  font-size: 30px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #111;
  font-weight: 600;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #b9b9b9;
  font-size: 30px;
  cursor: pointer;
  transition: 0.25s;
}

.testimonial-arrow:hover {
  color: #ff5f6d;
  transform: translateY(-2px);
}

/* BLOG */
.blog-section {
  margin-top: 150px;
  margin-bottom: 0;
  padding-bottom: 130px;
  position: relative;
  z-index: 2;
  background: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3a4a;
  margin-bottom: 10px;
}

.blog-header p {
  color: #90a8be !important;
  max-width: 580px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.blog-date {
  position: absolute;
  bottom: -1px;
  left: 24px;
  background: #ff5f6d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px 30px 0 0;
}

.blog-card-body {
  padding: 20px 24px 28px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 12px;
  color: #ff5f6d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  font-size: 12px;
}

.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2d3a4a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  color: #7a8fa6;
  line-height: 1.7;
}

/* PRE-FOOTER NEWSLETTER */
.prefooter-wrap {
  margin-top: 150px;
  background: #2d3a4a;
  padding-bottom: 60px;
  overflow: visible;
}

.prefooter-phone-card {
  background: #1e2c3a;
  color: #fff;
  text-align: center;
  padding: 28px 36px;
  border-radius: 16px;
  max-width: 560px;
  margin: -65px auto 36px;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.prefooter-phone-card p {
  font-size: 14px !important;
  color: #c8d8e8 !important;
  margin-bottom: 6px;
}

.prefooter-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ff5f6d;
  text-decoration: none;
}

.prefooter-newsletter {
  background: #ff7a72;
  border-radius: 20px;
  margin-top: -130px 0 70px 0;
  padding: 100px 48px 50px;
  position: relative;
}

.prefooter-newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.prefooter-newsletter-text p {
  font-size: 20px !important;
  font-weight: 600;
  color: #fb2828 !important;
  line-height: 1.5;
  margin: 0;
}

.prefooter-form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  min-width: 340px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.prefooter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  color: #555;
  background: transparent;
}

.prefooter-form button {
  background: transparent;
  border: none;
  color: #ff5f6d;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.prefooter-form button:hover {
  color: #cc2a35;
}

.newsletter-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* FOOTER PRINCIPAL */
.footer-main {
  background: #2d3a4a;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 12px !important;
  color: #8fa8be !important;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo i {
  color: #ff5f6d;
  font-size: 22px;
}

.footer-follow {
  font-size: 13px !important;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 12px !important;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3d4f62;
  color: #c0d4e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.footer-social a:hover {
  background: #ff5f6d;
  color: #fff;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li::before {
  content: '—';
  color: #556677;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-col ul li a {
  font-size: 12px;
  color: #8fa8be;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ff5f6d;
}

/* BARRA COPYRIGHT */
.footer-bottom {
  background: #1e2c3a;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px !important;
  color: #6a8099 !important;
  margin: 0;
}

/* ANIMACIONES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* SCROLL ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  /* TOPNAV: 2 filas en móvil */
  .topnav {
    height: auto;
    padding: 6px 0;
  }

  .topnav-container {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    height: auto;
  }

  .topnav-info {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .topnav-ticker {
    margin-left: 0;
    width: 100%;
  }

  /* NAVBAR MÓVIL */
  .header {
    top: 62px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-container {
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ff5f6d;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    margin: 0;
    padding: 12px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 15px;
  }

  /* HERO */
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hosting-hero {
    height: 350px;
    padding-top: 105px;
  }

  .hosting-hero-content h1 {
    font-size: 36px;
  }

  .hosting-hero-content p,
  .hosting-breadcrumb {
    font-size: 13px !important;
  }

  .hero-image img {
    width: 300px;
    margin-top: 20px;
  }

  /* GRID */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .features {
    margin-top: 90px;
  }

  /* DOMAIN SEARCH */
  .domain-search {
    margin-top: -60px;
  }

  .domain-card {
    padding: 36px 20px 48px;
    border-radius: 18px;
  }

  .search-box {
    flex-direction: column;
    border-radius: 20px;
  }

  .btn-search {
    border-radius: 20px;
  }

  .domain-tags {
    gap: 8px;
  }

  .about-domains-header h2,
  .pricing-header h2,
  .features-header h2 {
    font-size: 28px;
  }

  .about-domains-header p {
    font-size: 15px;
  }

  .domains-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .domains-tab {
    font-size: 20px;
    padding: 12px 8px;
  }

  .domains-panel-wrap {
    padding: 20px;
  }

  .domains-panel h3 {
    font-size: 24px;
  }

  .domains-panel p {
    font-size: 17px;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }

  .testimonial-carousel {
    padding: 40px 18px 30px;
  }

  .quote-mark {
    font-size: 40px;
  }

  .quote-top {
    top: 10px;
    left: 14px;
  }

  .quote-bottom {
    right: 14px;
    bottom: -8px;
  }

  .testimonial-author-wrap {
    gap: 12px;
  }

  .testimonial-author img {
    width: 68px;
    height: 68px;
  }

  .testimonial-author h4 {
    font-size: 24px;
  }

  .testimonial-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-content h2 {
    font-size: 30px;
  }

  .service-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .prefooter-newsletter {
    flex-direction: column;
    padding: 90px 24px 32px;
  }

  .prefooter-newsletter-row {
    flex-direction: column;
  }

  .prefooter-form {
    min-width: unset;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-split {
    padding: 86px 0 56px;
  }

  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .contact-split-left h2,
  .contact-split-left h3 {
    font-size: 19px;
  }

  .contact-info-item h4 {
    font-size: 11px;
  }

  .contact-info-item p,
  .contact-info-item a {
    font-size: 12px !important;
  }

  .contact-split-form-wrap h3 {
    font-size: 17px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-logo-item {
    width: 150px;
    height: 78px;
  }

  .contact-logos-head h3 {
    font-size: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   VPS PAGE
   ============================================================ */

/* --- GLOBAL SCOPED SPACING --- */
.vps-page .vps-section { margin-top: 120px; }
.vps-page .contact-logos { margin-bottom: 150px; }

.vps-copy .vps-kicker,
.vps-copy .vps-label-badge {
  display: inline-block;
  background: rgba(255,95,109,.1);
  color: #ff5f6d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.vps-copy h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
  margin-bottom: 16px;
}
.vps-copy p, .vps-section p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.7;
}
.vps-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.vps-head h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.vps-btn.vps-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  transition: opacity .2s;
}
.vps-btn.vps-btn-primary:hover { opacity: .88; }

/* --- INTRO SPLIT --- */
.vps-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vps-intro-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.vps-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vps-checklist li {
  font-size: 12px !important;
  color: #5f738c !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vps-checklist i { color: #ff5f6d; flex-shrink: 0; }
.vps-intro-trust {
  font-size: 11px;
  color: #5f738c;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.vps-intro-trust i { color: #f5a623; font-size: 13px; }
.vps-intro-trust a { color: #ff5f6d; text-decoration: none; }

/* --- PRICING SWITCH --- */
.vps-pricing-switch {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 2px solid #e4e9f0;
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.vps-pricing-switch button {
  border: none;
  background: transparent;
  padding: 10px 26px;
  font-size: 12px;
  font-weight: 600;
  color: #5f738c;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.vps-pricing-switch button.is-active {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 999px;
}

/* --- PRICING CARDS --- */
.vps-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vps-pricing-grid.is-hidden { display: none; }
.vps-plan-card {
  background: #fff;
  border: 2px solid #e4e9f0;
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
  position: relative;
}
.vps-plan-card:hover { box-shadow: 0 8px 32px rgba(255,95,109,.12); border-color: #ff5f6d; }
.vps-plan-card.is-featured { border-color: #ff5f6d; box-shadow: 0 8px 40px rgba(255,95,109,.18); }
.vps-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#ff5f6d,#ff7a5c);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.vps-plan-spec { font-size: 18px; font-weight: 700; color: #1e2a3b; margin-bottom: 10px; }
.vps-plan-discount {
  background: rgba(255,95,109,.1);
  color: #ff5f6d;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 8px;
}
.vps-plan-old { text-decoration: line-through; opacity: .55; text-transform: none; }
.vps-plan-price { font-size: 28px; font-weight: 800; color: #1e2a3b; }
.vps-plan-price small { font-size: 13px; font-weight: 500; color: #5f738c; }
.vps-plan-term { font-size: 10px !important; color: #8a9bae !important; margin-top: -2px; margin-bottom: 16px; }
.vps-plan-btn {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: opacity .2s;
}
.vps-plan-btn:hover { opacity: .88; }
.vps-plan-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vps-plan-card ul li { font-size: 11px !important; color: #5f738c !important; display: flex; align-items: center; gap: 10px; }
.vps-plan-card ul li i { color: #ff5f6d; width: 14px; flex-shrink: 0; }

/* --- INCLUDES GRID --- */
.vps-includes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.vps-includes-grid article { background: #fff; border: 1px solid #e4e9f0; border-radius: 16px; padding: 24px 20px; text-align: center; }
.vps-includes-grid i { font-size: 28px; color: #ff5f6d; margin-bottom: 14px; display: block; }
.vps-includes-grid h3 { font-size: 14px; font-weight: 700; color: #1e2a3b; margin-bottom: 8px; }

/* --- SPLIT SECTIONS --- */
.vps-ideal-grid, .vps-support-grid, .vps-monitoring-grid, .vps-backups-grid, .vps-patch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.vps-ideal-grid .vps-ideal-media img,
.vps-support-grid .vps-support-media img,
.vps-monitoring-grid .vps-monitoring-media img,
.vps-backups-grid .vps-backups-media img,
.vps-patch-grid .vps-patch-media img {
  width: 100%; border-radius: 20px; object-fit: cover; max-height: 340px;
}

/* --- REASONS (3 cards) --- */
.vps-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vps-reason-card { background: #fff; border: 1px solid #e4e9f0; border-radius: 20px; overflow: hidden; }
.vps-reason-card img { width: 100%; height: 180px; object-fit: cover; }
.vps-reason-card h3 { font-size: 15px; font-weight: 700; color: #1e2a3b; padding: 18px 20px 6px; }
.vps-reason-card p { padding: 0 20px 20px !important; }

/* --- USE CASES --- */
.vps-usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vps-usecases-grid article { background: #fff; border: 1px solid #e4e9f0; border-radius: 16px; padding: 26px 22px; }
.vps-usecases-grid i { font-size: 26px; color: #ff5f6d; margin-bottom: 14px; display: block; }
.vps-usecases-grid h3 { font-size: 14px; font-weight: 700; color: #1e2a3b; margin-bottom: 8px; }

/* --- FAQ --- */
.vps-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.vps-faq-item { border: 1px solid #e4e9f0; border-radius: 12px; overflow: hidden; background: #fff; }
.vps-faq-item summary {
  list-style: none; cursor: pointer; font-size: 14px; font-weight: 600; color: #1e2a3b;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; user-select: none;
}
.vps-faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: #ff5f6d; flex-shrink: 0; }
.vps-faq-item[open] summary::after { content: '-'; }
.vps-faq-body { padding: 0 22px 18px; }
.vps-faq-body ul { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 8px; }
.vps-faq-body ul li { font-size: 12px !important; color: #5f738c !important; display: flex; align-items: center; gap: 8px; }
.vps-faq-body ul li i { color: #ff5f6d; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .vps-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-includes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .vps-intro-grid, .vps-ideal-grid, .vps-support-grid,
  .vps-monitoring-grid, .vps-backups-grid, .vps-patch-grid { grid-template-columns: 1fr; gap: 32px; }
  .vps-pricing-grid { grid-template-columns: 1fr; }
  .vps-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-reasons-grid { grid-template-columns: 1fr; }
  .vps-usecases-grid { grid-template-columns: 1fr; }
  .vps-copy h2, .vps-head h2 { font-size: 26px; }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-page .privacy-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

.privacy-page .privacy-container {
  max-width: 980px;
}

.privacy-page .privacy-card {
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(14, 28, 54, 0.06);
}

.privacy-page .privacy-card h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 14px;
}

.privacy-page .privacy-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e2a3b;
  margin-top: 28px;
  margin-bottom: 10px;
}

.privacy-page .privacy-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e2a3b;
  margin-top: 18px;
  margin-bottom: 8px;
}

.privacy-page .privacy-card p,
.privacy-page .privacy-card li {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.privacy-page .privacy-card ul {
  margin: 10px 0 14px;
  padding-left: 20px;
}

.privacy-page .privacy-contact-box {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #ffd6db;
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .privacy-page .privacy-card {
    padding: 24px 18px;
  }

  .privacy-page .privacy-card h2 {
    font-size: 28px;
  }

  .privacy-page .privacy-card h3 {
    font-size: 19px;
  }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-page .legal-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

.legal-page .legal-container {
  max-width: 980px;
}

.legal-page .legal-card {
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(14, 28, 54, 0.06);
}

.legal-page .legal-card h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 14px;
}

.legal-page .legal-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e2a3b;
  margin-top: 26px;
  margin-bottom: 10px;
}

.legal-page .legal-card p,
.legal-page .legal-card li {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.legal-page .legal-card ul {
  margin: 10px 0 14px;
  padding-left: 20px;
}

.legal-page .legal-warning {
  background: #fff8f8;
  border: 1px solid #ffd8dc;
  border-radius: 12px;
  padding: 14px 16px;
}

.legal-page .legal-contact-box {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #ffd6db;
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .legal-page .legal-card {
    padding: 24px 18px;
  }

  .legal-page .legal-card h2 {
    font-size: 28px;
  }

  .legal-page .legal-card h3 {
    font-size: 19px;
  }
}

/* ============================================================
   AFILIADOS PAGE
   ============================================================ */
.afiliados-page .af-section {
  margin-top: 120px;
}

.afiliados-page .af-copy h2,
.afiliados-page .af-center h2,
.afiliados-page .af-three-grid h3,
.afiliados-page .af-steps-copy h3,
.afiliados-page .af-products-grid h3 {
  color: #1e2a3b;
}

.afiliados-page .af-copy h2,
.afiliados-page .af-center h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.afiliados-page .af-copy p,
.afiliados-page .af-center p,
.afiliados-page .af-three-grid p,
.afiliados-page .af-steps-copy p,
.afiliados-page .af-strip p,
.afiliados-page .af-final-cta p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.afiliados-page .af-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #5f738c;
}

.afiliados-page .af-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
}

.afiliados-page .af-hero-split {
  margin-top: 70px;
}

.afiliados-page .af-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.afiliados-page .af-media img,
.afiliados-page .af-steps-media img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.afiliados-page .af-strip {
  margin-top: 70px;
  background: #f5f7fa;
  border-top: 1px solid #e6ebf1;
  border-bottom: 1px solid #e6ebf1;
  padding: 24px 0;
}

.afiliados-page .af-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.afiliados-page .af-strip article {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.afiliados-page .af-strip i {
  color: #57c5aa;
  margin-top: 4px;
}

.afiliados-page .af-trust {
  margin-top: 42px;
}

.afiliados-page .af-trust-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #5f738c;
}

.afiliados-page .af-stars {
  display: inline-flex;
  gap: 4px;
  color: #00b67a;
}

.afiliados-page .af-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.afiliados-page .af-intro-text h2 {
  margin-bottom: 14px;
}

.afiliados-page .af-intro-text a,
.afiliados-page .af-steps-copy a {
  color: #0aa3a3;
  text-decoration: underline;
}

.afiliados-page .af-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.afiliados-page .af-three-grid h3 {
  font-size: 35px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.afiliados-page .af-steps-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.afiliados-page .af-steps-copy h3 {
  font-size: 22px;
  margin: 18px 0 6px;
}

.afiliados-page .af-products-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e5e9ef;
}

.afiliados-page .af-products-grid article {
  min-height: 200px;
  border-right: 1px solid #e5e9ef;
  border-bottom: 1px solid #e5e9ef;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.afiliados-page .af-products-grid article:nth-child(4n) {
  border-right: none;
}

.afiliados-page .af-products-grid i {
  font-size: 48px;
  color: #20c4c7;
}

.afiliados-page .af-products-grid h3 {
  font-size: 30px;
  line-height: 1.2;
}

.afiliados-page .af-final-cta {
  margin-bottom: 120px;
}

.afiliados-page .af-final-cta h3 {
  font-size: 35px;
  color: #1e2a3b;
  margin-bottom: 8px;
}

.afiliados-page .af-legal-link {
  display: inline-block;
  margin-top: 14px;
  color: #5f738c;
  font-size: 11px;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .afiliados-page .af-hero-grid,
  .afiliados-page .af-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .afiliados-page .af-strip-grid,
  .afiliados-page .af-three-grid {
    grid-template-columns: 1fr;
  }

  .afiliados-page .af-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .afiliados-page .af-products-grid article:nth-child(4n) {
    border-right: 1px solid #e5e9ef;
  }

  .afiliados-page .af-products-grid article:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .afiliados-page .af-copy h2,
  .afiliados-page .af-center h2,
  .afiliados-page .af-three-grid h3,
  .afiliados-page .af-final-cta h3 {
    font-size: 26px;
  }

  .afiliados-page .af-products-grid {
    grid-template-columns: 1fr;
  }

  .afiliados-page .af-products-grid article {
    border-right: none !important;
    min-height: 170px;
  }

  .afiliados-page .af-products-grid h3 {
    font-size: 24px;
  }
}

/* ============================================================
   SSL PAGE
   ============================================================ */
.ssl-page .ssl-section {
  margin-top: 120px;
}

.ssl-page .ssl-copy h2,
.ssl-page .ssl-center h2,
.ssl-page .ssl-head h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
}

.ssl-page p,
.ssl-page .ssl-copy p,
.ssl-page .ssl-center p,
.ssl-page .ssl-plan-card li,
.ssl-page .ssl-reasons-grid p,
.ssl-page .ssl-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.ssl-page .ssl-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #00a9ad;
  margin-bottom: 10px;
}

.ssl-page .ssl-btn,
.ssl-page .ssl-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .2s;
}

.ssl-page .ssl-btn:hover,
.ssl-page .ssl-plan-btn:hover {
  opacity: .9;
}

.ssl-page .ssl-outline-btn,
.ssl-page .ssl-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #1e2a3b;
  color: #1e2a3b;
  background: transparent;
}

.ssl-page .ssl-intro {
  margin-top: 70px;
}

.ssl-page .ssl-intro-grid,
.ssl-page .ssl-validate-grid,
.ssl-page .ssl-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.ssl-page .ssl-intro-media img,
.ssl-page .ssl-validate-media img,
.ssl-page .ssl-how-media img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.ssl-page .ssl-checklist {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ssl-page .ssl-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #5f738c;
}

.ssl-page .ssl-checklist i {
  color: #00a9ad;
}

.ssl-page .ssl-head {
  text-align: center;
  margin-bottom: 30px;
}

.ssl-page .ssl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ssl-page .ssl-plan-card {
  background: #fff;
  border: 1px solid #e3e9f1;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}

.ssl-page .ssl-plan-card.is-featured {
  border: 2px solid #20c4c7;
  box-shadow: 0 10px 24px rgba(32, 196, 199, 0.14);
}

.ssl-page .ssl-plan-badge {
  display: inline-block;
  background: rgba(32, 196, 199, 0.14);
  color: #00a9ad;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  text-transform: uppercase;
  width: fit-content;
}

.ssl-page .ssl-plan-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  color: #1e2a3b;
  line-height: 1.25;
}

.ssl-page .ssl-price {
  font-size: 28px;
  color: #1e2a3b;
  font-weight: 800;
  margin-bottom: 12px;
}

.ssl-page .ssl-price small {
  font-size: 12px;
  color: #5f738c;
  font-weight: 500;
}

.ssl-page .ssl-plan-btn {
  margin-bottom: 14px;
}

.ssl-page .ssl-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ssl-page .ssl-plan-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.ssl-page .ssl-plan-card li i {
  color: #20c4c7;
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}

.ssl-page .ssl-included {
  margin-top: 34px;
}

.ssl-page .ssl-included-row {
  background: #f7fafc;
  border: 1px solid #e7edf3;
  border-radius: 14px;
  padding: 18px;
}

.ssl-page .ssl-included-title span {
  font-size: 10px;
  font-weight: 800;
  color: #00a9ad;
}

.ssl-page .ssl-included-title h3 {
  font-size: 24px;
  color: #1e2a3b;
  margin: 8px 0 12px;
}

.ssl-page .ssl-included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ssl-page .ssl-included-grid article {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.ssl-page .ssl-included-grid i {
  font-size: 16px;
  color: #20c4c7;
  margin-bottom: 6px;
}

.ssl-page .ssl-center {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.ssl-page .ssl-ov-card {
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  background: #fff;
  padding: 30px;
  text-align: center;
}

.ssl-page .ssl-ov-card h3 {
  font-size: 26px;
  color: #1e2a3b;
  margin: 6px 0 8px;
}

.ssl-page .ssl-help-grid,
.ssl-page .ssl-pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ssl-page .ssl-help-card {
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e4e9f0;
}

.ssl-page .ssl-help-card.light {
  background: #fff;
}

.ssl-page .ssl-help-card.dark {
  background: #111822;
  border-color: #111822;
}

.ssl-page .ssl-help-card.dark h3,
.ssl-page .ssl-help-card.dark p,
.ssl-page .ssl-help-card.dark .ssl-kicker {
  color: #e8edf3 !important;
}

.ssl-page .ssl-helper-strip {
  background: #d8f1f2;
  padding: 28px 0;
}

.ssl-page .ssl-helper-content {
  text-align: center;
}

.ssl-page .ssl-helper-content h3 {
  font-size: 28px;
  color: #1e2a3b;
}

.ssl-page .ssl-helper-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ssl-page .ssl-reasons-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ssl-page .ssl-reasons-grid article {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  padding: 18px;
}

.ssl-page .ssl-reasons-grid h3 {
  font-size: 20px;
  color: #1e2a3b;
  margin-bottom: 8px;
}

.ssl-page .ssl-how-points {
  display: grid;
  gap: 12px;
}

.ssl-page .ssl-how-points article {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  padding: 14px;
}

.ssl-page .ssl-how-points h3 {
  font-size: 20px;
  color: #1e2a3b;
  margin-bottom: 4px;
}

.ssl-page .ssl-mid-cta {
  background: #d7eef0;
  padding: 44px 0;
}

.ssl-page .ssl-mid-price {
  margin: 12px 0;
  font-size: 34px;
  font-weight: 800;
  color: #1e2a3b;
}

.ssl-page .ssl-mid-price small {
  font-size: 14px;
  font-weight: 500;
  color: #5f738c;
}

.ssl-page .ssl-pair-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e4e9f0;
  background: #fff;
}

.ssl-page .ssl-pair-card.dark {
  background: #244a3c;
}

.ssl-page .ssl-pair-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ssl-page .ssl-pair-copy {
  padding: 14px 16px 16px;
}

.ssl-page .ssl-pair-copy span {
  font-size: 11px;
  font-weight: 700;
  color: #00a9ad;
}

.ssl-page .ssl-pair-copy h3 {
  margin-top: 6px;
  font-size: 22px;
  color: #1e2a3b;
}

.ssl-page .ssl-pair-card.dark .ssl-pair-copy span,
.ssl-page .ssl-pair-card.dark .ssl-pair-copy h3 {
  color: #e9f4ef;
}

.ssl-page .ssl-faq-list {
  max-width: 860px;
  margin: 26px auto 0;
  display: grid;
  gap: 10px;
}

.ssl-page .ssl-faq-item {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #fff;
}

.ssl-page .ssl-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2a3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ssl-page .ssl-faq-item summary::after {
  content: '+';
  color: #20c4c7;
  font-size: 20px;
}

.ssl-page .ssl-faq-item[open] summary::after {
  content: '-';
}

.ssl-page .ssl-faq-body {
  padding: 0 18px 16px;
}

.ssl-page .ssl-faq {
  margin-bottom: 120px;
}

@media (max-width: 1200px) {
  .ssl-page .ssl-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ssl-page .ssl-included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ssl-page .ssl-intro-grid,
  .ssl-page .ssl-validate-grid,
  .ssl-page .ssl-how-grid,
  .ssl-page .ssl-help-grid,
  .ssl-page .ssl-pair-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ssl-page .ssl-reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ssl-page .ssl-copy h2,
  .ssl-page .ssl-center h2,
  .ssl-page .ssl-head h2 {
    font-size: 26px;
  }

  .ssl-page .ssl-pricing-grid,
  .ssl-page .ssl-included-grid {
    grid-template-columns: 1fr;
  }

  .ssl-page .ssl-helper-content h3 {
    font-size: 22px;
  }
}

/* ============================================================
   SEGURIDAD SITIO WEB PAGE
   ============================================================ */
.seguridad-page .sec-section {
  margin-top: 120px;
}

.seguridad-page .sec-copy h2,
.seguridad-page .sec-center h2,
.seguridad-page .sec-included-title h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
}

.seguridad-page p,
.seguridad-page .sec-copy p,
.seguridad-page .sec-center p,
.seguridad-page .sec-plan-card li,
.seguridad-page .sec-benefit-text p,
.seguridad-page .sec-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.seguridad-page .sec-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #00a9ad;
  margin-bottom: 10px;
}

.seguridad-page .sec-btn,
.seguridad-page .sec-plan-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
}

.seguridad-page .sec-intro {
  margin-top: 70px;
}

.seguridad-page .sec-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.seguridad-page .sec-intro-media img,
.seguridad-page .sec-benefit-media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.seguridad-page .sec-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 8px;
}

.seguridad-page .sec-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #5f738c;
}

.seguridad-page .sec-checklist i,
.seguridad-page .sec-rating i {
  color: #00a9ad;
}

.seguridad-page .sec-rating {
  margin-top: 10px;
  font-size: 11px;
  color: #5f738c;
}

.seguridad-page .sec-anchorbar {
  margin-top: 30px;
}

.seguridad-page .sec-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border-top: 1px solid #e5ebf2;
  border-bottom: 1px solid #e5ebf2;
  padding: 12px 8px;
}

.seguridad-page .sec-anchor-links a {
  text-decoration: none;
  font-size: 11px;
  color: #5f738c;
}

.seguridad-page .sec-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seguridad-page .sec-plan-card {
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #fff;
  padding: 20px 16px;
  position: relative;
}

.seguridad-page .sec-plan-card.is-featured {
  border: 2px solid #20c4c7;
  box-shadow: 0 10px 24px rgba(32, 196, 199, .15);
}

.seguridad-page .sec-plan-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #20c4c7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.seguridad-page .sec-plan-card h3 {
  font-size: 30px;
  color: #1e2a3b;
  margin-bottom: 6px;
}

.seguridad-page .sec-price {
  font-size: 36px;
  color: #1e2a3b;
  font-weight: 800;
  margin-bottom: 2px;
}

.seguridad-page .sec-price small {
  font-size: 13px;
  color: #5f738c;
  font-weight: 500;
}

.seguridad-page .sec-plan-sub {
  margin-bottom: 10px;
}

.seguridad-page .sec-plan-btn {
  width: 100%;
  margin-bottom: 12px;
}

.seguridad-page .sec-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.seguridad-page .sec-plan-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.seguridad-page .sec-plan-card li i {
  color: #20c4c7;
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}

.seguridad-page .sec-included-wrap {
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 20px;
}

.seguridad-page .sec-included-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.seguridad-page .sec-included-grid article {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  padding: 12px;
}

.seguridad-page .sec-included-grid i {
  color: #20c4c7;
  margin-bottom: 6px;
  font-size: 16px;
}

.seguridad-page .sec-included-grid h3 {
  font-size: 16px;
  color: #1e2a3b;
  margin-bottom: 4px;
}

.seguridad-page .sec-center {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.seguridad-page .sec-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.seguridad-page .sec-benefit-text,
.seguridad-page .sec-benefit-media {
  border-radius: 14px;
}

.seguridad-page .sec-benefit-text h2,
.seguridad-page .sec-benefit-text h3 {
  color: #1e2a3b;
}

.seguridad-page .sec-benefit-text h2 {
  font-size: 35px;
}

.seguridad-page .sec-benefit-text h3 {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.seguridad-page .sec-faq-list {
  max-width: 860px;
  margin: 24px auto 0;
  display: grid;
  gap: 10px;
}

.seguridad-page .sec-faq-item {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #fff;
}

.seguridad-page .sec-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2a3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seguridad-page .sec-faq-item summary::after {
  content: '+';
  color: #20c4c7;
  font-size: 20px;
}

.seguridad-page .sec-faq-item[open] summary::after {
  content: '-';
}

.seguridad-page .sec-faq-body {
  padding: 0 18px 16px;
}

.seguridad-page .sec-faq {
  margin-bottom: 120px;
}

@media (max-width: 1200px) {
  .seguridad-page .sec-pricing-grid {
    grid-template-columns: 1fr;
  }

  .seguridad-page .sec-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .seguridad-page .sec-intro-grid,
  .seguridad-page .sec-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .seguridad-page .sec-copy h2,
  .seguridad-page .sec-center h2,
  .seguridad-page .sec-included-title h2,
  .seguridad-page .sec-benefit-text h2,
  .seguridad-page .sec-benefit-text h3 {
    font-size: 26px;
  }

  .seguridad-page .sec-included-grid {
    grid-template-columns: 1fr;
  }

  .seguridad-page .sec-price {
    font-size: 30px;
  }
}

/* ============================================================
   GLOBAL TEXT COLOR RULES (HERO / CONTENT / FOOTER)
   ============================================================ */
/* Hero paragraphs must always be white */
.hero .hero-text p,
.hosting-hero .hosting-hero-content p {
  color: #ffffff !important;
}

/* Footer/prefooter paragraphs must always be white */
.prefooter-wrap p,
.footer-main p,
.footer-bottom p {
  color: #ffffff !important;
}

/* Main content paragraphs keep gray between hero and footer */
.hosting-page .hosting-hero ~ section p,
.sitios-page .hosting-hero ~ section p,
.wordpress-page .hosting-hero ~ section p,
.vps-page .hosting-hero ~ section p,
.correo-page .hosting-hero ~ section p,
.privacy-page .hosting-hero ~ section p,
.legal-page .hosting-hero ~ section p,
.afiliados-page .hosting-hero ~ section p,
.ssl-page .hosting-hero ~ section p,
.seguridad-page .hosting-hero ~ section p,
.app-page .hosting-hero ~ section p,
.dedicated-page .hosting-hero ~ section p {
  color: #5f738c !important;
}

/* ============================================================
   HOSTINGWSE APP PAGE
   ============================================================ */
.app-page .app-section {
  margin-top: 120px;
}

.app-page .app-copy h2,
.app-page .app-center h2,
.app-page .app-mosaic-card h3,
.app-page .app-price-card h3 {
  color: #1e2a3b;
}

.app-page .app-copy h2,
.app-page .app-center h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.app-page .app-copy p,
.app-page .app-center p,
.app-page .app-mosaic-card p,
.app-page .app-function-grid p,
.app-page .app-price-card li,
.app-page .app-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.app-page .app-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #00a9ad;
}

.app-page .app-btn,
.app-page .app-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
}

.app-page .app-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  color: #1e2a3b;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
}

.app-page .app-intro {
  margin-top: 70px;
}

.app-page .app-intro-grid,
.app-page .app-feature-lead-grid,
.app-page .app-templates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.app-page .app-intro-media img,
.app-page .app-card-preview img,
.app-page .app-template-media img,
.app-page .app-mosaic-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.app-page .app-checklist,
.app-page .app-template-list,
.app-page .app-price-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 8px;
}

.app-page .app-checklist li,
.app-page .app-template-list li,
.app-page .app-price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.app-page .app-checklist i,
.app-page .app-function-grid i,
.app-page .app-price-card li i {
  color: #20c4c7;
  margin-top: 2px;
  flex-shrink: 0;
}

.app-page .app-template-list i {
  color: #1e2a3b;
  font-size: 7px;
  margin-top: 9px;
}

.app-page .app-rating {
  margin-top: 12px;
  font-size: 11px;
  color: #5f738c;
}

.app-page .app-rating i {
  color: #00b67a;
}

.app-page .app-anchorbar {
  margin-top: 28px;
}

.app-page .app-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border-top: 1px solid #e5ebf2;
  border-bottom: 1px solid #e5ebf2;
  padding: 12px 8px;
}

.app-page .app-anchor-links a {
  text-decoration: none;
  color: #5f738c;
  font-size: 11px;
}

.app-page .app-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.app-page .app-mosaic-card h3 {
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.app-page .app-function-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
}

.app-page .app-function-grid article {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.app-page .app-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.app-page .app-price-card {
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid #e4e9f0;
}

.app-page .app-price-card.light {
  background: #f6f8fb;
}

.app-page .app-price-card.dark {
  background: #121212;
  border-color: #121212;
}

.app-page .app-price-card.dark h3,
.app-page .app-price-card.dark p,
.app-page .app-price-card.dark li {
  color: #ffffff !important;
}

.app-page .app-price-card h3 {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.app-page .app-download-btn,
.app-page .app-outline-btn {
  margin-top: 12px;
}

.app-page .app-faq-list {
  max-width: 860px;
  margin: 24px auto 0;
  display: grid;
  gap: 10px;
}

.app-page .app-faq-item {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #fff;
}

.app-page .app-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2a3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-page .app-faq-item summary::after {
  content: '+';
  color: #20c4c7;
  font-size: 20px;
}

.app-page .app-faq-item[open] summary::after {
  content: '-';
}

.app-page .app-faq-body {
  padding: 0 18px 16px;
}

.app-page .app-faq {
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .app-page .app-intro-grid,
  .app-page .app-feature-lead-grid,
  .app-page .app-templates-grid,
  .app-page .app-pricing-grid,
  .app-page .app-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .app-page .app-function-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .app-page .app-copy h2,
  .app-page .app-center h2,
  .app-page .app-price-card h3 {
    font-size: 26px;
  }

  .app-page .app-mosaic-card h3 {
    font-size: 22px;
  }

  .app-page .app-function-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DEDICATED SERVERS PAGE
   ============================================================ */
.dedicated-page .ded-section {
  margin-top: 120px;
}

.dedicated-page .ded-copy h2,
.dedicated-page .ded-center h2,
.dedicated-page .ded-included-title h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
}

.dedicated-page .ded-copy p,
.dedicated-page .ded-center p,
.dedicated-page .ded-plan-card li,
.dedicated-page .ded-included-grid p,
.dedicated-page .ded-reason-card p,
.dedicated-page .ded-usecases-grid p,
.dedicated-page .ded-faq-body p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.8;
}

.dedicated-page .ded-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #00a9ad;
}

.dedicated-page .ded-btn,
.dedicated-page .ded-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
}

.dedicated-page .ded-intro {
  margin-top: 70px;
}

.dedicated-page .ded-intro-grid,
.dedicated-page .ded-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 54px;
  align-items: center;
}

.dedicated-page .ded-intro-media img,
.dedicated-page .ded-media-card img,
.dedicated-page .ded-reason-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.dedicated-page .ded-checklist,
.dedicated-page .ded-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 8px;
}

.dedicated-page .ded-checklist li,
.dedicated-page .ded-plan-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dedicated-page .ded-checklist i,
.dedicated-page .ded-plan-card li i {
  color: #20c4c7;
  margin-top: 2px;
  flex-shrink: 0;
}

.dedicated-page .ded-rating {
  margin-top: 12px;
  font-size: 11px;
  color: #5f738c;
}

.dedicated-page .ded-rating i {
  color: #00b67a;
}

.dedicated-page .ded-anchorbar {
  margin-top: 28px;
}

.dedicated-page .ded-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border-top: 1px solid #e5ebf2;
  border-bottom: 1px solid #e5ebf2;
  padding: 12px 8px;
}

.dedicated-page .ded-anchor-links a {
  text-decoration: none;
  color: #5f738c;
  font-size: 11px;
}

.dedicated-page .ded-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}

.dedicated-page .ded-toggle-wrap button {
  border: 1px solid #dbe3ec;
  background: #fff;
  color: #1e2a3b;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
}

.dedicated-page .ded-toggle-wrap button.is-active {
  background: #111822;
  color: #fff;
}

.dedicated-page .ded-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dedicated-page .ded-pricing-grid.is-hidden {
  display: none;
}

.dedicated-page .ded-plan-card {
  position: relative;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #fff;
  padding: 18px 16px;
}

.dedicated-page .ded-plan-card.is-featured {
  border: 2px solid #20c4c7;
  box-shadow: 0 10px 24px rgba(32, 196, 199, .14);
}

.dedicated-page .ded-plan-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #20c4c7;
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.dedicated-page .ded-plan-card h3 {
  font-size: 20px;
  color: #1e2a3b;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dedicated-page .ded-plan-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1e2a3b;
  margin-bottom: 6px;
}

.dedicated-page .ded-plan-old {
  font-size: 12px;
  color: #8fa1b4;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.dedicated-page .ded-price {
  font-size: 34px;
  color: #1e2a3b;
  font-weight: 800;
  margin-bottom: 10px;
}

.dedicated-page .ded-price small {
  font-size: 12px;
  color: #5f738c;
  font-weight: 500;
}

.dedicated-page .ded-plan-location {
  font-size: 11px;
  font-weight: 700;
  color: #20c4c7;
  margin: -2px 0 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.dedicated-page .ded-plan-btn {
  width: 100%;
  margin-bottom: 12px;
}

.dedicated-page .ded-included-wrap {
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 20px;
}

.dedicated-page .ded-included-title span {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #00a9ad;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dedicated-page .ded-included-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.dedicated-page .ded-included-grid article {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  padding: 12px;
}

.dedicated-page .ded-included-grid i {
  color: #20c4c7;
  font-size: 16px;
  margin-bottom: 6px;
}

.dedicated-page .ded-included-grid h3,
.dedicated-page .ded-reason-card h3,
.dedicated-page .ded-usecases-grid h3 {
  color: #1e2a3b;
}

.dedicated-page .ded-included-grid h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.dedicated-page .ded-center {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.dedicated-page .ded-reasons-grid,
.dedicated-page .ded-usecases-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dedicated-page .ded-reason-card,
.dedicated-page .ded-usecases-grid article {
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.dedicated-page .ded-reason-card h3 {
  font-size: 22px;
  line-height: 1.2;
  padding: 16px 16px 6px;
}

.dedicated-page .ded-reason-card p {
  padding: 0 16px 18px !important;
}

.dedicated-page .ded-usecases-grid article {
  padding: 18px;
}

.dedicated-page .ded-usecases-grid h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.dedicated-page .ded-faq-list {
  max-width: 860px;
  margin: 24px auto 0;
  display: grid;
  gap: 10px;
}

.dedicated-page .ded-faq-item {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #fff;
}

.dedicated-page .ded-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2a3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dedicated-page .ded-faq-item summary::after {
  content: '+';
  color: #20c4c7;
  font-size: 20px;
}

.dedicated-page .ded-faq-item[open] summary::after {
  content: '-';
}

.dedicated-page .ded-faq-body {
  padding: 0 18px 16px;
}

.dedicated-page .ded-faq {
  margin-bottom: 120px;
}

@media (max-width: 1200px) {
  .dedicated-page .ded-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dedicated-page .ded-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dedicated-page .ded-intro-grid,
  .dedicated-page .ded-split-grid,
  .dedicated-page .ded-reasons-grid,
  .dedicated-page .ded-usecases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .dedicated-page .ded-copy h2,
  .dedicated-page .ded-center h2,
  .dedicated-page .ded-included-title h2 {
    font-size: 26px;
  }

  .dedicated-page .ded-pricing-grid,
  .dedicated-page .ded-included-grid {
    grid-template-columns: 1fr;
  }

  .dedicated-page .ded-price {
    font-size: 28px;
  }
}

/* ============================================================
   VPS PAGE
   ============================================================ */

/* --- GLOBAL SCOPED SPACING --- */
.vps-page .vps-section { margin-top: 120px; }
.vps-page .contact-logos { margin-bottom: 150px; }

.vps-copy .vps-kicker,
.vps-copy .vps-label-badge {
  display: inline-block;
  background: rgba(255,95,109,.1);
  color: #ff5f6d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.vps-copy h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  line-height: 1.2;
  margin-bottom: 16px;
}
.vps-copy p, .vps-section p {
  font-size: 12px !important;
  color: #5f738c !important;
  line-height: 1.7;
}
.vps-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.vps-head h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1e2a3b;
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.vps-btn.vps-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  transition: opacity .2s;
}
.vps-btn.vps-btn-primary:hover { opacity: .88; }

/* --- INTRO SPLIT --- */
.vps-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vps-intro-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.vps-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vps-checklist li {
  font-size: 12px !important;
  color: #5f738c !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vps-checklist i { color: #ff5f6d; flex-shrink: 0; }
.vps-intro-trust {
  font-size: 11px;
  color: #5f738c;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.vps-intro-trust i { color: #f5a623; font-size: 13px; }
.vps-intro-trust a { color: #ff5f6d; text-decoration: none; }

/* --- PRICING SWITCH --- */
.vps-pricing-switch {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 2px solid #e4e9f0;
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.vps-pricing-switch button {
  border: none;
  background: transparent;
  padding: 10px 26px;
  font-size: 12px;
  font-weight: 600;
  color: #5f738c;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.vps-pricing-switch button.is-active {
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  border-radius: 999px;
}

/* --- PRICING CARDS --- */
.vps-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vps-pricing-grid.is-hidden { display: none; }
.vps-plan-card {
  background: #fff;
  border: 2px solid #e4e9f0;
  border-radius: 20px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
  position: relative;
}
.vps-plan-card:hover { box-shadow: 0 8px 32px rgba(255,95,109,.12); border-color: #ff5f6d; }
.vps-plan-card.is-featured { border-color: #ff5f6d; box-shadow: 0 8px 40px rgba(255,95,109,.18); }
.vps-plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#ff5f6d,#ff7a5c);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.vps-plan-spec { font-size: 18px; font-weight: 700; color: #1e2a3b; margin-bottom: 10px; }
.vps-plan-discount {
  background: rgba(255,95,109,.1);
  color: #ff5f6d;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 8px;
}
.vps-plan-old { text-decoration: line-through; opacity: .55; text-transform: none; }
.vps-plan-price { font-size: 28px; font-weight: 800; color: #1e2a3b; }
.vps-plan-price small { font-size: 13px; font-weight: 500; color: #5f738c; }
.vps-plan-term { font-size: 10px !important; color: #8a9bae !important; margin-top: -2px; margin-bottom: 16px; }
.vps-plan-btn {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #ff5f6d, #ff7a5c);
  color: #fff;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: opacity .2s;
}
.vps-plan-btn:hover { opacity: .88; }
.vps-plan-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vps-plan-card ul li { font-size: 11px !important; color: #5f738c !important; display: flex; align-items: center; gap: 10px; }
.vps-plan-card ul li i { color: #ff5f6d; width: 14px; flex-shrink: 0; }

/* --- INCLUDES GRID --- */
.vps-includes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.vps-includes-grid article { background: #fff; border: 1px solid #e4e9f0; border-radius: 16px; padding: 24px 20px; text-align: center; }
.vps-includes-grid i { font-size: 28px; color: #ff5f6d; margin-bottom: 14px; display: block; }
.vps-includes-grid h3 { font-size: 14px; font-weight: 700; color: #1e2a3b; margin-bottom: 8px; }

/* --- SPLIT SECTIONS --- */
.vps-ideal-grid, .vps-support-grid, .vps-monitoring-grid, .vps-backups-grid, .vps-patch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.vps-ideal-grid .vps-ideal-media img,
.vps-support-grid .vps-support-media img,
.vps-monitoring-grid .vps-monitoring-media img,
.vps-backups-grid .vps-backups-media img,
.vps-patch-grid .vps-patch-media img {
  width: 100%; border-radius: 20px; object-fit: cover; max-height: 340px;
}

/* --- REASONS (3 cards) --- */
.vps-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vps-reason-card { background: #fff; border: 1px solid #e4e9f0; border-radius: 20px; overflow: hidden; }
.vps-reason-card img { width: 100%; height: 180px; object-fit: cover; }
.vps-reason-card h3 { font-size: 15px; font-weight: 700; color: #1e2a3b; padding: 18px 20px 6px; }
.vps-reason-card p { padding: 0 20px 20px !important; }

/* --- USE CASES --- */
.vps-usecases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vps-usecases-grid article { background: #fff; border: 1px solid #e4e9f0; border-radius: 16px; padding: 26px 22px; }
.vps-usecases-grid i { font-size: 26px; color: #ff5f6d; margin-bottom: 14px; display: block; }
.vps-usecases-grid h3 { font-size: 14px; font-weight: 700; color: #1e2a3b; margin-bottom: 8px; }

/* --- FAQ --- */
.vps-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.vps-faq-item { border: 1px solid #e4e9f0; border-radius: 12px; overflow: hidden; background: #fff; }
.vps-faq-item summary {
  list-style: none; cursor: pointer; font-size: 14px; font-weight: 600; color: #1e2a3b;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; user-select: none;
}
.vps-faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: #ff5f6d; flex-shrink: 0; }
.vps-faq-item[open] summary::after { content: '-'; }
.vps-faq-body { padding: 0 22px 18px; }
.vps-faq-body ul { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 8px; }
.vps-faq-body ul li { font-size: 12px !important; color: #5f738c !important; display: flex; align-items: center; gap: 8px; }
.vps-faq-body ul li i { color: #ff5f6d; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .vps-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-includes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .vps-intro-grid, .vps-ideal-grid, .vps-support-grid,
  .vps-monitoring-grid, .vps-backups-grid, .vps-patch-grid { grid-template-columns: 1fr; gap: 32px; }
  .vps-pricing-grid { grid-template-columns: 1fr; }
  .vps-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-reasons-grid { grid-template-columns: 1fr; }
  .vps-usecases-grid { grid-template-columns: 1fr; }
  .vps-copy h2, .vps-head h2 { font-size: 26px; }
}
