:root{
  --ry-brand:#009999;;   /* Redyon */
  --ry-brand2:#663399;
  --ry-ink:#1d1d1f;
  --ry-muted: rgba(29,29,31,.62);
  --ry-border: rgba(0,0,0,.08);
  --ry-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.ryX{ background:#fff; color:#1d1d1f; }
  .ryX-hero{
    position:relative;
    min-height: 92vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    color:#fff;
    background:
      radial-gradient(1200px 600px at 80% 0%, rgba(255,255,255,.10), transparent 60%),
      radial-gradient(900px 500px at 0% 100%, rgba(255,255,255,.08), transparent 55%),
      linear-gradient(135deg, var(--ry-blueOficial), var(--ry-blue2Oficial));  
      /* aqui */
  }

  .ryX-bg{ position:absolute; inset:0; pointer-events:none; }
  .ryX-net{
    position:absolute; inset:0;
    width:100%; height:100%;
    opacity:.55;
    filter: blur(.2px);
  }
  .ryX-particles{
    position:absolute; inset:0;
    width:100%; height:100%;
    opacity:.55;
  }

  .ryX-hero__inner{
    width: min(1120px, calc(100% - 32px));
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items:center;
    position:relative;
    z-index:2;
    padding: 86px 0;
  }

  .ryX-eyebrow{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom:10px;
  }
  .ryX-hero__content h1{
    margin:0 0 12px;
    font-size: clamp(42px, 6vw, 68px);
    letter-spacing: -1px;
    font-weight:700;
  }
  .ryX-hero__content p{
    margin:0;
    font-size:18px;
    line-height:1.65;
    color: rgba(255,255,255,.88);
    max-width: 62ch;
  }
  .ryX-hero__content p strong{ color:#fff; font-weight:700; }

  /* Glass buttons */
  .ryX-actions{
    margin-top:26px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
  }
  .ryX-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 18px;
    border-radius:16px;
    text-decoration:none;
    font-weight:650;
    letter-spacing:.1px;
    transition: transform .2s ease, filter .2s ease, background .2s ease;
    border: 1px solid rgba(255,255,255,.22);
    color:#fff;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
  }
  .ryX-btn:hover{ transform: translateY(-2px); filter: brightness(1.02); }

  .ryX-btn--primary{
    color: var(--ry-blue2);
    background: #fff;
    border-color: rgba(255,255,255,.60);
    backdrop-filter: none;
  }
  .ryX-btn--glass{
    background: rgba(255,255,255,.12);
  }
  .ryX-btn--block{ width:100%; margin-top:12px; }

  .ryX-chips{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }
  .ryX-chip{
    font-size:13px;
    font-weight:600;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    padding:10px 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
  }

  .ryX-note{
    margin-top:12px;
    font-size:12.8px;
    color: rgba(255,255,255,.78);
  }

  /* Right panel (glass) */
  .ryX-hero__panel{
    border-radius:24px;
    border:1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(0,0,0,.20);
    padding:16px;
  }
  .ryX-panel__top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
  .ryX-tag{
    font-size:10px;
    font-weight:700;
    letter-spacing:.9px;
    text-transform:uppercase;
    padding:6px 10px;
    border-radius:999px;
    background: rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.22);
    color:#fff;
  }
  .ryX-mini{ font-size:12px; font-weight:650; color: rgba(255,255,255,.85); }

  .ryX-metrics{ display:grid; gap:10px; margin-top:10px; }
  .ryX-metric{
    display:flex; justify-content:space-between; align-items:center;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.18);
  }
  .ryX-metric__label{ font-size:13px; color: rgba(255,255,255,.78); font-weight:600; }
  .ryX-metric__value{ font-size:13px; color:#fff; font-weight:700; }

  .ryX-panel__line{ height:1px; background: rgba(255,255,255,.18); margin:12px 0; }
  .ryX-panel__text{ margin:0; font-size:13px; color: rgba(255,255,255,.82); line-height:1.45; }

  /* Scroll indicator */
  .ryX-scroll{
    position:absolute;
    bottom:18px;
    left:50%;
    transform: translateX(-50%);
    opacity:.8;
  }
  .ryX-scroll span{
    display:block;
    width:22px; height:36px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.35);
    position:relative;
  }
  .ryX-scroll span::after{
    content:"";
    width:4px; height:4px;
    border-radius:999px;
    background: rgba(255,255,255,.8);
    position:absolute;
    left:50%;
    top:8px;
    transform: translateX(-50%);
    animation: ryXdot 1.4s infinite ease-in-out;
  }
  @keyframes ryXdot{
    0%{ transform: translateX(-50%) translateY(0); opacity:.9; }
    70%{ transform: translateX(-50%) translateY(14px); opacity:.2; }
    100%{ opacity:0; }
  }

  /* Intro animation (Keynote-style) */
  .ryX-in{
    opacity:0;
    transform: translateY(10px);
    animation: ryXin .9s ease forwards;
    animation-delay: var(--d, 0ms);
  }
  @keyframes ryXin{
    to{ opacity:1; transform: translateY(0); }
  }

  /* ===== TECH ===== */
  .ryX-tech{
    padding: 72px 0;
    background:#fff;
    color:#1d1d1f;
  }
  .ryX-tech__inner{ width: min(1120px, calc(100% - 32px)); margin:0 auto; }

  .ryX-tech__head{ text-align:center; margin-bottom:18px; }
  .ryX-tech__head h2{
    margin:0 0 10px;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing:-.5px;
    font-weight:650;
  }
  .ryX-tech__head p{ margin:0; color: rgba(29,29,31,.62); }

  .ryX-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:18px;
    margin-top:18px;
  }

  .ryX-card{
    border:1px solid rgba(0,0,0,.08);
    border-radius:22px;
    background:#fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    padding:22px;
  }
  .ryX-card h3{
    margin:0 0 10px;
    font-size:18px;
    letter-spacing:-.2px;
    font-weight:650;
  }
  .ryX-card ul{ margin:0; padding-left:18px; color: rgba(29,29,31,.85); line-height:1.55; }
  .ryX-card li{ margin:8px 0; }

  .ryX-process{
    margin-top:22px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:22px;
    background:#fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    padding:18px;
  }
  .ryX-process__head{ text-align:center; margin-bottom:10px; }
  .ryX-process__head h3{ margin:0 0 6px; font-size:18px; font-weight:650; }
  .ryX-process__head p{ margin:0; color: rgba(29,29,31,.62); }

  .ryX-steps{
    margin:12px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
    color: rgba(29,29,31,.85);
  }
  .ryX-steps li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px 10px;
    border:1px solid rgba(0,0,0,.06);
    border-radius:16px;
    background: rgba(0,0,0,.02);
  }
  .ryX-steps li span{
    width:26px; height:26px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background: rgba(11,91,211,.10);
    color: rgba(11,91,211,.95);
    font-weight:750;
    flex:0 0 auto;
  }

  .ryX-ctaBox{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:14px;
    background:
      radial-gradient(800px 260px at 85% -35%, rgba(11,91,211,.08), transparent 60%),
      linear-gradient(180deg, #ffffff, #fbfdff);
  }
  .ryX-ctaBox h4{ margin:0 0 6px; font-size:16px; font-weight:650; }
  .ryX-ctaBox p{ margin:0; color: rgba(29,29,31,.62); }

  /* FAQ */
  .ryX-faq{
    margin-top:18px;
    border:1px solid rgba(0,0,0,.08);
    border-radius:22px;
    background:#fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    padding:18px;
  }
  .ryX-faq h3{ margin:0 0 10px; font-size:18px; font-weight:650; }

  .ryX-qa{
    border:1px solid rgba(0,0,0,.06);
    border-radius:16px;
    padding:12px 12px;
    background: rgba(0,0,0,.02);
    margin-top:10px;
  }
  .ryX-qa summary{
    cursor:pointer;
    font-weight:650;
    color: rgba(29,29,31,.88);
    list-style:none;
  }
  .ryX-qa summary::-webkit-details-marker{ display:none; }
  .ryX-qa div{
    margin-top:10px;
    color: rgba(29,29,31,.72);
    line-height:1.55;
  }

  /* Scroll reveal */
  .ryX-reveal{
    opacity:0;
    transform: translateY(10px);
    transition: opacity .55s ease, transform .55s ease;
    transition-delay: var(--d, 0ms);
  }
  .ryX-reveal.is-visible{
    opacity:1;
    transform: translateY(0);
  }

  @media (max-width: 980px){
    .ryX-hero__inner{ grid-template-columns:1fr; padding: 76px 0; }
    .ryX-grid{ grid-template-columns:1fr; }
    .ryX-ctaBox{ flex-direction:column; align-items:stretch; }
    .ryX-btn--block{ width:100%; }
  }

  @media (prefers-reduced-motion: reduce){
    .ryX-in{ opacity:1; transform:none; animation:none; }
    .ryX-reveal{ opacity:1; transform:none; transition:none; }
    .ryX-scroll span::after{ animation:none; }
  }

  /* Spotlight (luz que sigue al mouse) */
.ryX-spotlight{
  position:absolute;
  inset:-20%;
  background: radial-gradient(
    520px 420px at var(--sx, 70%) var(--sy, 30%),
    rgba(255,255,255,.16),
    rgba(255,255,255,.06) 35%,
    transparent 70%
  );
  opacity: .85;
  filter: blur(2px);
  transition: opacity .25s ease;
}

/* Dot mesh */
.ryX-dots{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.55;
}

/* Ajuste de capas */
.ryX-net{ opacity:.28; }         /* más sutil el SVG */
.ryX-particles{ opacity:.35; }   /* partículas más finas */

/* En móvil/low power, baja intensidad */
@media (max-width: 720px){
  .ryX-spotlight{ opacity:.55; }
  .ryX-dots{ opacity:.45; }
}

@media (prefers-reduced-motion: reduce){
  .ryX-spotlight{ display:none; }
}
/* ==============================
   Highlight Residencial
   Prioridad elegante estilo Apple
============================== */

.ryResidential-highlight{
  padding:60px 20px;
  background:#ffffff;
}

.ryResidential-box{
  max-width:1000px;
  margin:0 auto;
  border-radius:28px;
  border:1px solid rgba(0,0,0,.08);
  background:
    radial-gradient(800px 240px at 85% -35%, rgba(11,91,211,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  box-shadow: 0 28px 80px rgba(0,0,0,.08);
  padding:50px 40px;
  text-align:center;
}

.ryResidential-content h2{
  margin:0 0 12px;
  font-size:32px;
  letter-spacing:-.5px;
  font-weight:700;
  color:#1d1d1f;
}

.ryResidential-content p{
  margin:0 auto 24px;
  max-width:520px;
  color:rgba(29,29,31,.65);
  font-size:16px;
  line-height:1.6;
}

.ryResidential-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  color:#ffffff;
  background:linear-gradient(135deg,#0b5bd3,#0a3f9e);
  box-shadow:0 12px 30px rgba(11,91,211,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}

.ryResidential-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(11,91,211,.45);
}

@media (max-width: 768px){
  .ryResidential-box{
    padding:40px 20px;
  }
}



.ryHomeHero{
  padding: 72px 0;
  /* background:
    radial-gradient(1200px 600px at 70% -10%, rgba(11,91,211,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(10,63,158,.10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f6f7fb 85%, #ffffff); */
  border-bottom: 1px solid var(--ry-border);
}

.ryHomeHero__inner{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:center;
}

.ryHomeHero__eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color: rgba(29,29,31,.62);
  margin-bottom:10px;
}

.ryHomeHero__copy h1{
  margin:0 0 12px;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -1px;
  font-weight: 750;
  color: var(--ry-ink);
}

.ryHomeHero__copy p{
  margin:0;
  font-size:18px;
  line-height:1.65;
  color: var(--ry-muted);
  max-width: 62ch;
}

.ryHomeHero__actions{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.ryHomeHero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:650;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color: var(--ry-brand2);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .2s ease;
}
/* .ryHomeHero__btn:hover{ transform: translateY(-1px); }

.ryHomeHero__btn--ghost{
  background: linear-gradient(135deg, var(--ry-brand), var(--ry-brand2));
  color:#fff;
  border-color: rgba(0,0,0,.08);
} */

.ryHomeHero__chips{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.ryHomeHero__chip{
  font-size:13px;
  font-weight:600;
  color: rgba(29,29,31,.78);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.08);
  padding:10px 12px;
  border-radius:999px;
}

.ryHomeHero__bizLink{
  display:inline-block;
  margin-top:16px;
  font-size:14px;
  font-weight:650;
  text-decoration:none;
  color: rgba(29,29,31,.70);
  transition: color .2s ease, transform .2s ease;
}
.ryHomeHero__bizLink:hover{
  color: var(--ry-brand);
  transform: translateX(2px);
}

.ryHomeHero__note{
  display:block;
  margin-top:10px;
  color: rgba(29,29,31,.55);
  font-size:12.5px;
}

/* Panel preview (Apple glass) */
.ryHomeHero__panel{
  border-radius:24px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--ry-shadow);
  padding:16px;
}

.ryHomeHero__panelTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.ryHomeHero__tag{
  font-size:10px;
  font-weight:700;
  letter-spacing:.9px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(11,91,211,.10);
  border:1px solid rgba(11,91,211,.18);
  color: var(--ry-brand2);
}
.ryHomeHero__mini{
  font-size:12px;
  font-weight:650;
  color: rgba(29,29,31,.62);
}

.ryHomeHero__preview{
  display:grid;
  gap:10px;
  margin:10px 0 12px;
}
.ryHomeHero__row{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  color: rgba(29,29,31,.72);
  font-weight:600;
  font-size:13px;
}
.ryHomeHero__row strong{
  color: rgba(29,29,31,.92);
  font-weight:750;
}

.ryHomeHero__btn--panel{
  width:100%;
  background: #fff;
  color: var(--ry-brand2);
}

@media (max-width: 980px){
  .ryHomeHero__inner{ grid-template-columns:1fr; }
}


/* desde aqui */
:root{
  --ry-blue:#d38d0b;   /* Redyon */
  --ry-blue2:#0a3f9e;
  --ry-ink:#1d1d1f;
  --ry-muted: rgba(29,29,31,.62);
  --ry-border: rgba(0,0,0,.08);
}

.ryHomeHero2{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg,#ffffff,#f6f8fc);
  border-bottom: 1px solid var(--ry-border);
}

.ryHomeHero2__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* blobs suaves (cálidos y “friendly”) */
.ryHomeHero2__blob{
  position:absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .20;
}

.ryHomeHero2__blob--a{
  background: rgba(11,91,211,.55);
  top: -220px;
  left: -220px;
}

.ryHomeHero2__blob--b{
  background: rgba(76,195,255,.55);
  bottom: -260px;
  right: -240px;
}

/* Mark (hogar + wifi) */
.ryHomeHero2__mark{
  position:absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 32px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
  display:grid;
  place-items:center;
}

.ryHomeHero2__house{
  width: 86px;
  height: 64px;
  border-radius: 16px;
  background: rgba(11,91,211,.10);
  border: 1px solid rgba(11,91,211,.18);
  position: relative;
}

.ryHomeHero2__house::before{
  content:"";
  position:absolute;
  left:50%;
  top:-34px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 52px solid transparent;
  border-right: 52px solid transparent;
  border-bottom: 46px solid rgba(11,91,211,.12);
}

.ryHomeHero2__house::after{
  content:"";
  position:absolute;
  left: 16px;
  bottom: 14px;
  width: 16px;
  height: 24px;
  border-radius: 10px;
  background: rgba(11,91,211,.18);
}

/* Wifi arcs */
.ryHomeHero2__wifi{
  position:absolute;
  top: 38px;
  right: 46px;
  width: 84px;
  height: 84px;
}

.ryHomeHero2__wifi span{
  position:absolute;
  inset:0;
  border: 2px solid rgba(11,91,211,.22);
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.ryHomeHero2__wifi span:nth-child(1){ transform: scale(1.0); }
.ryHomeHero2__wifi span:nth-child(2){ transform: scale(.72); }
.ryHomeHero2__wifi span:nth-child(3){ transform: scale(.44); }

/* content */
.ryHomeHero2__content{
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  text-align: center;
  padding: 74px 0;
}

.ryHomeHero2__eyebrow{
  display:inline-block;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(29,29,31,.55);
  margin-bottom: 12px;
}

.ryHomeHero2__content h1{
  margin: 0 0 12px;
  font-size: clamp(36px, 5.2vw, 60px);
  letter-spacing: -1px;
  font-weight: 800;
  color: var(--ry-ink);
}

.ryHomeHero2__content p{
  margin: 0 auto;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ry-muted);
}

/* tags */
.ryHomeHero2__tags{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}

.ryHomeHero2__tags span{
  font-size: 13px;
  font-weight: 650;
  color: rgba(29,29,31,.72);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

/* mobile: ocultar el mark si estorba */
@media (max-width: 900px){
  .ryHomeHero2__mark{ display:none; }
  .ryHomeHero2__content{ padding: 64px 0; }
}

/* futurista */
:root{
  --ry-blueOficial:#009999;   /* Redyon */
  --ry-blue2Oficial:#663399;
  --ry-ink:#0b1220;
  --ry-muted: rgba(29,29,31,.62);
}

.ryTechHero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a1a3a; /* base dark tech */
  color: #fff;
}

.ryTechHero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* Glow gradients */
.ryTechHero__glow{
  position:absolute;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .40;
}

.ryTechHero__glow--a{
  background: rgba(11,91,211,.85);
  top: -340px;
  left: -260px;
}

.ryTechHero__glow--b{
  background: rgba(76,195,255,.75);
  bottom: -360px;
  right: -280px;
  opacity: .22;
}

/* Grid overlay */
.ryTechHero__grid{
  position:absolute;
  inset:-20%;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(900px) rotateX(55deg);
  transform-origin: center;
  opacity: .12;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,0));
}

