@import url(/assets/theme/theme.css);

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Blob Background Elements */
.blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(120px);
  z-index: 1;
}

.blob-1 {
  top: -300px;
  right: -300px;
}

.blob-2 {
  bottom: -400px;
  left: -200px;
}

.blob-3 {
  top: 20%;
  right: -300px;
}

.blob-4 {
  bottom: 10%;
  left: -300px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dot-blue, .dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.dot-blue {
  background-color: var(--primary-blue);
}

.dot-orange {
  background-color: var(--orange);
}

/* Section Titles and Text */
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Dedicated Hero Section */
.dedicated-hero-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.dedicated-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dedicated-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.dedicated-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgb(193,193,193);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Dedicated Overview Section */
.dedicated-overview-section {
  padding: 30px 5%;
  position: relative;
}

.overview-content {
  display: flex;
  justify-content: center;
}

.overview-text {
  max-width: 1000px;
}

.overview-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.overview-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgb(193,193,193);
}

/* Technical Specifications Section */
.specifications-section {
  padding: 30px 5%;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specification-card {
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.specification-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: rgb(193,193,193);
  line-height: 1.5;
}

.spec-icon {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  font-weight: bold;
}

/* Server Series Section */
.server-series-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.server-series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.server-series-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.server-series-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.series-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.series-badge.popular {
  background-color: rgba(255, 255, 255, 0.02);
}

.series-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0 1.5rem;
  text-align: center;
}

.series-specs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
  display: flex;
  align-items: flex-start;
}

.spec-icon {
  margin-right: 1rem;
  width: 24px;
  flex-shrink: 0;
}

.spec-icon img {
  width: 24px;
  height: 24px;
}

.spec-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-400);
  margin: 0 0 0.25rem;
}

.spec-detail p {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

.series-description {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.series-price {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  text-align: center;
}

.highlight {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.feature-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 100%;
  height: auto;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
}

/* Management Options Section */
.management-section {
  padding: 30px 5%;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
  overflow: hidden;
}

.management-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.management-option-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.management-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.management-option-card.highlighted {
  border: 2px solid var(--primary-blue);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background-color: var(--orange);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.option-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.option-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.option-price {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
}

.option-description {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.option-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgb(193,193,193);
  line-height: 1.5;
}

.check-icon {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  font-weight: bold;
}

/* Use Cases Section */
.use-cases-section {
  padding: 30px 5%;
  position: relative;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.use-case-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon img {
  max-width: 100%;
  height: auto;
}

.use-case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.use-case-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 30px 5%;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gray-400);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon:before,
.faq-icon:after {
  content: '';
  position: absolute;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.faq-icon:before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-icon:after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.faq-question.active {
  color: var(--white);
}

.faq-question.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question.active .faq-icon:after {
  background-color: var(--gray-400);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Differentiators Section */
.differentiators-section {
  padding: 30px 5%;
  position: relative;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.differentiator-item {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-5px);
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.differentiator-icon img {
  max-width: 100%;
  height: auto;
}

.differentiator-item p {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* CTA Section */
.colocation-cta-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
  background-color: rgba(25, 39, 80, 0.05);
}

.colocation-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.colocation-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.colocation-cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===== Button Base Styles ===== */
.btn,
.cta-primary,
.cta-secondary,
.series-cta,
.option-cta {
  position: relative;
  z-index: 10;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary CTA Button */
.cta-primary {
  background-color: #3b82f6;
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
}

/* Secondary CTA Button */
.cta-secondary {
  background-color: rgba(59, 130, 246, 0.1);
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Series CTA Button */
.series-cta {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  display: block;
}

/* Option CTA Button */
.option-cta {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  display: block;
}

/* Highlighted Option CTA */
.management-option-card.highlighted .option-cta {
  background-color: var(--orange);
}

/* Button Hover States */
.cta-primary:hover,
.cta-secondary:hover,
.series-cta:hover,
.option-cta:hover {
  transform: translateY(-2px);
  z-index: 11;
}

.cta-primary:hover {
  background-color: #2563eb;
}

.cta-secondary:hover {
  background-color: rgba(59, 130, 246, 0.2);
}

.series-cta:hover,
.option-cta:hover {
  background-color: var(--dark-blue);
}

.management-option-card.highlighted .option-cta:hover {
  background-color: #e67e22;
}

/* CTA Buttons Container */
.colocation-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

/* ===== Mobile Responsive Fixes ===== */
@media (max-width: 768px) {
  /* Ensure all buttons maintain proper stacking */
  .btn,
  .cta-primary,
  .cta-secondary,
  .series-cta,
  .option-cta {
    position: relative;
    z-index: 10;
  }
  
  /* Stack buttons vertically on mobile */
  .colocation-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Full width buttons with max-width */
  .cta-primary,
  .cta-secondary,
  .series-cta,
  .option-cta {
    width: 100%;
    max-width: 300px;
  }
  
  /* Fix for server series cards */
  .server-series-card {
    position: relative;
    z-index: 1; /* Lower than buttons */
  }
  
  .server-series-card .series-cta {
    z-index: 10; /* Higher than parent */
  }
  
  /* Fix for management option cards */
  .management-option-card {
    position: relative;
    z-index: 1;
  }
  
  .management-option-card .option-cta {
    z-index: 10;
  }
}

/* Force buttons to be above all other elements */
.btn,
.cta-primary,
.cta-secondary,
.series-cta,
.option-cta {
  transform: translate3d(0,0,0); /* Creates new stacking context */
  will-change: transform; /* Optimizes for GPU rendering */
}
/* Additional z-index fixes for overlapping elements */
.blob {
  z-index: 1 !important; /* Ensure blobs stay behind content */
}

.server-series-section,
.management-section,
.colocation-cta-section {
  position: relative;
  z-index: 2; /* Higher than blobs */
}

.server-series-card,
.management-option-card {
  position: relative;
  z-index: 3; /* Higher than section */
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .dedicated-cta-buttons,
  .pre-footer-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .dedicated-cta-buttons .btn,
  .pre-footer-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .management-options-grid {
    grid-template-columns: 1fr;
  }
  
  .server-series-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .dedicated-hero-title {
    font-size: 2.5rem;
  }
  
  .dedicated-cta-title, 
  .section-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .specifications-grid,
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    padding: 30px;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .testimonial-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .testimonial-company-logo {
    align-self: flex-start;
  }
  
  .testimonial-quote-mark {
    font-size: 80px;
    top: -10px;
    left: 15px;
  }

  .series-badge,
  .popular-tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .dedicated-hero-title {
    font-size: 2rem;
  }
  
  .dedicated-hero-description {
    font-size: 1rem;
  }
  
  .section-title,
  .dedicated-cta-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 1.75rem;
  }
  
  .testimonials-wrapper {
    min-height: 550px;
  }
  
  .testimonial-slide {
    padding: 25px 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .testimonial-author-image {
    width: 50px;
    height: 50px;
  }
  
  .series-name,
  .option-header h3 {
    font-size: 1.5rem;
  }
  
  .series-specs,
  .option-features {
    gap: 1rem;
  }
}