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

html {
  scroll-behavior: smooth;
}

.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;
}

/* Buttons and CTAs */

/* 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;
}

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

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

.feature-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgb(193,193,193);
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "•";
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.feature-list li span {
  font-weight: 700;
}

.dedicated-overview-section .container {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}
/* Add-ons Section */
.addons-section {
  padding: 30px 5%;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

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

.addon-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
}

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

.addon-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.addon-price {
  font-weight: 700;
  color: var(--primary-blue) !important;
  font-size: 1.125rem;
  margin-top: auto;
}
/* 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;
}
.check-icon {
  color: white;
  margin-right: 6px;
 
}

.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;
  text-align: center;
  align-items: center;
}

.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);
  width: 100%;
}

.spec-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

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

.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;
  text-align: center;
}

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

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

.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;
}

.series-cta {
  display: block;
  text-align: center;
  background-color: var(--primary-blue);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.series-cta:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}


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

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

.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;
}

.option-cta {
  display: block;
  text-align: center;
  background-color: var(--primary-blue);
  color: white;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.option-cta:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.management-option-card.highlighted .option-cta {
  background-color: var(--orange);
}

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

/* 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;
  margin-top: 70px;
  margin-bottom: 70px;
}

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

.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;
}

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

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

.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background-color: var(--bg-dark);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.testimonial-quote-mark {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  color: var(--primary-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-content-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  color: rgb(193,193,193);
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  margin-right: 15px;
}

.testimonial-author-info h4 {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-author-info p {
  margin: 4px 0 8px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
}

.star {
  color: var(--orange);
  margin-right: 2px;
}

.testimonial-company-logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.testimonial-company-logo img {
  max-height: 100%;
  max-width: 120px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.testimonial-company-logo img:hover {
  opacity: 1;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.testimonial-nav-button {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-button:hover {
  background-color: var(--primary-blue);
  color: white;
}

.testimonial-nav-button svg {
  width: 20px;
  height: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(193,193,193);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.2);
}

/* CTA Section */
.dedicated-cta-section {
  padding: 30px 5%;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

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

.dedicated-cta-description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.dedicated-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  background-color: var(--primary-blue);
  z-index: 11;
  pointer-events: auto;
  transition: background 0.3s ease;
}

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

/* Make sure blobs are behind content */
.blob {
  position: absolute;
  z-index: 0 !important;
  pointer-events: none;
}

/* 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;
  }
}