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

/* Global Container Styles */
.gpu-cloud-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Global Section Styles */
.gpu-cloud-hero,
.gpu-cloud-overview-section,
.gpu-cloud-specifications-section,
.gpu-cloud-why-choose-section,
.gpu-cloud-features-section,
.gpu-cloud-faq-section,
.gpu-cloud-pre-footer-cta {
  padding: 30px 5%;
  position: relative;
}

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

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

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

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

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

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

.gpu-cloud-blob-5 {
  top: 30%;
  right: -300px;
}

/* Hero Form Styles */
.gpu-cloud-hero-form-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(19, 18, 19, 0.9) 100%);
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  margin-top:5vh;
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.gpu-cloud-hero-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: gpu-cloud-shimmer 2s infinite;
}

@keyframes gpu-cloud-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gpu-cloud-hero-form-box .gpu-cloud-form-header {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
  color: #3b82f6;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-row .gpu-cloud-form-control {
  margin-bottom: 0;
  flex: 1;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control {
  width: 100%;
  padding: 0.75rem 0.875rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15),
              0 4px 12px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control::placeholder {
  color: rgba(245, 245, 245, 0.6);
  transition: all 0.3s ease;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control:focus::placeholder {
  color: rgba(59, 130, 246, 0.8);
  transform: translateY(-2px);
}

.gpu-cloud-hero-form-box textarea.gpu-cloud-form-control {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.gpu-cloud-hero-recaptcha {
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  transform: scale(0.8);
  transform-origin: center;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit:hover::before {
  left: 100%;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: gpu-cloud-spin 1s linear infinite;
}

@keyframes gpu-cloud-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero section layout modifications */
.gpu-cloud-hero-with-form {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
}

.gpu-cloud-hero-content {
  max-width: none;
  text-align: left;
}

/* Section Badge */
.gpu-cloud-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;
}

.gpu-cloud-hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Section Titles and Text */
.gpu-cloud-section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

.gpu-cloud-section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgb(193,193,193);
}

.gpu-cloud-section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons and CTAs */
.gpu-cloud-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.gpu-cloud-cta-primary {
  background-color: #3b82f6;
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  z-index: 10;
  text-decoration: none;
}

.gpu-cloud-cta-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.gpu-cloud-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);
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
  text-decoration: none;
}

.gpu-cloud-cta-secondary:hover {
  background-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

/* GPU Hero Section */
.gpu-cloud-hero {
  position: relative;
  overflow: hidden;
}

.gpu-cloud-hero-content h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.gpu-cloud-hero-content h2 span {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gpu-cloud-hero-description {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.gpu-cloud-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gpu-cloud-trusted-by {
  text-align: left;
}

.gpu-cloud-trusted-by-text {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gpu-cloud-trusted-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.gpu-cloud-trusted-logo {
  height: 35px;
  filter: brightness(1000%) contrast(100%) saturate(0%);
}

/* GPU Overview Section */
.gpu-cloud-overview-section {
  position: relative;
}

.gpu-cloud-overview-content {
  display: flex;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}

.gpu-cloud-overview-text {
  max-width: 1400px;
}

.gpu-cloud-overview-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
  text-align: center;
}

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

/* Technical Specifications Section */
.gpu-cloud-specifications-section {
  background-color: rgba(25, 39, 80, 0.1);
}

.gpu-cloud-specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.gpu-cloud-specification-card {
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  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;
}

.gpu-cloud-specification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.gpu-cloud-specification-card.gpu-cloud-featured-config {
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(19, 18, 19, 0.9));
}

.gpu-cloud-specification-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f5f5f5;
}

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

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

.gpu-cloud-spec-icon {
  color: #3b82f6;
  margin-right: 0.75rem;
  font-weight: bold;
}

/* Why Choose Section */
.gpu-cloud-why-choose-section {
  overflow: hidden;
}

.gpu-cloud-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.gpu-cloud-feature-card {
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gpu-cloud-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

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

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

.gpu-cloud-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

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

/* Features Section */
.gpu-cloud-features-section {
  overflow: hidden;
}

/* GPU Product Features */
.gpu-cloud-product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.gpu-cloud-fea-product {
  display: flex;
  background-color: rgb(19,18,19);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  gap: 15px;
  height: max-content;
}

.gpu-cloud-fea-product:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.gpu-cloud-fea-product div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gpu-cloud-fea-product img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.gpu-cloud-fea-product h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
}

.gpu-cloud-fea-product p {
  color: rgb(193,193,193);
  line-height: 1.6;
}

/* FAQ Section - Exception with 800px max-width */
.gpu-cloud-faq-section {
  position: relative;
}

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

.gpu-cloud-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.gpu-cloud-faq-question:hover {
  color: rgb(193,193,193);
}

/* Icon styles and animation */
.gpu-cloud-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.gpu-cloud-faq-icon:before,
.gpu-cloud-faq-icon:after {
  content: '';
  position: absolute;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

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

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

/* When question is active */
.gpu-cloud-faq-question.active {
  color: #f5f5f5;
}

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

.gpu-cloud-faq-question.active .gpu-cloud-faq-icon:after {
  background-color: rgb(193,193,193);
}

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

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

/* Pre-footer CTA */
.gpu-cloud-pre-footer-cta {
  background-color: rgba(59, 130, 246, 0.05);
  overflow: hidden;
  margin-top: 30px;
}

.gpu-cloud-pre-footer-cta .gpu-cloud-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.gpu-cloud-pre-footer-cta__content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 2rem;
}

.gpu-cloud-pre-footer-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.gpu-cloud-pre-footer-cta__description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
}

