/* =====================================================================
   HERO + PLANS SECTION  (ds-hero__)
   Append to: https://cdn.underhost.com/assets/css/update/dedicated-sections.css
   Added: v3.0
   =====================================================================
   Uses --color-primary / --color-primary-rgb exclusively for all brand
   accents. The active body theme (theme-purple, theme-canada, etc.)
   injects the correct color automatically.
   =====================================================================
   Section-scoped selectors only.
   No !important overrides of global framework rules.
   No hardcoded hex colors for brand accents.
===================================================================== */


/* -------------------------------------------------------
   DIVIDER inside hero - suppress any hover transform that
   uh-divider or its parent context may apply
------------------------------------------------------- */
.ds-hero .ds-hero__divider,
.ds-hero .ds-hero__divider *,
.ds-hero .ds-hero__divider:hover,
.ds-hero .ds-hero__divider:hover * {
  transform: none !important;
  transition: none !important;
  pointer-events: none;
}


/* -------------------------------------------------------
   HERO WRAPPER + BACKGROUND
------------------------------------------------------- */

.ds-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ds-hero__overlay {
  position: absolute;
  inset: 0;
  /* Gradient overlay - works with all themes */
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.68) 0%,
    rgba(var(--color-primary-darker-rgb, var(--color-primary-rgb)), 0.54) 50%,
    rgba(0,0,0,0.66) 100%
  );
  z-index: 0;
}

.ds-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}


/* -------------------------------------------------------
   HERO BADGE STRIP
------------------------------------------------------- */

.ds-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--color-primary-rgb), 0.18);
  border: 1px solid rgba(var(--color-primary-rgb), 0.45);
  color: var(--color-primary-light, #fff);
  border-radius: var(--radius-full, 50px);
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.ds-hero__badge i {
  font-size: 12px;
  color: var(--color-primary-light, var(--color-primary));
}


/* -------------------------------------------------------
   H1
------------------------------------------------------- */

.ds-hero__h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--text-inverse, #fff);
  text-shadow: var(--shadow-glow, 0 0 30px rgba(var(--color-primary-rgb),0.5));
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.ds-hero__h1-accent {
  color: var(--color-primary-light, var(--color-primary));
}


/* -------------------------------------------------------
   LEDE (SEO paragraph)
------------------------------------------------------- */

.ds-hero__lede {
  font-size: 17px;
  line-height: 1.68;
  color: rgba(255,255,255,0.96);
  max-width: 820px;
  margin: 0 auto 18px;
  font-weight: 400;
}


/* -------------------------------------------------------
   TRUST BAR
------------------------------------------------------- */

.ds-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px auto 0;
  max-width: 900px;
}

.ds-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(var(--color-primary-rgb), 0.16);
  border: 1px solid rgba(var(--color-primary-rgb), 0.38);
  color: rgba(255,255,255,0.92);
  border-radius: var(--radius-full, 50px);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.ds-hero__trust span i {
  font-size: 12px;
  color: var(--color-primary-light, var(--color-primary));
}


/* -------------------------------------------------------
   USE-CASE TAGS (reuses .use-case-tag from main)
------------------------------------------------------- */

.ds-hero__tags {
  justify-content: center;
  margin-top: 22px;
}


/* -------------------------------------------------------
   PLANS WRAPPER
------------------------------------------------------- */

.ds-hero__plans-wrap {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 60px;
}


/* -------------------------------------------------------
   PLANS HEADING AREA
------------------------------------------------------- */

.ds-hero__plans-badge {
  margin-bottom: 15px;
  background: rgba(var(--color-primary-rgb), 0.18) !important;
  border-color: rgba(var(--color-primary-rgb), 0.40) !important;
  color: var(--color-primary-light, #ddd6fe) !important;
}

/* Default — dark hero bg, white text (works for 95% of themes) */
.ds-hero__plans-h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-inverse, #fff);
  text-shadow: 0 12px 32px rgba(0,0,0,0.32);
  margin-bottom: var(--space-3xl, 30px);
  line-height: 1.2;
}
.ds-hero__plans-h2-accent {
  color: var(--color-primary-light, var(--color-primary));
}

/* Light surface modifier — add class ds-hero__plans-wrap--light
   to the plans wrap div in _hero.php when needed */
.ds-hero__plans-wrap--light .ds-hero__plans-h2 {
  color: var(--text-inverse, #fff);
}
.ds-hero__plans-wrap--light .ds-hero__plans-h2-accent {
  color: var(--color-primary-light, var(--color-primary));
}
.ds-hero__plans-wrap--light .ds-hero__custom-cta-left strong {
  color: var(--text-inverse, #fff);
}
.ds-hero__plans-wrap--light .ds-hero__custom-cta-left span {
  color: rgba(255,255,255,0.78);
}


/* -------------------------------------------------------
   PLAN CARD BASE
   Extends .planbox .dedicated-plan from main.css / uk.css
------------------------------------------------------- */

.ds-hero__plan {
  position: relative;
  overflow: visible; /* allow badges to escape */
}

/* Gradient top bar (replaces inline style) */
.ds-hero__plan-bar {
  height: 4px;
  background: var(--gradient-horizontal,
    linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light)));
  border-radius: 4px 4px 0 0;
}

/* -------------------------------------------------------
   SUPPRESS all legacy badge pseudo-elements that uk.css /
   dedicated.css generate on .planbox and .dedicated-plan.
   ds-hero__plan-stamp handles ALL badge rendering instead.
------------------------------------------------------- */
.ds-hero__plan::before,
.ds-hero__plan::after,
.ds-hero__plan .plan-best-value-badge,
.ds-hero__plan .best-value-label {
  display: none !important;
  content: none !important;
}

/* Ensure the card is the containing block for absolute stamps.
   .planbox from uk.css may not have position:relative, and may
   have overflow:hidden which clips top:-1px stamps. */
.ds-hero__plan {
  position: relative !important;
  overflow: visible !important;
}

/* The inner .planbox div (child of the col-md-12 wrapper) also
   needs overflow visible so the stamp is not clipped. */
.ds-hero__plan.planbox {
  overflow: visible !important;
}