/* Dots texture */
.ryTechHero__dots{
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.20) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .10;
}

/* Content */
.ryTechHero__content{
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  text-align: center;
  padding: 78px 0;
}

.ryTechHero__eyebrow{
  display:inline-block;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 12px;
}

.ryTechHero__content h1{
  margin: 0 0 12px;
  font-size: clamp(38px, 5.4vw, 64px);
  letter-spacing: -1px;
  font-weight: 800;
  line-height: 1.05;
}

.ryTechHero__content p{
  margin: 0 auto;
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

.ryTechHero__content p strong{
  color: rgba(255,255,255,.92);
  font-weight: 750;
}

/* Meta pills */
.ryTechHero__meta{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}

.ryTechHero__meta span{
  font-size: 13px;
  font-weight: 650;
  color: rgba(255,255,255,.86);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* Subtle vignette for readability */
.ryTechHero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 420px at 50% 35%, transparent, rgba(0,0,0,.55));
  opacity: .55;
  pointer-events:none;
}

/* Mobile */
@media (max-width: 720px){
  .ryTechHero__content{ padding: 64px 0; }
  .ryTechHero__grid{
    background-size: 46px 46px;
    opacity: .18;
  }
}

/* banner principal  */

:root{
  --ry-blue:#0b5bd3;
  --ry-blue2:#0a3f9e;
  --ry-ink:#1d1d1f;
  --ry-muted: rgba(29,29,31,.62);
  --ry-border: rgba(0,0,0,.08);
  --ry-shadow: 0 30px 90px rgba(0,0,0,.10);
}

