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

/* Base Container Settings */
.container {
  max-width: 1600px;
  margin: 30px auto;
  padding: 0 2rem;
}

/* FAQ Exception */
.faq-container {
  max-width: 800px;
  margin: 30px 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;
}

.blob-5 {
  top: 30%;
  right: -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;
}

.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 */
.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: rgb(193,193,193);
}

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

/* Buttons and CTAs */
.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;
}

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

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

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

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

.buy-now-btn {
  background-color: #3b82f6;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.buy-now-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* GPU Hero Section with Form */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 900px;
}

.hero-form-container {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

/* Hero Form Styles */
.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);
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.hero-form-box .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;
}

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

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

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

.hero-form-box .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;
}

.hero-form-box .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);
}

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

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

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

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

.hero-form-box .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);
}

.hero-form-box .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;
}

.hero-form-box .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);
}

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

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

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

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

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

.hero-form-box .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: spin 1s linear infinite;
}

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

/* GPU Overview Section */
.colocation-overview-section {
  padding: 30px 0;
  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 0;
  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: 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;
}

.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: #3b82f6;
  margin-right: 0.75rem;
  font-weight: bold;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.certification-badge {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 140px;
}

.certification-badge:hover {
  background-color: #2a2a2a;
  transform: translateY(-3px);
  border-color: #444;
}

.certification-badge::before {
  content: '';
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.certification-badge.sap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'/%3E%3C/svg%3E");
}

.certification-badge.security::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'/%3E%3C/svg%3E");
}

.certification-badge.quality::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11.049 2.927c.3-.921 1.603-.921 1.902 0l1.519 4.674a1 1 0 00.95.69h4.915c.969 0 1.371 1.24.588 1.81l-3.976 2.888a1 1 0 00-.363 1.118l1.518 4.674c.3.922-.755 1.688-1.538 1.118l-3.976-2.888a1 1 0 00-1.176 0l-3.976 2.888c-.783.57-1.838-.197-1.538-1.118l1.518-4.674a1 1 0 00-.363-1.118l-3.976-2.888c-.784-.57-.38-1.81.588-1.81h4.914a1 1 0 00.951-.69l1.519-4.674z'/%3E%3C/svg%3E");
}

/* Why Choose Section */
.why-choose-section {
  padding: 30px 0;
  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: 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;
}

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

/* Features Section */
.features-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* GPU Product Features */
.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

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

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

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

.fea-product h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

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

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

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 1.5rem;
  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: rgb(193,193,193);
}

/* Icon styles and animation */
.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;
}

/* When question is active */
.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: rgb(193,193,193);
}

.faq-answer {
  padding: 0 1.5rem 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;
}

/* Pre-footer CTA */
.pre-footer-cta {
  background-color: rgba(59, 130, 246, 0.05);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.pre-footer-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.pre-footer-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-content-wrapper {
    gap: 3rem;
  }
  
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .section-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 2.25rem;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 1000px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-form-container {
    display: flex;
    justify-content: center;
  }
  
  .trusted-by {
    text-align: center;
  }
  
  .trusted-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    margin: 20px auto;
    padding: 0 1rem;
  }
  
  .faq-container {
    margin: 20px auto;
    padding: 0 1rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero h2 {
    font-size: 2.75rem;
  }
  
  .section-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .specifications-grid,
  .features-grid,
  .product-features {
    grid-template-columns: 1fr;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .certification-badge {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    min-height: 120px;
  }

  .certification-badge::before {
    width: 36px;
    height: 36px;
  }
  
  /* Hero form responsive */
  .hero-form-box .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .hero-form-box .form-row .form-control {
    margin-bottom: 0.75rem;
  }
}

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

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

  .section-badge {
    font-size: 0.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .pre-footer-cta__description {
    font-size: 1rem;
  }

  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
  }

  .certification-badge {
    padding: 1.25rem 0.75rem;
    font-size: 0.75rem;
    min-height: 100px;
  }

  .certification-badge::before {
    width: 32px;
    height: 32px;
  }

  .specification-card h3 {
    font-size: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

  .fea-product {
    flex-direction: column;
    text-align: center;
  }

  .fea-product img {
    margin: 0 auto 1rem;
  }
  
  /* Hero form mobile styles */
  .hero-form-box {
    padding: 1.25rem;
    max-width: 100%;
    margin: 0 1rem;
  }
  
  .hero-form-box .form-header {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .hero-form-box .form-control {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .hero-form-box .form-submit {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .hero-recaptcha {
    transform: scale(0.7);
  }
}

/* Additional mobile-first responsive styles */
@media (max-width: 375px) {
  .hero-container {
    padding: 0 0.75rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .faq-container {
    padding: 0 0.75rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-form-box {
    margin: 0 0.5rem;
    padding: 1rem;
  }
  
  .pre-footer-cta__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
}