.ds-hero__plan .plan-title {
  color: var(--text-primary, #1f2937);
}

.ds-hero__plan .spec-label {
  color: var(--text-tertiary, #6b7280);
}

.ds-hero__plan .spec-value,
.ds-hero__plan .plan-price {
  color: var(--text-primary, #1f2937);
}

.ds-hero__plan .plan-price span {
  color: var(--text-secondary, #4b5563);
}

/* --  Plan state: Best Value -- */
.ds-hero__plan--best {
  border-top: 3px solid var(--color-primary) !important;
}

/* -- Plan state: Featured / Most Popular -- */
.ds-hero__plan--featured {
  border: 2px solid var(--color-primary) !important;
  border-top: none !important;
  box-shadow: 0 0 0 1px rgba(var(--color-primary-rgb), 0.22),
              0 12px 32px rgba(var(--color-primary-rgb), 0.12) !important;
}
.ds-hero__plan--featured .ds-hero__plan-bar {
  height: 5px;
  box-shadow: 0 2px 12px rgba(var(--color-primary-rgb), 0.40);
}

/* -- Plan state: OOS -- */
.ds-hero__plan--oos {
  opacity: 0.70;
}
.ds-hero__plan--oos .ds-hero__plan-bar {
  background: #9ca3af;
}

/* -- Plan state: Promo -- */
.ds-hero__plan--promo {
  border-color: rgba(var(--color-orange-500-rgb, 255,152,0), 0.35) !important;
}
.ds-hero__plan--promo .ds-hero__plan-bar {
  background: linear-gradient(90deg,
    var(--color-orange-500, #ff9800),
    rgba(var(--color-orange-500-rgb, 255,152,0), 0.60));
}


/* -------------------------------------------------------
   PLAN STAMPS (badges)
------------------------------------------------------- */

.ds-hero__plan-stamp {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
}

.ds-hero__plan-stamp--oos {
  background: #4b5563;
  color: #e5e7eb;
}
.ds-hero__plan-stamp--best {
  background: var(--gradient-horizontal,
    linear-gradient(90deg, var(--color-primary-dark), var(--color-primary)));
  color: var(--color-white, #fff);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.30);
}
.ds-hero__plan-stamp--featured {
  background: var(--color-primary);
  color: var(--color-white, #fff);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.35);
  animation: ds-hero-pulse 2.5s ease-in-out infinite;
}

@keyframes ds-hero-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.35); }
  50%       { box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.55); }
}


/* -------------------------------------------------------
   PROMO BANNER (full-width strip inside card)
------------------------------------------------------- */

.ds-hero__plan-promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg,
    rgba(var(--color-orange-500-rgb, 255,152,0), 0.12),
    rgba(var(--color-orange-500-rgb, 255,152,0), 0.07));
  border-bottom: 1px solid rgba(var(--color-orange-500-rgb, 255,152,0), 0.22);
  color: var(--color-orange-500, #ff9800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 9px 20px;
  margin: 0 -1px; /* bleed to card edges */
}
.ds-hero__plan-promo-banner i {
  font-size: 12px;
}


/* -------------------------------------------------------
   PLAN HEADER (title + badge)
------------------------------------------------------- */

.ds-hero__plan-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.ds-hero__plan-badge {
  background: rgba(var(--color-primary-rgb), 0.10) !important;
  border-color: rgba(var(--color-primary-rgb), 0.28) !important;
  color: var(--color-primary-dark, var(--color-primary)) !important;
}


/* -------------------------------------------------------
   PRICE DISPLAY
------------------------------------------------------- */

.ds-hero__plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  line-height: 1.1;
  margin: 10px 0 4px;
}
.ds-hero__plan-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary, #666);
}


/* -------------------------------------------------------
   SETUP FEE ROW
------------------------------------------------------- */

.ds-hero__plan-setup {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ds-hero__plan-setup i {
  font-size: 11px;
  color: var(--text-tertiary, #999);
}
.ds-hero__plan-setup--free {
  color: var(--color-success, #22c55e) !important;
  font-weight: 700;
}
.ds-hero__plan-setup--free i {
  color: var(--color-success, #22c55e) !important;
}


/* -------------------------------------------------------
   ORDER BUTTON
   Extends .btn-speed .order-btndedi from main.css
------------------------------------------------------- */

.ds-hero__order-btn {
  background: var(--gradient-horizontal,
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary))) !important;
  width: 100%;
  justify-content: center;
}

.ds-hero__order-btn--featured {
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.40) !important;
  animation: ds-hero-btn-glow 3s ease-in-out infinite;
}

@keyframes ds-hero-btn-glow {
  0%, 100% { box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.40); }
  50%       { box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.60); }
}

.ds-hero__order-btn--oos {
  background: #6b7280 !important;
  cursor: not-allowed;
  box-shadow: none !important;
  animation: none !important;
  opacity: 0.75;
}

.ds-hero__order-btn--waitlist {
  background: linear-gradient(135deg, #00D4FF, #0091D6) !important;
  color: #061426 !important;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 212, 255, 0.28) !important;
  animation: none !important;
  opacity: 1;
}

.ds-hero__order-btn--waitlist:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}


/* -------------------------------------------------------
   CUSTOM CONFIG CTA (below plans)
------------------------------------------------------- */

.ds-hero__custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(var(--color-primary-rgb), 0.22);
  border-radius: var(--radius-lg, 12px);
  padding: 22px 28px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.ds-hero__custom-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ds-hero__custom-cta-icon {
  width: 46px;
  height: 46px;
  background: rgba(var(--color-primary-rgb), 0.20);
  border-radius: var(--radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-hero__custom-cta-icon i {
  font-size: 20px;
  color: var(--color-primary-light, var(--color-primary));
}

.ds-hero__custom-cta-left strong {
  display: block;
  font-size: 16px;
  color: var(--text-inverse, #fff);
  margin-bottom: 4px;
}
.ds-hero__custom-cta-left span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.ds-hero__custom-cta-btn {
  background: var(--gradient-horizontal,
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary))) !important;
  white-space: nowrap;
  flex-shrink: 0;
}


/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */

@media (max-width: 991px) {
  .ds-hero__h1 { font-size: clamp(26px, 5vw, 42px); }
}

@media (max-width: 768px) {
  .ds-hero__content { padding-top: 40px; }
  .ds-hero__plans-wrap { padding-top: 28px; padding-bottom: 40px; }

  .ds-hero__h1 { font-size: clamp(24px, 7vw, 36px); }
  .ds-hero__lede { font-size: 15px; }

  .ds-hero__trust { gap: 8px; }
  .ds-hero__trust span { font-size: 12px; padding: 5px 12px; }

  .ds-hero__custom-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px 20px;
  }
  .ds-hero__custom-cta-left {
    flex-direction: column;
    align-items: center;
  }
  .ds-hero__custom-cta-btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ds-hero__plan-stamp { font-size: 9px; padding: 3px 10px; right: 12px; }
  .ds-hero__plan-promo-banner { font-size: 11px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ds-hero__plan-stamp--featured,
  .ds-hero__order-btn--featured {
    animation: none;
  }
}

/* ----------------------------------------------------------
   BREADCRUMB BAR
---------------------------------------------------------- */
.uh-breadcrumb-bar {
  background: rgba(0,0,0,0.06);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.uh-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}
.uh-breadcrumb-list a {
  color: #666;
  text-decoration: none;
}
.uh-breadcrumb-list li[aria-hidden] {
  color: #bbb;
}
.uh-breadcrumb-current {
  color: #333;
  font-weight: 600;
}


/*
 * dedicated-sections.css  v2.1
 * =====================================================================
 * SHARED CSS for:
 *   - ds-access  (Remote Access & Full Control)
 *   - ds-mgmt    (Server Management Upsell)
 *
 * THEMING: Uses --color-primary / --color-primary-rgb exclusively.
 * Each page theme class (theme-purple, theme-canada, theme-navy, etc.)
 * automatically supplies the correct accent via theme.css.
 *
 * LOAD ORDER: After main.css, theme.css, uk.css / location.css
 * CDN PATH:   https://cdn.underhost.com/assets/css/update/dedicated-sections.css
 * =====================================================================
 *
 * Rules:
 *   - No hardcoded hex for brand accents (use --color-primary-rgb).
 *   - No !important overrides of global framework rules.
 *   - One definition per component - zero duplicates.
 *   - Section-scoped BEM selectors only.
 */

/* =====================================================================
   GLOBAL LOCATIONS SECTION  (ds-locs__)
   Added: v2.0
===================================================================== */

.ds-locs {
  background: var(--color-dark-surface, #0d0d14);
  padding: 80px 0;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.10);
}

/* Overrides ds-section-h2 text color for dark bg */
.ds-locs .ds-section-h2 { color: var(--color-white, #fff); }
.ds-locs .ds-section-sub { color: rgba(255,255,255,0.78); }
.ds-locs .ds-section-badge {
  background: rgba(var(--color-primary-rgb), 0.15);
  border-color: rgba(var(--color-primary-rgb), 0.40);
}

.ds-locs__grid-title {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Responsive card grid */
.ds-locs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ds-locs__grid--specialty {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}

/* Individual location card */
.ds-locs__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 20px 14px 18px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}
.ds-locs__card:hover {
  background: rgba(var(--color-primary-rgb), 0.10);
  border-color: rgba(var(--color-primary-rgb), 0.40);
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.ds-locs__card--current {
  background: rgba(var(--color-primary-rgb), 0.12);
  border-color: rgba(var(--color-primary-rgb), 0.45);
  box-shadow: 0 0 0 1px rgba(var(--color-primary-rgb), 0.25);
}
.ds-locs__card--oos {
  opacity: 0.9;
}
.ds-locs__card--specialty {
  background: rgba(255,255,255,0.05);
}

/* Badges (current / oos) */
.ds-locs__card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.ds-locs__card-badge--current {
  background: var(--color-primary);
  color: var(--color-white, #fff);
}
.ds-locs__card-badge--oos {
  background: rgba(var(--color-primary-rgb), 0.12);
  border: 1px solid rgba(var(--color-primary-rgb), 0.25);
  color: var(--color-primary-light, var(--color-primary));
}

/* Flag wrapper */
.ds-locs__flag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 12px;
  position: relative;
}
.ds-locs__flag-wrap--dual {
  gap: 8px;
}
.ds-locs__flag {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.40);
}
.ds-locs__flag--sm {
  width: 30px;
  height: 20px;
}
.ds-locs__flag-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.15), transparent 70%);
  pointer-events: none;
}
.ds-locs__specialty-icon {
  font-size: 36px;
  color: var(--color-primary);
  filter: drop-shadow(0 0 10px rgba(var(--color-primary-rgb), 0.45));
}