.ryHeroBright{
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

/* Fondo vivo pero claro (Redyon) */
.ryHeroBright__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(11,91,211,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 20%, rgba(76,195,255,.18), transparent 55%),
    radial-gradient(1000px 650px at 60% 90%, rgba(10,63,158,.14), transparent 60%),
    linear-gradient(180deg, #ffffff, #f5f8ff 78%, #ffffff);
}

.ryHeroBright__inner{
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  padding: 86px 0;
}

/* Texto Apple-clean */
.ryHeroBright__eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color: rgba(29,29,31,.55);
  margin-bottom: 12px;
}

.ryHeroBright__content h1{
  margin: 0 0 12px;
  font-size: clamp(40px, 5.1vw, 64px);
  letter-spacing: -1px;
  font-weight: 850;
  line-height: 1.05;
  color: var(--ry-ink);
}

.ryHeroBright__content p{
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  max-width: 62ch;
  color: var(--ry-muted);
}

/* ===== Visual protagonista ===== */
.ryHeroBright__visual{
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--ry-shadow);
  border: 1px solid rgba(0,0,0,.06);

  /* Imagen integrada */
  background:
    /* Glow vivo detrás del router */
    
     radial-gradient(520px 420px at 55% 55%, rgba(11,91,211,.30), transparent 62%),
    radial-gradient(520px 420px at 35% 30%, rgba(76,195,255,.18), transparent 60%),
    /* Velo claro tipo glass */
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.16)),
    url("/img/banner/router-redyon.png");

  background-repeat: no-repeat;
  background-size: 135%;          /* MÁS GRANDE = protagonista */
  background-position: 60% 66%;   /* Ajuste del encuadre */
}

