/*
 * dedicated-pages.css
 * Place at: /assets/css/dedicated-pages.css
 * Load AFTER main.css — zero conflicts.
 * Styles for /dedicated/ landing page.
 */

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.ded-breadcrumb {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .65rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.ded-breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.ded-breadcrumb a:hover { color: #fff; }
.ded-breadcrumb span { margin: 0 .45rem; opacity: .3; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.ded-hero {
  background: var(--navy);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Decorative circuit / glow background */
.ded-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ded-circuit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 4px;
}
.ded-circuit-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  transform: rotate(15deg);
  border-color: rgba(237,28,36,.08);
}
.ded-circuit-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 5%;
  transform: rotate(-10deg);
  border-color: rgba(0,113,197,.08);
}
.ded-circuit-3 {
  width: 300px; height: 300px;
  top: 30%; right: 30%;
  transform: rotate(30deg);
  border-color: rgba(124,58,237,.06);
}
.ded-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  animation: ded-glow-pulse 6s ease-in-out infinite;
}
.ded-glow-red   { width:500px;height:500px;background:#ED1C24;top:-150px;right:-100px;animation-delay:0s; }
.ded-glow-blue  { width:400px;height:400px;background:#0071C5;bottom:-100px;left:10%;animation-delay:2s; }
.ded-glow-purple{ width:350px;height:350px;background:#7C3AED;top:40%;right:20%;animation-delay:4s; }
@keyframes ded-glow-pulse {
  0%,100%{opacity:.12;transform:scale(1)}
  50%{opacity:.22;transform:scale(1.08)}
}

.ded-hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 4.5rem;
  position: relative;
  z-index: 1;
}

/* Eyebrow chips */
.ded-eyebrow {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ded-eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: .775rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}
.ded-chip-red    { background:rgba(237,28,36,.15);border-color:rgba(237,28,36,.3);color:#ff6b6b; }
.ded-chip-blue   { background:rgba(0,113,197,.15);border-color:rgba(0,113,197,.3);color:#60a5fa; }
.ded-chip-purple { background:rgba(124,58,237,.15);border-color:rgba(124,58,237,.3);color:#c4b5fd; }

/* Title */
.ded-hero-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.1rem;
  display: block;
}
.ded-hero-em {
  display: block;
  background: linear-gradient(135deg, #ED1C24 0%, #FF6B00 35%, #0071C5 65%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ded-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.ded-hero-cta {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.ded-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.8rem;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #ED1C24, #FF6B00);
  color: #fff !important;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  border: none;
}
.ded-btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237,28,36,.4);
}
.ded-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .72rem 1.65rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  background: transparent;
  color: rgba(255,255,255,.8) !important;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
}
.ded-btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07);
  color: #fff !important;
}
.ded-hero-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.ded-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem .75rem;
  font-size: .775rem;
  font-weight: 500;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: rgba(255,255,255,.75);
}
.ded-badge strong { color: #fff; }

/* Server showcase card */
.ded-hero-showcase { display: flex; flex-direction: column; gap: 1rem; }
.ded-server-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(12px);
}
.ded-server-led {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: .35rem;
  animation: ded-blink 2s ease-in-out infinite;
}
.ded-led-green { background: #22C55E; animation-delay: 0s; }
.ded-led-amber { background: #F59E0B; animation-delay: .7s; }
@keyframes ded-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.ded-server-brand {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin: .6rem 0 1rem;
}
.ded-server-spec-row {
  display: grid;
  grid-template-columns: 1.5rem 80px 1fr;
  gap: .5rem;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .82rem;
}
.ded-server-spec-row:last-child { border-bottom: none; }
.ded-spec-ico { font-size: .9rem; }
.ded-spec-lbl { color: rgba(255,255,255,.4); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.ded-spec-val { color: rgba(255,255,255,.85); }
.ded-server-footer {
  font-size: .7rem;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin-top: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ded-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  overflow: hidden;
}
.ded-hstat {
  background: rgba(255,255,255,.04);
  padding: .85rem .5rem;
  text-align: center;
}
.ded-hstat-val {
  display: block;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .3rem;
}
.ded-hstat-lbl {
  font-size: .62rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════════ */
.ded-trust-strip {
  background: #0b0f1a;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .9rem 0;
  overflow-x: auto;
}
.ded-trust-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  white-space: nowrap;
  justify-content: center;
}
.ded-trust-item { font-size: .8125rem; color: rgba(255,255,255,.5); }
.ded-trust-item strong { color: rgba(255,255,255,.85); }
.ded-trust-sep { color: rgba(255,255,255,.15); }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════ */
.ded-sh {
  text-align: center;
  margin-bottom: 3rem;
}
.ded-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .85rem;
}
.ded-tag::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: linear-gradient(90deg,#ED1C24,#7C3AED);
  border-radius: 2px;
}
.ded-sh h2 {
  font-family: var(--fd);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .7rem;
}
.ded-sh p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   SERVER RANGE CARDS
═══════════════════════════════════════════════════════════════ */
.ded-servers {
  background: var(--navy);
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ded-servers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ded-server-card-main {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .25s;
  border-top: 3px solid var(--dsc, #ED1C24);
}
.ded-server-card-main:hover {
  border-color: var(--dsc, #ED1C24);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px var(--dsc, #ED1C24)22;
}
.ded-card-offers {
  border-top-color: #059669;
  background: rgba(5,150,105,.04);
}
.ded-card-tag {
  position: absolute;
  top: -1px; right: 1.25rem;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  padding: .2rem .75rem;
  border-radius: 0 0 8px 8px;
}
.ded-card-icon-wrap {
  position: relative;
  padding: 2rem 1.75rem 1.25rem;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.ded-card-emoji {
  font-size: 2.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ded-card-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .2;
  right: -20px; top: -20px;
}
.ded-card-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  padding: 1.25rem 1.75rem .5rem;
}
.ded-card-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  padding: 0 1.75rem 1.25rem;
  flex: 1;
}
.ded-card-stats {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,.06);
  margin: 0 1.75rem 1.25rem;
  border-radius: var(--r-md);
  overflow: hidden;
}
.ded-card-stat {
  flex: 1;
  background: rgba(255,255,255,.03);
  padding: .65rem .75rem;
  text-align: center;
}
.ded-card-stat strong {
  display: block;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.ded-card-stat span {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}
.ded-card-btn {
  display: block;
  margin: 0 1.75rem 1.75rem;
  padding: .65rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1.5px solid var(--dsc, #ED1C24);
  color: var(--dsc, #ED1C24) !important;
  transition: background .2s, color .2s;
  background: transparent;
}
.ded-card-btn:hover {
  background: var(--dsc, #ED1C24);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════════════════════════ */
.ded-features {
  background: #0e1220;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ded-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.ded-feat-card {
  background: #141928;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.ded-feat-card:hover {
  border-color: var(--fclr, #ED1C24);
  transform: translateY(-2px);
}
.ded-feat-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ded-feat-card h4 {
  font-family: var(--fd);
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.ded-feat-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   SPECS TABLE
═══════════════════════════════════════════════════════════════ */
.ded-specs {
  background: #080c14;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ded-specs-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  max-width: 760px;
  margin-inline: auto;
}
.ded-specs-table { width: 100%; border-collapse: collapse; }
.ded-specs-table tr:last-child td { border-bottom: none; }
.ded-specs-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.ded-specs-table td { background: #0e1220; }
.ded-specs-table tr:hover td { background: rgba(237,28,36,.06); }
.ded-specs-table td {
  padding: .9rem 1.25rem;
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.ded-specs-table td:first-child { font-weight: 700; color: rgba(255,255,255,.85); width: 38%; white-space: nowrap; }
.ded-specs-table td:last-child { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════════════════════════ */
.ded-why {
  background: #0e1220;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ded-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.ded-why-card {
  background: #141928;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.ded-why-card:hover {
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.ded-why-num {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-family: var(--fd);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
}
.ded-why-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.ded-why-card h4 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.ded-why-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.ded-faq {
  background: #080c14;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ded-faq-list { max-width: 860px; margin-inline: auto; }
.ded-faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  background: #141928;
  margin-bottom: .6rem;
  overflow: hidden;
  transition: border-color .2s;
}
.ded-faq-item.open { border-color: #ED1C24; }
.ded-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  user-select: none;
}
.ded-faq-q:hover { color: #fff; }
.ded-faq-arrow { font-size: .7rem; color: rgba(255,255,255,.25); transition: transform .3s; flex-shrink: 0; }
.ded-faq-item.open .ded-faq-arrow { transform: rotate(180deg); color: #ED1C24; }
.ded-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.ded-faq-item.open .ded-faq-a { max-height: 400px; }
.ded-faq-a-inner { padding: 0 1.25rem 1.25rem; }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.ded-cta {
  background: #000;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ded-cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ded-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .18;
}
.ded-cta-glow-red    { width:500px;height:500px;background:#ED1C24;top:-150px;left:-100px; }
.ded-cta-glow-blue   { width:400px;height:400px;background:#0071C5;bottom:-100px;right:10%; }
.ded-cta-glow-purple { width:350px;height:350px;background:#7C3AED;top:20%;left:40%; }
.ded-cta-inner { position: relative; z-index: 1; }
.ded-cta-chips {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.ded-cta-chips span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.ded-cta h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: .75rem;
}
.ded-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.ded-cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.ded-btn-outline-white {
  padding: .72rem 1.65rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  background: transparent;
  color: rgba(255,255,255,.8) !important;
  border: 1px solid rgba(255,255,255,.25);
  transition: all .2s;
}
.ded-btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ded-servers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .ded-hero-inner { grid-template-columns: 1fr; padding: 3.5rem 0 3rem; gap: 2.5rem; }
  .ded-hero-showcase { flex-direction: row; flex-wrap: wrap; gap: .75rem; }
  .ded-server-card { flex: 1; min-width: 280px; }
  .ded-hero-stats { flex: 1; min-width: 280px; }
}
@media (max-width: 768px) {
  .ded-servers-grid { grid-template-columns: 1fr; }
  .ded-feat-grid, .ded-why-grid { grid-template-columns: 1fr; }
  .ded-features, .ded-why, .ded-specs, .ded-faq, .ded-cta, .ded-servers { padding: 3.5rem 0; }
  .ded-sh { margin-bottom: 2rem; }
  .ded-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .ded-cta-btns { flex-direction: column; align-items: center; }
  .ded-btn-primary, .ded-btn-outline, .ded-btn-outline-white { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .ded-trust-inner { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .ded-specs-table td:first-child { white-space: normal; }
  .ded-eyebrow { gap: .35rem; }
}