/* Card text */
.ds-locs__card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-white, #fff);
  margin: 0 0 6px;
  line-height: 1.2;
}
.ds-locs__card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.ds-locs__card-region {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.ds-locs__card-spec {
  font-size: 10px;
  color: rgba(255,255,255,0.70);
  line-height: 1.4;
}

/* Deploy button on card */
.ds-locs__deploy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(var(--color-primary-rgb), 0.15);
  border: 1px solid rgba(var(--color-primary-rgb), 0.35);
  border-radius: 50px;
  color: var(--color-primary-light, var(--color-primary));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
}
.ds-locs__deploy-btn:hover {
  background: rgba(var(--color-primary-rgb), 0.25);
  border-color: var(--color-primary);
  color: var(--color-primary-light, var(--color-primary));
  text-decoration: none;
  transform: none;
}
.ds-locs__deploy-btn--current {
  background: rgba(var(--color-primary-rgb), 0.25);
  border-color: var(--color-primary);
  cursor: default;
  pointer-events: none;
}
.ds-locs__deploy-btn--oos {
  background: rgba(var(--color-primary-rgb), 0.10);
  border-color: rgba(var(--color-primary-rgb), 0.24);
  color: var(--color-primary-light, var(--color-primary));
}

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

/* Temporary stock ticker used by out-of-stock location pages */
.ds-stock-notice {
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 100%;
  padding: 9px 0;
  background: linear-gradient(90deg, #dc2626 0%, #f97316 52%, #dc2626 100%);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 8px 28px rgba(220,38,38,0.18);
  color: #fff;
  white-space: nowrap;
}
.ds-stock-notice__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  min-width: 200%;
  animation: dsStockTicker 34s linear infinite;
}
.ds-stock-notice__track span,
.ds-stock-notice__track a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.ds-stock-notice__track i {
  color: rgba(255,255,255,0.92);
  font-size: 12px;
}
.ds-stock-notice__track a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .ds-stock-notice__track {
    animation: none;
  }
}

/* Explore all button */
.ds-locs__explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.ds-locs__explore-btn:hover {
  background: rgba(var(--color-primary-rgb), 0.10);
  border-color: rgba(var(--color-primary-rgb), 0.50);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
}
.ds-locs__explore-btn i {
  font-size: 15px;
}


/* =====================================================================
   LATENCY ESTIMATES SECTION  (ds-latency__)
   Added: v2.0
===================================================================== */

/* =====================================================================
   LATENCY ESTIMATES SECTION  (ds-latency__)  v2.0
   =====================================================================
   REPLACES the previous ds-latency__ block in dedicated-sections.css.
   Remove everything from:
     .ds-latency { ... }
   through:
     .ds-latency__note i { ... }
   and paste this block in its place.

   CDN: https://cdn.underhost.com/assets/css/update/dedicated-sections.css
   NO hardcoded hex for brand accents.
   Section-scoped selectors only.
===================================================================== */


/* -------------------------------------------------------
   SECTION WRAPPER
------------------------------------------------------- */

.ds-latency {
  background: var(--color-gray-50, #f8f9fa);
  padding: 72px 0 60px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}


/* -------------------------------------------------------
   CARD GRID
   Replaces the Bootstrap col-md-3 approach with a proper
   CSS grid so all cards are always equal height.
------------------------------------------------------- */

.ds-latency__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


/* -------------------------------------------------------
   CARD BASE
------------------------------------------------------- */

.ds-latency__card {
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-xl, 16px);
  padding: 26px 18px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  cursor: default;
}

.ds-latency__card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(var(--color-primary-rgb), 0.09);
}


/* -------------------------------------------------------
   TOP ACCENT LINE
------------------------------------------------------- */

.ds-latency__card-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-xl, 16px) var(--radius-xl, 16px) 0 0;
  opacity: 0.70;
}