/* Fade suave para integrarla (sin oscurecer demasiado) */
.ryHeroBright__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 620px at 55% 55%, rgba(255,255,255,.04), rgba(255,255,255,.38) 65%, rgba(255,255,255,.62) 92%),
    linear-gradient(90deg, rgba(255,255,255,.90), transparent 55%);
  opacity: .55; /* mantiene vivo el color */
}

/* Micro-grain sutil (premium, une el render) */
.ryHeroBright::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
  opacity: .06;
  z-index: 1;
}

/* Responsive */
@media (max-width: 980px){
  .ryHeroBright__inner{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 74px 0;
  }
  .ryHeroBright__content p{ margin: 0 auto; }

  .ryHeroBright__visual{
    min-height: 380px;
    background-size: 128%;        /* aún más protagonista en móvil */
    background-position: 55% 65%;
    border-radius: 22px;
  }

  .ryHeroBright__visual::after{
    background:
      radial-gradient(900px 620px at 55% 55%, rgba(255,255,255,.04), rgba(255,255,255,.38) 65%, rgba(255,255,255,.62) 92%),
      linear-gradient(180deg, rgba(255,255,255,.88), transparent 55%);
    opacity: .50;
  }
}

/* banner about */
:root{
  --ry-blue:#0b5bd3;
  --ry-blue2:#0a3f9e;

  --ink:#1d1d1f;
  --muted: rgba(29,29,31,.62);
  --border: rgba(0,0,0,.08);
  --hair: rgba(0,0,0,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.08);
}

