/* uk.css
   Rules:
   - NO hardcoded brand colors (#xxxxxx). Use theme vars only.
   - Keep layout-only / page-only styling here.
*/

.nl10g-hero {
  background-image: url("https://cdn.underhost.com/images/london2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HERO */
.nl10g-hero__badge { margin-bottom: 20px; }

.nl10g-hero__title {
  color: var(--text-inverse);
  text-shadow: var(--shadow-glow);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-xl);
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
}

.nl10g-hero__accent { color: var(--color-primary); }

.nl10g-hero__meter { margin: 20px auto; }

.nl10g-hero__copy { max-width: 900px; margin: 0 auto; }
.nl10g-hero__p1 { color: rgba(255,255,255,0.95); line-height: 1.7; margin-bottom: 15px; }
.nl10g-hero__p2 { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 15px; }
.nl10g-hero__p3 { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 5px; }

/* Make the background section extend naturally with its content */
.nl10g-hero--wrap{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ensure overlay covers the ENTIRE section height (hero + plans) */
.nl10g-hero--wrap .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Keep all inner content above the overlay */
.nl10g-hero--wrap .container{
  position: relative;
  z-index: 2;
}
/* ICON COLOR (replaces inline #7AB800) */
.nl10g-icon {
  color: var(--color-primary);
  margin-right: 10px;
}

/* FAQ divider line: previously hardcoded gradient color */
.nl10g-faq-divider-line {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.5;
}

/* FAQ dot */
.nl10g-faq-dot {
  width: 8px;
  height: 8px;
  background: var(--speed-secondary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.9);
}

/* FAQ highlighted item border: remove hardcoded left border color */
.nl10g-faq-highlighted {
  border-left: 3px solid var(--color-primary);
}

/* Any “badge” text that had fixed color should inherit theme */
.nl10g-badge-text {
  color: var(--color-primary);
}

/* Remove CLS on images */
.plan-image img,
.features-image,
.location-flag,
.migration-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* animate-on-scroll (shared behavior) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .wow {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ================================
   Alternate Products (Cloud / Offshore Cloud)
   ================================ */

.uh-alt-products{
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg,
    rgba(var(--color-black-rgb), 0.92),
    rgba(var(--color-blue-900-rgb), 0.85),
    rgba(var(--color-primary-rgb), 0.18)
  );
  position: relative;
  overflow: hidden;
}

.uh-alt-products::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle,
    rgba(var(--color-primary-rgb),0.18) 0%,
    transparent 55%
  );
  animation: rotate 18s linear infinite;
  pointer-events:none;
}

.uh-alt-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(var(--color-primary-rgb), 0.16);
  border: 1px solid rgba(var(--color-primary-rgb), 0.35);
  color: var(--text-inverse);
  font-weight: var(--font-weight-extrabold);
  letter-spacing:.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.uh-alt-title{
  color: var(--text-inverse);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: var(--font-weight-extrabold);
  margin: 0 0 12px;
  text-shadow: 0 6px 24px rgba(var(--color-black-rgb), 0.45);
  position: relative;
  z-index: 2;
}

.uh-alt-title span{
  color: var(--color-primary);
}

.uh-alt-subtitle{
  color: rgba(255,255,255,0.86);
  max-width: 860px;
  margin: 0 auto 22px;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.uh-alt-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.uh-alt-card{
  background: rgba(var(--color-black-rgb), 0.28);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-2xl);
  padding: 22px 18px;
  text-align: left;
  box-shadow: 0 14px 35px rgba(var(--color-black-rgb), 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.uh-alt-card:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--color-primary-rgb), 0.45);
  box-shadow: 0 22px 50px rgba(var(--color-primary-rgb), 0.14);
}

.uh-alt-card--featured{
  border-color: rgba(var(--color-primary-rgb), 0.55);
  background: linear-gradient(135deg,
    rgba(var(--color-primary-rgb), 0.18),
    rgba(var(--color-black-rgb), 0.28)
  );
}

.uh-alt-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(var(--color-primary-rgb), 0.16);
  border: 1px solid rgba(var(--color-primary-rgb), 0.35);
  margin-bottom: 14px;
}

.uh-alt-icon i{
  color: var(--text-inverse);
  font-size: 22px;
  opacity: .95;
}

.uh-alt-card-title{
  color: var(--text-inverse);
  font-weight: var(--font-weight-extrabold);
  margin: 0 0 8px;
  font-size: 18px;
}

.uh-alt-card-desc{
  color: rgba(255,255,255,0.78);
  margin: 0 0 14px;
  line-height: 1.6;
  font-size: 14px;
}

.uh-alt-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.uh-alt-list li{
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.uh-alt-list li i{
  color: rgba(var(--color-primary-rgb), 0.95);
}

.uh-alt-cta{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
}

.uh-alt-cta-lite{
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
}

.uh-alt-note{
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px){
  .uh-alt-grid{ grid-template-columns: 1fr; }
  .uh-alt-card{ text-align: center; }
  .uh-alt-list{ justify-content:center; }
  .uh-alt-list li{ justify-content:center; }
  .uh-alt-products .uh-alt-cta,
  .uh-alt-products .uh-alt-cta-lite{
    min-height: 50px;
    padding: 14px 18px !important;
    font-size: 12px !important;
    line-height: 1.2;
    white-space: normal;
  }
}