.ds-latency__card--sla .ds-latency__card-line {
  background: var(--color-success, #22c55e);
  opacity: 0.80;
}

.ds-latency__card--neutral .ds-latency__card-line {
  background: var(--color-gray-400, #bdbdbd);
  opacity: 0.60;
}


/* -------------------------------------------------------
   SLA card - success color treatment
------------------------------------------------------- */

.ds-latency__card--sla {
  border-color: rgba(var(--color-success-rgb, 34,197,94), 0.22);
  background: rgba(var(--color-success-rgb, 34,197,94), 0.03);
}

.ds-latency__card--sla:hover {
  border-color: rgba(var(--color-success-rgb, 34,197,94), 0.40);
  box-shadow: 0 12px 28px rgba(var(--color-success-rgb, 34,197,94), 0.08);
}


/* -------------------------------------------------------
   SIGNAL BARS
   5 bars, N lit = connectivity strength indicator.
   Heights are set via inline style in PHP.
------------------------------------------------------- */

.ds-latency__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin: 0 0 16px;
}

.ds-latency__bar {
  width: 5px;
  border-radius: 2px;
  background: rgba(var(--color-primary-rgb), 0.14);
  transition: background 0.2s ease;
}

.ds-latency__bar--on {
  background: var(--color-primary);
  opacity: 0.80;
}

.ds-latency__card--sla .ds-latency__bar--on {
  background: var(--color-success, #22c55e);
  opacity: 0.85;
}

.ds-latency__card:hover .ds-latency__bar--on {
  opacity: 1;
}


/* -------------------------------------------------------
   VALUE (the big number)
------------------------------------------------------- */

.ds-latency__value {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 7px;
  letter-spacing: -0.5px;
}

.ds-latency__card--sla .ds-latency__value {
  color: var(--color-success, #22c55e);
}

.ds-latency__card--neutral .ds-latency__value {
  color: var(--text-secondary, #555);
}


/* -------------------------------------------------------
   LABEL + DESCRIPTION
------------------------------------------------------- */

.ds-latency__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 6px;
  line-height: 1.25;
}

.ds-latency__desc {
  font-size: 12px;
  color: var(--text-secondary, #666);
  line-height: 1.55;
}


/* -------------------------------------------------------
   FOOTNOTE NOTE BOX
------------------------------------------------------- */

.ds-latency__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-lg, 12px);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-tertiary, #999);
  line-height: 1.6;
}

.ds-latency__note i {
  color: var(--color-primary);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}


/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */

@media (max-width: 991px) {
  .ds-latency__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .ds-latency {
    padding: 52px 0 44px;
  }
  .ds-latency__value {
    font-size: clamp(22px, 6vw, 30px);
  }
}

@media (max-width: 480px) {
  .ds-latency__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ds-latency__card {
    padding: 20px 14px 18px;
  }
  .ds-latency__bars {
    height: 26px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ds-latency__card,
  .ds-latency__bar {
    transition: none;
  }
  .ds-latency__card:hover {
    transform: none;
  }
}

/* =====================================================================
   OFFSHORE TRUST SECTION  (ds-trust__)
   Added: v2.0
===================================================================== */

.ds-trust {
  background: var(--surface-primary, #fff);
  padding: 80px 0;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

/* DMCA strip */
.ds-trust__dmca-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(var(--color-primary-rgb), 0.05);
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
  border-radius: 14px;
  margin-bottom: 28px;
}
.ds-trust__dmca-icon {
  width: 42px;
  height: 42px;
  background: rgba(var(--color-primary-rgb), 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-trust__dmca-icon i {
  color: var(--color-primary);
  font-size: 18px;
}
.ds-trust__dmca-body strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  display: block;
  margin-bottom: 4px;
}
.ds-trust__dmca-body p {
  font-size: 13px;
  color: var(--text-secondary, #555);
  margin: 0;
  line-height: 1.6;
}

/* Left column heading adjustments */
.ds-trust .ds-section-badge { margin-bottom: 14px; }
.ds-trust .ds-section-h2 { margin-bottom: 12px; }
.ds-trust .ds-section-sub { text-align: left; }

/* Trust badges strip */
.ds-trust__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.ds-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(var(--color-primary-rgb), 0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.20);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary, #333);
  letter-spacing: 0.2px;
}
.ds-trust__badge i {
  color: var(--color-primary);
  font-size: 13px;
}

/* CTAs */
.ds-trust__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ds-trust__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid rgba(var(--color-primary-rgb), 0.35);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ds-trust__btn-outline:hover {
  background: rgba(var(--color-primary-rgb), 0.07);
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Feature card (right column) */
.ds-trust__card {
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(var(--color-primary-rgb), 0.07);
}

.ds-trust__card-header {
  background: var(--gradient-card-header,
    linear-gradient(135deg,
      rgba(var(--color-primary-rgb), 0.90),
      rgba(var(--color-primary-rgb), 0.70)));
  padding: 28px 28px 24px;
  text-align: center;
}
.ds-trust__card-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ds-trust__card-header-icon i {
  font-size: 24px;
  color: var(--color-white, #fff);
}
.ds-trust__card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white, #fff);
  margin: 0 0 6px;
  line-height: 1.3;
}
.ds-trust__card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.84);
  margin: 0;
  letter-spacing: 0.3px;
}

.ds-trust__card-body {
  padding: 24px;
}

/* Feature list inside card */
.ds-trust__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.ds-trust__feature {
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.ds-trust__feature:hover {
  background: rgba(var(--color-primary-rgb), 0.04);
}
.ds-trust__feature--featured {
  background: rgba(var(--color-primary-rgb), 0.05);
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: 10px;
  margin: 4px 0;
}
.ds-trust__feature-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 5px;
}
.ds-trust__feature-name i {
  color: var(--color-primary);
  margin-right: 8px;
  font-size: 13px;
}
.ds-trust__feature-desc {
  font-size: 13px;
  color: var(--text-secondary, #555);
  line-height: 1.6;
}

/* Stats row */
.ds-trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 12px 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.10);
}
.ds-trust__stat {
  text-align: center;
}
.ds-trust__stat-value {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.ds-trust__stat-label {
  font-size: 11px;
  color: var(--text-secondary, #666);
  line-height: 1.3;
}


/* =====================================================================
   RESPONSIVE - Three New Sections
===================================================================== */

/* Locations grid responsive */
@media (max-width: 1200px) {
  .ds-locs__grid { grid-template-columns: repeat(4, 1fr); }
  .ds-locs__grid--specialty { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
  .ds-locs__grid { grid-template-columns: repeat(3, 1fr); }
  .ds-locs__grid--specialty { grid-template-columns: repeat(2, 1fr); }

  .ds-latency__card { margin-bottom: 16px; }

  .ds-trust__card { margin-top: 40px; }
  .ds-trust .ds-section-sub { text-align: center; }
  .ds-trust .ds-section-h2 { text-align: center; }
  .ds-trust .ds-section-badge { display: block; text-align: center; }
  .ds-trust__ctas { justify-content: center; }
  .ds-trust__badges { justify-content: center; }
}

@media (max-width: 768px) {
  .ds-locs { padding: 55px 0; }
  .ds-latency { padding: 55px 0 45px; }
  .ds-trust { padding: 55px 0; }

  .ds-locs__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ds-locs__grid--specialty { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .ds-latency__value { font-size: clamp(26px, 8vw, 38px); }

  .ds-trust__dmca-strip { flex-direction: column; gap: 12px; }
  .ds-trust__ctas { flex-direction: column; align-items: stretch; }
  .ds-trust__btn-outline { text-align: center; justify-content: center; }
  .ds-trust__ctas .btn-speed { text-align: center; justify-content: center; }

  .ds-locs__explore-btn { font-size: 11px; padding: 11px 22px; }
}

@media (max-width: 480px) {
  .ds-locs__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ds-locs__grid--specialty { grid-template-columns: repeat(2, 1fr); }
  .ds-locs__card { padding: 16px 10px 14px; }
  .ds-locs__card-name { font-size: 11px; }

  .ds-trust__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ds-trust__stat-value { font-size: 22px; }
}

/* Reduce motion additions */
@media (prefers-reduced-motion: reduce) {
  .ds-locs__card,
  .ds-latency__card,
  .ds-trust__feature,
  .ds-locs__explore-btn,
  .ds-trust__btn-outline {
    transition: none;
  }
  .ds-locs__card:hover,
  .ds-latency__card:hover {
    transform: none;
  }
}


/* =====================================================================
   SHARED SECTION HEADER UTILITIES
===================================================================== */

.ds-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 18px;
  background: rgba(var(--color-primary-rgb), 0.10);
  border: 1px solid rgba(var(--color-primary-rgb), 0.28);
  border-radius: var(--radius-full, 50px);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ds-section-badge i { font-size: 12px; }

.ds-section-h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-primary, #333);
  margin: 0 0 14px;
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.ds-section-accent { color: var(--color-primary); }

.ds-section-sub {
  font-size: 17px;
  color: var(--text-secondary, #666);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.topmargin40 { margin-top: 40px; }


/* =====================================================================
   ds-access - REMOTE ACCESS & FULL CONTROL
===================================================================== */

.ds-access {
  background: var(--color-gray-50, #f8f9fa);
  padding: 80px 0;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

/* --- Feature Cards --- */
.ds-access__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (min-width: 992px) {
  .ds-access__grid--five {
    grid-template-columns: repeat(6, 1fr);
  }

  .ds-access__grid--five .ds-access__card {
    grid-column: span 2;
  }

  .ds-access__grid--five .ds-access__card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }
}

.ds-access__card {
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-xl, 16px);
  padding: 28px 24px 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.ds-access__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-primary-rgb), 0.60), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.ds-access__card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(var(--color-primary-rgb), 0.09);
}
.ds-access__card:hover::before { opacity: 1; }

.ds-access__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--color-primary-rgb), 0.08);
  border-radius: var(--radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}
.ds-access__card-icon i {
  color: var(--color-primary);
  font-size: 22px;
}
.ds-access__card:hover .ds-access__card-icon {
  background: rgba(var(--color-primary-rgb), 0.16);
  box-shadow: 0 0 18px rgba(var(--color-primary-rgb), 0.14);
}
.ds-access__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 10px;
  line-height: 1.3;
}
.ds-access__card p {
  font-size: 14px;
  color: var(--text-secondary, #555);
  margin: 0;
  line-height: 1.65;
}
.ds-access__card p a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(var(--color-primary-rgb), 0.35);
}
.ds-access__card p a:hover {
  text-decoration-color: var(--color-primary);
}

/* --- Trust Strip --- */
.ds-access__trust-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-tertiary, #999);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.ds-access__trust-strip {
  display: flex;
  align-items: stretch;
  background: var(--color-white, #fff);
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(var(--color-primary-rgb), 0.07);
  padding: 0;
  justify-content: initial;
  gap: 0;
}

.ds-access__trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 26px 22px 22px;
  transition: background 0.18s ease;
}
.ds-access__trust-item:hover {
  background: rgba(var(--color-primary-rgb), 0.03);
}

.ds-access__trust-sep {
  width: 1px;
  height: auto;
  background: rgba(var(--color-primary-rgb), 0.10);
  align-self: stretch;
  margin: 18px 0;
  flex-shrink: 0;
}

.ds-access__trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  transition: transform 0.2s ease;
}
.ds-access__trust-item:hover .ds-access__trust-icon {
  transform: scale(1.08);
}
.ds-access__trust-icon--purple {
  background: rgba(var(--color-primary-rgb), 0.10);
  color: var(--color-primary);
}
.ds-access__trust-icon--teal  { background: rgba(13,148,136,0.10); color: #0f766e; }
.ds-access__trust-icon--amber { background: rgba(217,119,6,0.10);  color: #b45309; }
.ds-access__trust-icon--blue  { background: rgba(37,99,235,0.10);  color: #1d4ed8; }

.ds-access__trust-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.ds-access__trust-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #0D1F3C);
  line-height: 1.3;
}
.ds-access__trust-body span {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary, #666);
  line-height: 1.5;
}

.ds-access__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  padding: 3px 10px 3px 7px;
  border-radius: 99px;
  margin-top: 6px;
  letter-spacing: 0.02em;
  width: fit-content;
}
.ds-access__trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ds-access__trust-pill--purple {
  background: rgba(var(--color-primary-rgb), 0.10);
  color: var(--color-primary);
}
.ds-access__trust-pill--purple::before { background: var(--color-primary); }
.ds-access__trust-pill--teal   { background: rgba(13,148,136,0.10); color: #0f766e; }
.ds-access__trust-pill--teal::before   { background: #0d9488; }
.ds-access__trust-pill--amber  { background: rgba(217,119,6,0.10);  color: #b45309; }
.ds-access__trust-pill--amber::before  { background: #d97706; }
.ds-access__trust-pill--blue   { background: rgba(37,99,235,0.10);  color: #1d4ed8; }
.ds-access__trust-pill--blue::before   { background: #2563eb; }

/* --- Secondary CTA --- */
.ds-access__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.32);
  border-radius: var(--radius-full, 50px);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.28s ease;
  margin-left: 14px;
}
.ds-access__cta-secondary:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}


/* =====================================================================
   ds-mgmt - SERVER MANAGEMENT UPSELL
===================================================================== */

.ds-mgmt {
  background: var(--color-white, #fff);
  padding: 80px 0;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

/* --- Social Proof Strip --- */
.ds-mgmt__proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.04);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-xl, 16px);
  padding: 20px 28px;
  gap: 0;
  flex-wrap: wrap;
}
.ds-mgmt__proof-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 16px;
}
.ds-mgmt__proof-item strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.ds-mgmt__proof-item span {
  font-size: 12px;
  color: var(--text-secondary, #666);
  line-height: 1.4;
}
.ds-mgmt__proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(var(--color-primary-rgb), 0.14);
  flex-shrink: 0;
  align-self: center;
}

/* --- Services List --- */
.ds-mgmt__list-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(var(--color-primary-rgb), 0.15);
}

.ds-mgmt__services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.ds-mgmt__service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(var(--color-primary-rgb), 0.03);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  border-radius: var(--radius-lg, 12px);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.ds-mgmt__service-item:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
  border-color: rgba(var(--color-primary-rgb), 0.20);
}

.ds-mgmt__service-icon {
  width: 38px;
  height: 38px;
  background: rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.ds-mgmt__service-icon i { color: var(--color-primary); font-size: 15px; }
.ds-mgmt__service-item:hover .ds-mgmt__service-icon {
  background: rgba(var(--color-primary-rgb), 0.18);
}

.ds-mgmt__service-body h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 3px;
  line-height: 1.3;
}
.ds-mgmt__service-body p {
  font-size: 12.5px;
  color: var(--text-secondary, #555);
  margin: 0;
  line-height: 1.5;
}

/* --- CTAs --- */
.ds-mgmt__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ds-mgmt__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.32);
  border-radius: var(--radius-full, 50px);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.28s ease;
}
.ds-mgmt__btn-outline:hover {
  background: rgba(var(--color-primary-rgb), 0.06);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}

/* --- Pricing Plan Cards --- */
.ds-mgmt__plan {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(var(--color-primary-rgb), 0.03);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-xl, 16px);
  padding: 22px 20px;
  margin-bottom: 12px;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.ds-mgmt__plan:last-of-type { margin-bottom: 0; }
.ds-mgmt__plan:hover {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  box-shadow: 0 8px 28px rgba(var(--color-primary-rgb), 0.08);
  transform: translateY(-3px);
}

.ds-mgmt__plan--featured {
  border-color: rgba(var(--color-primary-rgb), 0.28);
  background: rgba(var(--color-primary-rgb), 0.05);
  box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.07);
}
.ds-mgmt__plan--emergency {
  border-color: rgba(var(--color-orange-500-rgb, 255,152,0), 0.22);
  background: rgba(var(--color-orange-500-rgb, 255,152,0), 0.03);
}
.ds-mgmt__plan--emergency:hover {
  border-color: rgba(var(--color-orange-500-rgb, 255,152,0), 0.38);
  box-shadow: 0 8px 28px rgba(var(--color-orange-500-rgb, 255,152,0), 0.08);
}