.ryTLX{
  padding: 90px 20px;
  /* background:
    radial-gradient(900px 420px at 15% 0%, rgba(11,91,211,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(76,195,255,.08), transparent 60%),
    linear-gradient(180deg,#ffffff,#f7f8fb); */
}

.ryTLX__head{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.ryTLX__kicker{
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(29,29,31,.55);
}

.ryTLX__title{
  margin: 12px 0 8px;
  font-size: 42px;
  letter-spacing: -1px;
  font-weight: 750;
  color: var(--ink);
}

.ryTLX__sub{
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.ryTLX__wrap{
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

/* track hairline */
.ryTLX__track{
  position:absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,0,0,.10),
    rgba(11,91,211,.22),
    rgba(0,0,0,.10),
    transparent
  );
  opacity: .95;
}

/* row */
.ryTLX__row{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 16px;

  overflow-x: auto;
  padding: 28px 50px 22px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* subtle scrollbar */
.ryTLX__row::-webkit-scrollbar{ height: 8px; }
.ryTLX__row::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 999px;
}
.ryTLX__row::-webkit-scrollbar-track{ background: transparent; }

.ryTLX__item{
  position: relative;
  scroll-snap-align: center;
  min-height: 340px;
  display:flex;
  justify-content:center;
}

.ryTLX__item.is-top{ align-items:flex-start; padding-bottom: 56px; }
.ryTLX__item.is-bottom{ align-items:flex-end; padding-top: 56px; }

/* dot minimal */
.ryTLX__dot{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(11,91,211,.55);
  box-shadow: 0 0 0 6px rgba(11,91,211,.08);
  z-index: 2;
}

/* connector */
.ryTLX__item.is-top .ryTLX__dot::after,
.ryTLX__item.is-bottom .ryTLX__dot::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(0,0,0,.12);
  border-radius: 999px;
}
.ryTLX__item.is-top .ryTLX__dot::after{ top: -56px; height: 56px; }
.ryTLX__item.is-bottom .ryTLX__dot::after{ top: 12px; height: 56px; }