.gpu-cloud-pre-footer-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.gpu-cloud-pre-footer-cta__shape {
  position: absolute;
  z-index: 0;
}

.gpu-cloud-shape-1 {
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background-color: rgba(59, 130, 246, 0.2);
  opacity: 0.1;
  border-radius: 50%;
}

.gpu-cloud-shape-2 {
  bottom: -30px;
  left: -30px;
  width: 250px;
  height: 250px;
  background-color: #3b82f6;
  opacity: 0.1;
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1600px) {
  .gpu-cloud-container {
    max-width: 1200px;
  }
  
  .gpu-cloud-hero-with-form,
  .gpu-cloud-specifications-grid,
  .gpu-cloud-features-grid,
  .gpu-cloud-product-features,
  .gpu-cloud-overview-content,
  .gpu-cloud-pre-footer-cta .gpu-cloud-container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .gpu-cloud-hero-with-form {
    grid-template-columns: 1fr 350px;
    gap: 2rem;
  }
  
  .gpu-cloud-specifications-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
  
  .gpu-cloud-features-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .gpu-cloud-product-features {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

@media (max-width: 1100px) {
  .gpu-cloud-pre-footer-cta__buttons,
  .gpu-cloud-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .gpu-cloud-pre-footer-cta__buttons .gpu-cloud-btn,
  .gpu-cloud-cta-buttons .gpu-cloud-cta-primary,
  .gpu-cloud-cta-buttons .gpu-cloud-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* CRITICAL MOBILE FIX - Form appears AFTER hero content */
@media (max-width: 992px) {
  .gpu-cloud-hero-with-form {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .gpu-cloud-hero-form-box {
    max-width: 100%;
    order: 1; /* Form comes after hero content */
  }
  
  .gpu-cloud-hero-content {
    order: 0; /* Hero content comes first */
    text-align: center;
  }
  
  .gpu-cloud-trusted-by {
    text-align: center;
  }
  
  .gpu-cloud-specifications-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
  
  .gpu-cloud-features-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .gpu-cloud-product-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gpu-cloud-hero-content h2 {
    font-size: 2.75rem;
  }
  
  .gpu-cloud-section-title,
  .gpu-cloud-pre-footer-cta__title,
  .gpu-cloud-overview-text h2 {
    font-size: 2rem;
  }
  
  .gpu-cloud-specifications-grid,
  .gpu-cloud-features-grid,
  .gpu-cloud-product-features {
    grid-template-columns: 1fr;
  }

  .gpu-cloud-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .gpu-cloud-cta-primary, 
  .gpu-cloud-cta-secondary {
    width: 100%;
  }
  
  .gpu-cloud-trusted-logos {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .gpu-cloud-hero-description {
    font-size: 1rem;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-row .gpu-cloud-form-control {
    margin-bottom: 0.75rem;
  }

  .gpu-cloud-hero-with-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gpu-cloud-hero-content h2 {
    font-size: 2.25rem;
  }
  
  .gpu-cloud-hero-description {
    font-size: 1rem;
  }
  
  .gpu-cloud-section-title,
  .gpu-cloud-pre-footer-cta__title,
  .gpu-cloud-overview-text h2 {
    font-size: 1.75rem;
  }

  .gpu-cloud-product-features {
    grid-template-columns: repeat(1, 1fr);
  }

  .gpu-cloud-section-badge,
  .gpu-cloud-hero-badge {
    font-size: 0.75rem;
  }
  
  .gpu-cloud-section-description {
    font-size: 1rem;
  }
  
  .gpu-cloud-pre-footer-cta__description {
    font-size: 1rem;
  }
  
  .gpu-cloud-hero-form-box {
    padding: 1.25rem;
    margin: 0;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-header {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-control {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-submit {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .gpu-cloud-hero-recaptcha {
    transform: scale(0.7);
  }
  
  .gpu-cloud-container {
    padding: 0 1rem;
  }
  
  .gpu-cloud-fea-product {
    flex-direction: column;
    text-align: center;
  }
  
  .gpu-cloud-fea-product img {
    margin: 0 auto 1rem;
  }
  
  /* Ensure proper stacking on very small screens */
  .gpu-cloud-hero-with-form {
    gap: 1.5rem;
  }
  
  .gpu-cloud-hero-form-box {
    order: 1; /* Always keep form below hero content */
  }
  
  .gpu-cloud-hero-content {
    order: 0; /* Hero content always first */
  }
}

/* Additional utility classes for consistent spacing */
.gpu-cloud-section-content {
  max-width: 1600px;
  margin: 0 auto;
}

.gpu-cloud-section-content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* Ensure all grid containers follow the 1600px rule */
.gpu-cloud-grid-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Special handling for very large screens */
@media (min-width: 1800px) {
  .gpu-cloud-container,
  .gpu-cloud-hero-with-form,
  .gpu-cloud-specifications-grid,
  .gpu-cloud-features-grid,
  .gpu-cloud-product-features,
  .gpu-cloud-overview-content,
  .gpu-cloud-pre-footer-cta .gpu-cloud-container,
  .gpu-cloud-section-header {
    max-width: 1600px;
  }
}

/* Form row responsive behavior for better mobile experience */
@media (max-width: 600px) {
  .gpu-cloud-hero-form-box .gpu-cloud-form-row {
    flex-direction: column;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-row .gpu-cloud-form-control {
    width: 100%;
  }
  
  /* Additional mobile form improvements */
  .gpu-cloud-hero-form-box {
    margin-top: 1rem;
    border-radius: 12px;
  }
  
  .gpu-cloud-hero-form-box .gpu-cloud-form-header {
    font-size: 0.9rem;
  }
}

/* Improve grid responsiveness for mid-range tablets */
@media (max-width: 900px) and (min-width: 769px) {
  .gpu-cloud-specifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gpu-cloud-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Ensure form stays below hero content */
  .gpu-cloud-hero-with-form {
    max-width: 700px;
  }
  
  .gpu-cloud-hero-form-box {
    order: 1;
    margin-top: 1rem;
  }
}

/* Enhanced hover effects for better interactivity */
.gpu-cloud-specification-card,
.gpu-cloud-feature-card,
.gpu-cloud-fea-product {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.gpu-cloud-specification-card:hover,
.gpu-cloud-feature-card:hover,
.gpu-cloud-fea-product:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

/* Consistent button styling across all sections */
.gpu-cloud-btn,
.gpu-cloud-cta-primary,
.gpu-cloud-cta-secondary {
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

/* Improved focus states for accessibility */
.gpu-cloud-hero-form-box .gpu-cloud-form-control:focus,
.gpu-cloud-btn:focus,
.gpu-cloud-cta-primary:focus,
.gpu-cloud-cta-secondary:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/* Dark theme optimizations */
@media (prefers-color-scheme: dark) {
  .gpu-cloud-hero-form-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(19, 18, 19, 0.95) 100%);
  }
  
  .gpu-cloud-specification-card,
  .gpu-cloud-feature-card,
  .gpu-cloud-fea-product {
    background-color: rgba(19, 18, 19, 0.9);
  }
}

/* Print styles for better documentation */
@media print {
  .gpu-cloud-blob,
  .gpu-cloud-hero-form-box,
  .gpu-cloud-cta-buttons,
  .gpu-cloud-pre-footer-cta__buttons {
    display: none;
  }
  
  .gpu-cloud-section-title,
  .gpu-cloud-overview-text h2 {
    color: #000;
  }
  
  .gpu-cloud-section-description,
  .gpu-cloud-overview-text p,
  .gpu-cloud-spec-list li,
  .gpu-cloud-feature-card p {
    color: #333;
  }
}

/* Additional mobile improvements for hero section */
@media (max-width: 650px) {
  .gpu-cloud-hero-with-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .gpu-cloud-hero-content {
    order: 0; /* Hero content first */
  }
  
  .gpu-cloud-hero-form-box {
    order: 1; /* Form second */
    max-width: 100%;
    margin-top: 0;
  }
}

/* Landscape mobile optimization */
@media (max-width: 992px) and (orientation: landscape) {
  .gpu-cloud-hero-with-form {
    max-width: 900px;
  }
  
  .gpu-cloud-hero-form-box {
    order: 1;
  }
  
  .gpu-cloud-hero-content {
    order: 0;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .gpu-cloud-hero-with-form {
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 2rem;
  }
  
  .gpu-cloud-hero-form-box {
    order: 1; /* Form after content */
    max-width: 500px;
    margin: 0 auto;
  }
  
  .gpu-cloud-hero-content {
    order: 0; /* Content first */
    text-align: center;
  }
  
  .gpu-cloud-trusted-by {
    text-align: center;
  }
}

/* Fix for very wide mobile screens */
@media (max-width: 992px) and (min-width: 400px) {
  .gpu-cloud-hero-form-box {
    max-width: 450px;
    margin: 0 auto;
  }
}

/* Ensure consistent ordering across all mobile breakpoints */
@media (max-width: 992px) {
  .gpu-cloud-hero-with-form > .gpu-cloud-hero-content {
    order: 0 !important;
  }
  
  .gpu-cloud-hero-with-form > .gpu-cloud-hero-form-box {
    order: 1 !important;
  }
}

/* Grid responsiveness improvements for 4K and large screens */
@media (min-width: 2000px) {
  .gpu-cloud-specifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gpu-cloud-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gpu-cloud-product-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ensure proper spacing on ultra-wide screens */
@media (min-width: 2560px) {
  .gpu-cloud-container {
    max-width: 2400px;
  }
  
  .gpu-cloud-hero-with-form {
    max-width: 2000px;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
  }
  
  .gpu-cloud-hero-form-box {
    max-width: 500px;
  }
  
  .gpu-cloud-specifications-grid,
  .gpu-cloud-features-grid,
  .gpu-cloud-product-features {
    max-width: 2000px;
  }
}

/* Accessibility improvements */
.gpu-cloud-hero-form-box .gpu-cloud-form-control:focus-visible,
.gpu-cloud-cta-primary:focus-visible,
.gpu-cloud-cta-secondary:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .gpu-cloud-hero-form-box::before,
  .gpu-cloud-hero-form-box .gpu-cloud-form-submit::before,
  .gpu-cloud-specification-card,
  .gpu-cloud-feature-card,
  .gpu-cloud-fea-product,
  .gpu-cloud-cta-primary,
  .gpu-cloud-cta-secondary {
    animation: none;
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .gpu-cloud-hero-form-box {
    border: 2px solid #3b82f6;
  }
  
  .gpu-cloud-specification-card,
  .gpu-cloud-feature-card,
  .gpu-cloud-fea-product {
    border: 1px solid #3b82f6;
  }
  
  .gpu-cloud-section-badge,
  .gpu-cloud-hero-badge {
    background-color: #3b82f6;
    color: #fff;
  }
}

/* Loading states for better UX */
.gpu-cloud-hero-form-box .gpu-cloud-form-submit.loading {
  position: relative;
  color: transparent;
}

.gpu-cloud-hero-form-box .gpu-cloud-form-submit.loading:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  animation: gpu-cloud-button-loading-spinner 1s ease infinite;
}

@keyframes gpu-cloud-button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/* Error and success states for form fields */
.gpu-cloud-hero-form-box .gpu-cloud-form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.gpu-cloud-hero-form-box .gpu-cloud-form-control.success {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Skeleton loading animation for cards */
@keyframes gpu-cloud-skeleton-loading {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.gpu-cloud-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: gpu-cloud-skeleton-loading 1.5s infinite;
}

/* Ensure proper z-indexing for overlays */
.gpu-cloud-hero-form-box {
  z-index: 100;
}

.gpu-cloud-blob {
  z-index: 1;
}

.gpu-cloud-hero-content,
.gpu-cloud-section-header,
.gpu-cloud-specification-card,
.gpu-cloud-feature-card {
  z-index: 2;
}

/* Final responsive adjustments */
@media (max-width: 320px) {
  .gpu-cloud-hero-content h2 {
    font-size: 1.75rem;
  }
  
  .gpu-cloud-hero-description {
    font-size: 0.9rem;
  }
  
  .gpu-cloud-hero-form-box {
    padding: 1rem;
  }
  
  .gpu-cloud-container {
    padding: 0 0.5rem;
  }
}