.ds-mgmt__plan-badge {
  position: absolute;
  top: -1px;
  left: 20px;
  background: var(--gradient-horizontal, linear-gradient(90deg, var(--color-primary-dark, #4F46E5), var(--color-primary)));
  color: var(--color-white, #fff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
}

.ds-mgmt__plan-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ds-mgmt__plan-icon i { color: var(--color-primary); font-size: 18px; }
.ds-mgmt__plan--emergency .ds-mgmt__plan-icon {
  background: rgba(var(--color-orange-500-rgb, 255,152,0), 0.12);
}
.ds-mgmt__plan--emergency .ds-mgmt__plan-icon i {
  color: var(--color-orange-500, #ff9800);
}

.ds-mgmt__plan-body { flex: 1; min-width: 0; }
.ds-mgmt__plan-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
  margin: 0 0 3px;
  line-height: 1.3;
}
.ds-mgmt__plan-desc {
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 0 0 12px;
  line-height: 1.4;
}
.ds-mgmt__plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-mgmt__plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary, #555);
  padding: 3px 0;
  line-height: 1.45;
}
.ds-mgmt__plan-features li i {
  color: var(--color-primary);
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.ds-mgmt__plan--emergency .ds-mgmt__plan-features li i {
  color: var(--color-orange-500, #ff9800);
}

.ds-mgmt__plan-price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  min-width: 104px;
  padding-left: 16px;
  border-left: 1px solid rgba(var(--color-primary-rgb), 0.10);
}
.ds-mgmt__plan--emergency .ds-mgmt__plan-price-col {
  border-left-color: rgba(var(--color-orange-500-rgb, 255,152,0), 0.15);
}

.ds-mgmt__plan-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 2px;
}
.ds-mgmt__price-cents { font-size: 16px; font-weight: 700; }
.ds-mgmt__price-per {
  font-size: 11px;
  color: var(--text-secondary, #666);
  margin-bottom: 14px;
}
.ds-mgmt__price--amber { color: var(--color-orange-500, #ff9800); }

.ds-mgmt__order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--color-primary);
  color: var(--color-white, #fff);
  border-radius: var(--radius-full, 50px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.28s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.28);
}
.ds-mgmt__order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--color-primary-rgb), 0.36);
  color: var(--color-white, #fff);
  text-decoration: none;
}
.ds-mgmt__order-btn--amber {
  background: var(--color-orange-500, #ff9800);
  box-shadow: 0 4px 14px rgba(var(--color-orange-500-rgb, 255,152,0), 0.28);
}
.ds-mgmt__order-btn--amber:hover {
  box-shadow: 0 8px 22px rgba(var(--color-orange-500-rgb, 255,152,0), 0.36);
}

/* --- Reassurance note below plan cards --- */
.ds-mgmt__reassurance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(var(--color-primary-rgb), 0.04);
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-lg, 12px);
  padding: 14px 16px;
  margin: 14px 0 10px;
}
.ds-mgmt__reassurance i {
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ds-mgmt__reassurance p {
  font-size: 12.5px;
  color: var(--text-secondary, #666);
  margin: 0;
  line-height: 1.5;
}
.ds-mgmt__reassurance strong { color: var(--text-primary, #333); }

.ds-mgmt__footer-note {
  text-align: right;
  font-size: 12px;
  color: var(--text-secondary, #666);
  margin: 8px 0 0;
}
.ds-mgmt__footer-note a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(var(--color-primary-rgb), 0.35);
}
.ds-mgmt__footer-note a:hover {
  text-decoration-color: var(--color-primary);
}


/* =====================================================================
   RESPONSIVE - single consolidated block, no duplicate @media rules
===================================================================== */

@media (max-width: 991px) {

  .ds-access__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ds-access__trust-strip {
    flex-direction: column;
    border-radius: var(--radius-lg, 12px);
    padding: 0;
    gap: 0;
  }
  .ds-access__trust-sep {
    width: auto;
    height: 1px;
    margin: 0 20px;
    align-self: auto;
    flex-shrink: 0;
  }
  .ds-access__trust-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 18px 22px;
    width: 100%;
    flex: none;
  }
  .ds-access__trust-body { flex: 1; }

  .ds-access__cta-secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .ds-mgmt__proof-sep { display: none; }
  .ds-mgmt__proof-strip { gap: 0; padding: 16px; }
  .ds-mgmt__proof-item {
    width: 50%;
    flex: none;
    padding: 12px;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08);
  }
  .ds-mgmt__proof-item:nth-child(odd) {
    border-right: 1px solid rgba(var(--color-primary-rgb), 0.08);
  }
  .ds-mgmt__proof-item:nth-child(n+3) { border-bottom: none; }
}

@media (max-width: 768px) {

  .ds-access { padding: 50px 0; }
  .ds-mgmt   { padding: 50px 0; }

  .ds-access__grid { grid-template-columns: 1fr; gap: 12px; }
  .ds-access__card { padding: 22px 20px; }

  .ds-mgmt__proof-item {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.08) !important;
  }
  .ds-mgmt__proof-item:last-child { border-bottom: none !important; }

  .ds-mgmt__plan { flex-wrap: wrap; }
  .ds-mgmt__plan-price-col {
    border-left: none;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.10);
    padding-left: 0;
    padding-top: 14px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }
  .ds-mgmt__plan--emergency .ds-mgmt__plan-price-col {
    border-top-color: rgba(var(--color-orange-500-rgb, 255,152,0), 0.15);
  }
  .ds-mgmt__price-per { margin-bottom: 0; }
  .ds-mgmt__order-btn { margin-left: auto; }

  .ds-mgmt__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 30px;
  }
  .ds-mgmt__btn-outline,
  .ds-mgmt__ctas .btn-speed {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .ds-section-h2  { font-size: clamp(22px, 6vw, 36px); }
  .ds-section-sub { font-size: 15px; }
  .ds-mgmt__footer-note { text-align: center; }
}

@media (max-width: 480px) {
  .ds-mgmt__plan { padding: 16px; }
  .ds-mgmt__plan-features { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px; }
  .ds-access__trust-item { padding: 14px 16px; }
  .ds-access__card { padding: 20px 16px; }
}


@media (prefers-reduced-motion: reduce) {
  .ds-access__card,
  .ds-access__card::before,
  .ds-access__trust-icon,
  .ds-mgmt__plan,
  .ds-mgmt__service-item,
  .ds-mgmt__order-btn,
  .ds-access__cta-secondary,
  .ds-mgmt__btn-outline { transition: none; }
  .ds-access__card:hover,
  .ds-mgmt__plan:hover,
  .ds-mgmt__order-btn:hover { transform: none; }
}
/* =====================================================================
   OFFSHORE TRUST SECTION - v2.0 ADDITIONS
   Append to: https://cdn.underhost.com/assets/css/update/dedicated-sections.css
   after the existing ds-trust__ block
   =====================================================================

   Adds:
   - .ds-trust__stats--2col     (2-column stats, e.g. Curacao)
   - .ds-trust__stats--5col     (5-column stats)
   - .ds-trust__features--5     (5 features - compact layout)
   - .ds-trust__features--6     (6 features - 2-column grid)
   - .ds-trust__features--7     (7 features - 2-column compact)
   - .ds-trust__features--8     (8 features - 2-column compact)
   - .ds-trust__card-header accessible icon color fix
===================================================================== */


/* -------------------------------------------------------
   Stats row column variants
------------------------------------------------------- */

/* 2 stats: wider columns */
.ds-trust__stats--2col {
  grid-template-columns: repeat(2, 1fr);
}

/* 4 stats: default (repeat(3,1fr) from base - override to 4) */
.ds-trust__stats {
  grid-template-columns: repeat(3, 1fr); /* base - 3 cols */
}

/* Auto-fit for 4 stats */
.ds-trust__stats:has(> .ds-trust__stat:nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}

/* Fallback for browsers without :has - use explicit modifier */
.ds-trust__stats--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* 5 stats */
.ds-trust__stats--5col {
  grid-template-columns: repeat(5, 1fr);
}


/* -------------------------------------------------------
   Feature list layout variants
   5 features: compact (smaller padding)
   6-8 features: 2-column grid
------------------------------------------------------- */

/* 5 features: still single-column, just tighter */
.ds-trust__features--5 .ds-trust__feature {
  padding: 10px 12px;
}
.ds-trust__features--5 .ds-trust__feature-name {
  font-size: 13px;
}
.ds-trust__features--5 .ds-trust__feature-desc {
  font-size: 12px;
  line-height: 1.5;
}

/* 6, 7, 8 features: 2-column grid */
.ds-trust__features--6,
.ds-trust__features--7,
.ds-trust__features--8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
}

.ds-trust__features--6 .ds-trust__feature,
.ds-trust__features--7 .ds-trust__feature,
.ds-trust__features--8 .ds-trust__feature {
  padding: 10px 10px;
  border-radius: 8px;
}

.ds-trust__features--6 .ds-trust__feature-name,
.ds-trust__features--7 .ds-trust__feature-name,
.ds-trust__features--8 .ds-trust__feature-name {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}
.ds-trust__features--6 .ds-trust__feature-name i,
.ds-trust__features--7 .ds-trust__feature-name i,
.ds-trust__features--8 .ds-trust__feature-name i {
  font-size: 11px;
  margin-right: 6px;
}
.ds-trust__features--6 .ds-trust__feature-desc,
.ds-trust__features--7 .ds-trust__feature-desc,
.ds-trust__features--8 .ds-trust__feature-desc {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-secondary, #555);
}

/* Stats row spacing for 2-col layouts needs extra breathing room */
.ds-trust__features--6 + .ds-trust__stats,
.ds-trust__features--7 + .ds-trust__stats,
.ds-trust__features--8 + .ds-trust__stats {
  margin-top: 12px;
}


/* -------------------------------------------------------
   Card header icon color inherits primary correctly
------------------------------------------------------- */

.ds-trust__card-header-icon i {
  font-size: 24px;
  color: var(--color-white, #fff);
}


/* -------------------------------------------------------
   Responsive overrides for multi-column feature grids
------------------------------------------------------- */

@media (max-width: 480px) {
  .ds-trust__features--6,
  .ds-trust__features--7,
  .ds-trust__features--8 {
    grid-template-columns: 1fr;
  }

  .ds-trust__stats--4col,
  .ds-trust__stats--5col {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ds-trust__stats--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   WHY CHOOSE US - STAT BLOCKS
   Uses --color-primary / --color-primary-rgb exclusively.
   Theme class (theme-purple, theme-caribbean, etc.) injects
   the correct accent color automatically via theme.css.
---------------------------------------------------------- */
.ods-stat-block {
  padding: 28px 16px 22px;
  background: var(--surface-secondary, #f8f8f8);
  border-radius: var(--radius-lg, 12px);
  border: 1px solid rgba(var(--color-primary-rgb), 0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ods-stat-block:hover {
  box-shadow: 0 8px 28px rgba(var(--color-primary-rgb), 0.12);
  transform: translateY(-3px);
}
.ods-stat-block > i {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: block;
}
.ods-stat-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--color-primary-dark, var(--color-primary));
  line-height: 1;
  margin-bottom: 6px;
}
.ods-stat-label {
  font-size: 13px;
  color: var(--text-secondary, #666);
  font-weight: 500;
  line-height: 1.4;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ods-stat-block {
    transition: none;
  }
  .ods-stat-block:hover {
    transform: none;
  }
}

/* =====================================================================
   MOBILE BUTTON SIZE FIXES
   main.css shrinks .btn-speed globally at mobile to very small sizes
   (font-size: 11px, padding: 4px 12px) which makes buttons untappable.
   These overrides restore proper touch-friendly sizing within all
   dedicated section partials. Scoped to avoid affecting other pages.
   Min tap target: 44px height (Apple HIG / WCAG 2.5.5)
===================================================================== */
 
@media (max-width: 991px) {
 
  /* Hero section buttons */
  .ds-hero .btn-speed,
  .ds-hero__order-btn,
  .ds-hero__custom-cta-btn {
    font-size: 14px !important;
    padding: 12px 24px !important;
    min-height: 44px;
  }
 
  /* All ds-* section primary buttons */
  .ds-access .btn-speed,
  .ds-mgmt .btn-speed,
  .ds-trust .btn-speed,
  .ds-latency .btn-speed,
  .ds-locs .btn-speed,
  .why-choose-us-short .btn-speed,
  .included-features-section .btn-speed,
  .included-features-section .features-btn,
  .migration-section .btn-speed,
  .migration-section .migration-btn {
    font-size: 14px !important;
    padding: 12px 24px !important;
    min-height: 44px;
  }
 
  /* Outline / secondary buttons */
  .ds-mgmt__btn-outline,
  .ds-access__cta-secondary,
  .ds-trust__btn-outline {
    font-size: 13px !important;
    padding: 11px 20px !important;
    min-height: 44px;
  }
 
  /* Plan order buttons */
  .ds-hero__order-btn {
    font-size: 14px !important;
    padding: 13px 20px !important;
    min-height: 48px;
  }
 
  /* Management plan order buttons */
  .ds-mgmt__order-btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
    min-height: 44px;
  }
 
  /* Location deploy buttons - keep compact but tappable */
  .ds-locs__deploy-btn {
    font-size: 12px !important;
    padding: 9px 14px !important;
    min-height: 36px;
  }
 
  /* Explore all button */
  .ds-locs__explore-btn {
    font-size: 12px !important;
    padding: 12px 24px !important;
    min-height: 44px;
  }
}
 
@media (max-width: 768px) {
 
  /* Stack CTA pairs vertically and go full width */
  .ds-mgmt__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 30px;
  }
  .ds-mgmt__ctas .btn-speed,
  .ds-mgmt__btn-outline {
    width: 100% !important;
    min-height: 48px;
    justify-content: center !important;
    text-align: center !important;
  }
 
  .ds-trust__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .ds-trust__ctas .btn-speed,
  .ds-trust__btn-outline {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
 
  .ds-access .btn-speed,
  .ds-access__cta-secondary {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
 
  /* Hero custom CTA button */
  .ds-hero__custom-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
 
  /* Features section CTA */
  .included-features-section .features-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
 
/* Reduce motion - buttons still need correct size */
@media (prefers-reduced-motion: reduce) {
  .ds-hero__order-btn--featured,
  .ds-hero__plan-stamp--featured {
    animation: none !important;
  }
}
/* =====================================================================
   APPEND TO: dedicated-sections.css
   (add at the very end of the file)

   Migrated from: offshore-dedicated.css
   Covers all remaining offshore-dedicated.css rules that are NOT
   duplicates of main.css and belong to the dedicated page partials.

   After this append, offshore-dedicated.css can be deleted entirely.
   Remove its <link> tag from header.php / _hero.php / any page that
   loads it.
   ===================================================================== */


/* ================================
   Hero Section Wrapper
   Used by _hero.php on all dedicated pages.
   Migrated from: .offshore-hero / .offshore-hero--wrap
   ================================ */

.offshore-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.offshore-hero--wrap {
  position: relative;
}

.offshore-hero--wrap .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.offshore-hero--wrap .container {
  position: relative;
  z-index: 2;
}


/* ================================
   Hero Badge
   Used by _hero.php — the top badge strip.
   All colors use --color-primary so every theme works.
   Replaces the hardcoded purple rgba(124,58,237,...) values.
   ================================ */

.offshore-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full, 50px);
  background: rgba(var(--color-primary-rgb), 0.18);
  border: 1px solid rgba(var(--color-primary-rgb), 0.40);
  color: var(--color-primary-light, rgba(255,255,255,0.90));
  font-weight: var(--font-weight-extrabold, 800);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 16px;
}


/* ================================
   DMCA-Free Strip
   Used by _offshore-trust.php partial.
   Replaces the hardcoded purple version in offshore-dedicated.css.
   The existing ds-trust__dmca-strip in dedicated-sections.css uses
   --color-primary-rgb already — this legacy class now does the same.
   ================================ */

.dmca-free-strip {
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.10),
    rgba(var(--color-primary-rgb), 0.04)
  );
  border: 1px solid rgba(var(--color-primary-rgb), 0.28);
  border-radius: var(--radius-2xl, 20px);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.dmca-free-strip-icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dmca-free-strip-icon i {
  color: var(--color-primary-dark, var(--color-primary));
  font-size: 22px;
}

.dmca-free-strip-text strong {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.dmca-free-strip-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .dmca-free-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
}


/* ================================
   Offshore Trust Items
   Used by _offshore-trust.php partial.
   Replaces hardcoded #a78bfa with --color-primary.
   ================================ */

.offshore-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.offshore-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full, 50px);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-base);

}

.offshore-trust-item i {
  color: var(--color-primary);
}

.offshore-trust-item:hover {
  border-color: var(--color-primary);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .offshore-trust { gap: 8px; }
}


/* ================================
   Plan Best-Value Ribbon
   Used by _hero.php plan cards.
   Replaces hardcoded position — color uses --color-primary.
   ================================ */

.plan-best-value {
  position: relative;
}

.plan-best-value::before {
  content: "BEST VALUE";
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gradient-horizontal,
    linear-gradient(90deg, var(--color-primary-dark, #1a56a0), var(--color-primary)));
  color: var(--color-white, #fff);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius-md, 8px) var(--radius-md, 8px);
  z-index: 3;
}

@media (max-width: 768px) {
  .plan-best-value::before { right: 12px; }
}


/* ================================
   Plan Badge (CPU Score dot)
   Used inside plan cards by _hero.php.
   Replaces all hardcoded rgba(124,58,237,...) purple with
   --color-primary-rgb so it follows the page theme.
   ================================ */

.plan-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 18px;
}

.plan-title {
  margin: 0;
  line-height: 1.2;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.12),
    rgba(var(--color-primary-rgb), 0.06)
  );
  border: 1px solid rgba(var(--color-primary-rgb), 0.24);
  color: var(--color-primary-dark, var(--color-primary)) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .22s ease;
  position: relative;
  top: 2px;
  max-width: 100%;
  white-space: nowrap;
}

/* Dot indicator — uses theme primary */
.plan-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.12);
  flex-shrink: 0;
}