/* card glass */
.ryTLX__card{
  width: 100%;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  z-index: 3;
}

@media (hover:hover){
  .ryTLX__card:hover{
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.12);
  }
}

/* meta */
.ryTLX__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.ryTLX__year{
  font-weight: 750;
  font-size: 13px;
  color: rgba(29,29,31,.78);
}
.ryTLX__tag{
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11,91,211,.10);
  border: 1px solid rgba(11,91,211,.16);
  color: var(--ry-blue2);
}

/* heading with icon */
.ryTLX__h{
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -0.2px;
  font-weight: 750;
  color: var(--ink);
  display:flex;
  gap: 10px;
  align-items: center;
}

.ryTLX__icon{
  width: 22px;
  height: 22px;
  color: rgba(11,91,211,.78);
  display:inline-flex;
}
.ryTLX__icon svg{
  width: 22px;
  height: 22px;
}

/* paragraph */
.ryTLX__card p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* nav arrows */
.ryTLX__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 4;
  display:grid;
  place-items:center;
  font-size: 22px;
  color: rgba(29,29,31,.78);
}
.ryTLX__nav--left{ left: 0; }
.ryTLX__nav--right{ right: 0; }

.ryTLX__nav:hover{
  transform: translateY(-50%) scale(1.03);
}

/* mobile */
@media (max-width: 720px){
  .ryTLX{ padding: 90px 16px; }
  .ryTLX__title{ font-size: 34px; }
  .ryTLX__row{ padding: 22px 10px 18px; }
  .ryTLX__nav{ display:none; }
  .ryTLX__item{ min-height: 320px; }
}

