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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.row:nth-child(even) {
  flex-direction: row-reverse;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

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

.rounded-image {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Buttons and CTAs */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.banner-cta {
  background-color: #ff6b35;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 1px;
}

.banner-cta:hover {
  background-color: #ff8e63;
  transform: translateY(-2px);
}

.buy-now-btn {
  background-color: var(--primary-blue);
  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: var(--dark-blue);
}

.send-message-btn {
  background-color: #ff6b35;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 1rem;
}

.send-message-btn:hover {
  background-color: #ff8e63;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  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);
}

/* Hero Section */
.cpu-hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.cpu-hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cpu-hero-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.cpu-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cpu-hero-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-700);
  max-width: 90%;
}

.cpu-hero-image {
  flex: 0 0 45%;
  max-width: 45%;
}

/* Services Section */
.cpu-services-section {
  padding: 80px 0px 0px;  
  position: relative;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CPU Banner */
.cpu-banner {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cpu-banner-content {
  padding: 0 5%;
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.banner-description {
  font-size: 1.1rem;
  color: var(--gray-700);
  padding-bottom: 1.5rem;
  max-width: 80%;
  line-height: 1.6;
}

.cpu-banner-image {
  flex: 0 0 40%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.spiral-image {
  max-width: 100%;
  height: auto;
}

/* General Purpose Section */
.general-purpose-section {
  padding: 80px 0;
}

.plan-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray-700);
  font-size: 1.1rem;
  line-height: 1.6;
}

.pricing-table-container {
  background-color: #121212;
  overflow-x: auto;
  margin-bottom: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
}

.pricing-table thead {
  background-color: rgba(59, 130, 246, 0.1);
}

.pricing-table th {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pricing table hover effect (replaced JS with CSS) */
.pricing-table tbody tr {
  transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.1);
  cursor: pointer;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 0;
}

.use-cases-section .section-title {
  color: #fff;
  margin-bottom: 3rem;
}

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

.use-case-card {
  background-color: #121212;
  border-radius: 0.8rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.use-case-badge {
  margin-bottom: 1.5rem;
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.use-case-description {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Flexibility Section */
.flexibility-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.flexibility-content {
  margin-bottom: 3rem;
}

.contact-form-container {
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  background-color: #121212;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.95rem;
}

.required {
  color: #ef4444;
}

.flexibility-image {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

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

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

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

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

.faq-answer {
  padding: 0 0 1.5rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin: 0;
}

.faq-answer p {
  margin: 0;
}

/* 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: #f5f5f5;
  margin-bottom: 1rem;
}

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

.pre-footer-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.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: 992px) {
  .cpu-hero-section .container {
    flex-direction: column;
  }
  
  .cpu-hero-content,
  .cpu-hero-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .cpu-hero-image {
    margin-top: 3rem;
  }
  
  .cpu-banner {
    flex-direction: column;
  }
  
  .cpu-banner-content {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .banner-description {
    max-width: 100%;
  }
  
  .cpu-banner-image {
    flex: 0 0 100%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title,
  .banner-title,
  .pre-footer-cta__title {
    font-size: 2rem;
  }
  
  .cpu-hero-title {
    font-size: 2.5rem;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
  
  .pre-footer-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .pre-footer-cta__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title,
  .banner-title,
  .pre-footer-cta__title {
    font-size: 1.75rem;
  }
  
  .cpu-hero-title {
    font-size: 2rem;
  }
  
  .section-description,
  .banner-description,
  .pre-footer-cta__description {
    font-size: 1rem;
  }
  
  .pricing-table-container {
    font-size: 0.85rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
  }
}