.planbox:hover .plan-badge,
.dedicated-plan:hover .plan-badge {
  transform: translateY(-1px);
  border-color: rgba(var(--color-primary-rgb), 0.34);
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.14);
}

@media (max-width: 991px) {
  .plan-header {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .plan-badge { top: 0; }
}

@media (max-width: 767px) {
  .plan-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .plan-badge {
    white-space: normal;
    line-height: 1.35;
  }
}


/* ================================
   Location Card — Offshore Active Highlight
   Used by _global-locations.php on offshore pages.
   Replaces hardcoded rgba(124,58,237,...) with --color-primary.
   ================================ */

.location-card.offshore-active {
  border: 2px solid rgba(var(--color-primary-rgb), 0.55) !important;
}

.location-card.offshore-active .location-glow {
  background: radial-gradient(
    circle at center,
    rgba(var(--color-primary-rgb), 0.30) 0%,
    transparent 70%
  ) !important;
}


/* ================================
   END offshore-dedicated.css migration
   ================================
   You can now:
   1. Delete offshore-dedicated.css from your CDN/server.
   2. Remove its <link> tag from header.php and any page template
      that loads it (search for "offshore-dedicated.css").
   3. Confirm main.css loads before dedicated-sections.css in your
      <head> — the variable definitions in main.css :root must be
      parsed first.
   ================================ */