/* ==========================
   Apple Pro: Active card
========================== */

/* por defecto, un poco más suaves */
.ryTLX__card{
  opacity: .86;
  transform: translateY(0) scale(.98);
}

/* activa */
.ryTLX__item.is-active .ryTLX__card{
  opacity: 1;
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(11,91,211,.20);
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

/* dot activo */
.ryTLX__item.is-active .ryTLX__dot{
  border-color: rgba(11,91,211,.85);
  box-shadow: 0 0 0 7px rgba(11,91,211,.12);
}

/* micro glow top edge (muy sutil) */
.ryTLX__item.is-active .ryTLX__card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 26px;
  pointer-events:none;
  background: radial-gradient(500px 240px at 20% 0%, rgba(11,91,211,.10), transparent 60%);
  opacity: .8;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .ryTLX__card{ transition:none !important; }
}

.ryAboutHeroClean{
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;

  background-image: url("/img/banner/b-index-1-min.jpg"); /* <-- AJUSTA */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay: asegura legibilidad sin “ensuciar” */
.ryAboutHeroClean__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 45%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.70) 100%),
    linear-gradient(135deg, rgba(11,91,211,.18), rgba(118,195,255,.10));
}

/* Contenido centrado */
.ryAboutHeroClean__inner{
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  padding: 10vh 0;
}

/* Eyebrow */
.ryAboutHeroClean__eyebrow{
  display:inline-block;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}

/* Título */
.ryAboutHeroClean h1{
  margin: 0 0 12px;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  text-shadow: 0 10px 35px rgba(0,0,0,.55);
}

/* Texto */
.ryAboutHeroClean p{
  margin: 0 auto;
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  text-shadow: 0 8px 26px rgba(0,0,0,.45);
}

/* Stats: sin cards, solo números limpios */
.ryAboutHeroClean__stats{
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ryAboutHeroClean__stats > div{
  display: grid;
  gap: 6px;
  align-items: center;
  justify-items: center;
  min-width: 130px;
}

.ryAboutHeroClean__stats strong{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-shadow: 0 10px 26px rgba(0,0,0,.45);
}

.ryAboutHeroClean__stats span{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(255,255,255,.82);
}

/* móvil */
@media (max-width: 720px){
  .ryAboutHeroClean{
    min-height: 100vh;
    background-position: 35% center; /* mejor para tu foto */
  }
  .ryAboutHeroClean__inner{ padding: 9vh 0; }
}
:root{
  --ry-main:#009999;
  --ry-dark:#006d6d;
  --ry-light:#00b3b3;
}

.ryHeroHome{
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;

  background-image: url("/img/banner/b-index-min.jpg"); /* Ajusta ruta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay adaptado a turquesa */
.ryHeroHome__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 30% 40%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.70) 100%),
    linear-gradient(90deg,
      rgba(0,153,153,.65) 0%,
      rgba(0,153,153,.45) 40%,
      rgba(0,0,0,.20) 70%,
      rgba(0,0,0,.15) 100%);
}

/* Contenedor */
.ryHeroHome__inner{
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 10vh 0;
}

.ryHeroHome__content{
  max-width: 640px;
}

.ryHeroHome__kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}

/* Título */
.ryHeroHome h1{
  margin: 0 0 14px;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}

/* Texto */
.ryHeroHome p{
  margin: 0;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  text-shadow: 0 8px 26px rgba(0,0,0,.45);
}

/* Botones */
.ryHeroHome__actions{
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ryBtn{
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

/* Botón principal Redyon */
.ryBtn--primary{
  color: #fff;
  background: linear-gradient(135deg, var(--ry-main), var(--ry-dark));
  box-shadow: 0 20px 60px rgba(0,153,153,.35);
}

.ryBtn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0,153,153,.45);
}

/* Botón secundario */
.ryBtn--ghost{
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
}

.ryBtn--ghost:hover{
  background: rgba(255,255,255,.18);
}

/* Mini puntos */
.ryHeroHome__mini{
  margin-top: 30px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ryHeroHome__mini strong{
  font-size: 14px;
  font-weight: 900;
}

.ryHeroHome__mini span{
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px){
  .ryHeroHome{
    min-height: 100vh;
    background-position: 30% center;
  }
}

:root{
  --ry-main:#009999;
  --ry-dark:#006d6d;
}

/* HERO REUSABLE (para todas las páginas) */
.ryHeroPage{
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* INTERNET: imagen de fondo */
.ryHeroPage--internet{
  background-image: url("/img/banner/b-index-2-min.jpg"); /* <-- AJUSTA RUTA */
}

/* Overlay marca Redyon: asegura legibilidad */
.ryHeroPage__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 620px at 28% 45%, rgba(0,0,0,.38) 0%, rgba(0,0,0,.58) 56%, rgba(0,0,0,.72) 100%),
    linear-gradient(90deg,
      rgba(0,153,153,.62) 0%,
      rgba(0,153,153,.40) 42%,
      rgba(0,0,0,.22) 72%,
      rgba(0,0,0,.18) 100%);
}

/* Contenido */
.ryHeroPage__inner{
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 10vh 0;
}

.ryHeroPage__kicker{
  display:inline-block;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}

.ryHeroPage h1{
  margin: 0 0 14px;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.ryHeroPage p{
  margin: 0;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  text-shadow: 0 8px 26px rgba(0,0,0,.45);
}

/* Acciones */
.ryHeroPage__actions{
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Mini puntos */
.ryHeroPage__mini{
  margin-top: 30px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.ryHeroPage__mini strong{
  font-size: 14px;
  font-weight: 900;
}

.ryHeroPage__mini span{
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px){
  .ryHeroPage{
    min-height: 100vh;
    background-position: 35% center; /* encuadre mejor en móvil */
  }
  .ryHeroPage__inner{
    padding: 9vh 0;
  }
}

.ry-map-card{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.ry-iframe{
  width: 100%;
  height: 95vh;      /* 🔥 casi pantalla completa */
  min-height: 750px; /* evita que se vea pequeño */
  border: 0;
  display: block;
}

/* cobertura */
.coverage-section-dark{
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}

/* efecto sutil de color corporativo */
.coverage-section-dark::before{
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0,153,153,0.15);
  filter: blur(120px);
  top: -100px;
  left: -100px;
  z-index: 0;
}

.coverage-header{
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.coverage-title{
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.coverage-subtitle{
  max-width: 700px;
  margin: 0 auto;
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* MAPA */
.coverage-map-wrapper{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.coverage-map-frame{
  width: 100%;
  height: 750px;
  border: 0;
  display: block;
}

/* Nota inferior */
.coverage-note{
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 991px){
  .coverage-section-dark{
    padding: 80px 0;
  }

  .coverage-map-frame{
    height: 650px;
  }
}

@media (max-width: 768px){
  .coverage-title{
    font-size: 2.2rem;
  }

  .coverage-subtitle{
    font-size: 1rem;
  }

  .coverage-map-frame{
    height: 580px;
  }
}